diff --git a/.github/workflows/go-cross.yml b/.github/workflows/go-cross.yml index 30abeeee9..d92a531b3 100644 --- a/.github/workflows/go-cross.yml +++ b/.github/workflows/go-cross.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - go-version: [ 1.16, 1.17 ] + go-version: [ 1.18, 1.19.0-rc2 ] os: [ubuntu-latest, macos-latest, windows-latest] include: @@ -34,6 +34,7 @@ jobs: uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} + stable: false # https://github.com/marketplace/actions/checkout - name: Checkout code diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 862083764..5d55be4f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,8 +7,8 @@ on: pull_request: env: - GO_VERSION: 1.17 - GOLANGCI_LINT_VERSION: v1.42.1 + GO_VERSION: 1.18 + GOLANGCI_LINT_VERSION: v1.47.1 jobs: @@ -45,12 +45,13 @@ jobs: needs: linting strategy: matrix: - go-version: [ 1.16, 1.17 ] + go-version: [ 1.18, 1.19.0-rc2 ] steps: - name: Set up Go ${{ matrix.go-version }} uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} + stable: false - name: Check out code uses: actions/checkout@v2 @@ -75,13 +76,14 @@ jobs: working-directory: ${{ github.workspace }}/go/src/github.com/traefik/yaegi strategy: matrix: - go-version: [ 1.16, 1.17 ] + go-version: [ 1.18, 1.19.0-rc2 ] steps: - name: Set up Go ${{ matrix.go-version }} uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} + stable: false - name: Check out code uses: actions/checkout@v2 diff --git a/.golangci.toml b/.golangci.toml index ad6f1cebf..af3316c0f 100644 --- a/.golangci.toml +++ b/.golangci.toml @@ -27,6 +27,7 @@ "scopelint", # deprecated "interfacer", # deprecated "maligned", # deprecated + "exhaustivestruct", # deprecated "lll", "gas", "dupl", @@ -49,10 +50,15 @@ "wrapcheck", "nestif", "exhaustive", - "exhaustivestruct", + "exhaustruct", "forbidigo", "ifshort", "forcetypeassert", + "varnamelen", + "nosnakecase", + "nonamedreturns", + "nilnil", + "maintidx", "errorlint", # TODO: must be reactivate before fixes ] @@ -81,3 +87,6 @@ [[issues.exclude-rules]] path = "interp/interp_eval_test.go" linters = ["thelper"] + [[issues.exclude-rules]] + path = "interp/debugger.go" + linters = ["containedctx"] diff --git a/README.md b/README.md index cfb0e4d68..3a87490af 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ It powers executable Go scripts and plugins, in embedded interpreters or interac * Works everywhere Go works * All Go & runtime resources accessible from script (with control) * Security: `unsafe` and `syscall` packages neither used nor exported by default -* Support Go 1.16 and Go 1.17 (the latest 2 major releases) +* Support Go 1.18 and Go 1.19 (the latest 2 major releases) ## Install diff --git a/example/fs/fs_test.go b/example/fs/fs_test.go index 040d05e19..b9bf7ef7d 100644 --- a/example/fs/fs_test.go +++ b/example/fs/fs_test.go @@ -2,9 +2,7 @@ package fs1 import ( "testing" - - // only available from 1.16. - "testing/fstest" + "testing/fstest" // only available from 1.16. "github.com/traefik/yaegi/interp" "github.com/traefik/yaegi/stdlib" diff --git a/extract/extract.go b/extract/extract.go index ec4cdd454..298f168c9 100644 --- a/extract/extract.go +++ b/extract/extract.go @@ -194,6 +194,11 @@ func (e *Extractor) genContent(importPath string, p *types.Package) ([]byte, err case *types.Var: val[name] = Val{pname, true} case *types.TypeName: + // Skip type if it is generic. + if t, ok := o.Type().(*types.Named); ok && t.TypeParams().Len() > 0 { + continue + } + typ[name] = pname if t, ok := o.Type().Underlying().(*types.Interface); ok { var methods []Method @@ -463,7 +468,7 @@ func GetMinor(part string) string { return minor } -const defaultMinorVersion = 17 +const defaultMinorVersion = 19 func genBuildTags() (string, error) { version := runtime.Version() diff --git a/go.mod b/go.mod index ba0618d51..d4a2c9c0f 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/traefik/yaegi -go 1.16 +go 1.18 diff --git a/interp/interp.go b/interp/interp.go index a8003323b..75a1da329 100644 --- a/interp/interp.go +++ b/interp/interp.go @@ -425,6 +425,7 @@ const ( func initUniverse() *scope { sc := &scope{global: true, sym: map[string]*symbol{ // predefined Go types + "any": {kind: typeSym, typ: &itype{cat: interfaceT, str: "any"}}, "bool": {kind: typeSym, typ: &itype{cat: boolT, name: "bool", str: "bool"}}, "byte": {kind: typeSym, typ: &itype{cat: uint8T, name: "uint8", str: "uint8"}}, "complex64": {kind: typeSym, typ: &itype{cat: complex64T, name: "complex64", str: "complex64"}}, diff --git a/interp/interp_consistent_test.go b/interp/interp_consistent_test.go index ab46d3e77..1b5a684e9 100644 --- a/interp/interp_consistent_test.go +++ b/interp/interp_consistent_test.go @@ -6,7 +6,6 @@ import ( "os" "os/exec" "path/filepath" - "runtime" "strings" "testing" @@ -181,12 +180,6 @@ func TestInterpConsistencyBuild(t *testing.T) { } func TestInterpErrorConsistency(t *testing.T) { - if runtime.Version() >= "go1.18" { - // Error messages have changed a lot between go1.17 and go1.18. - // Skip testing on go1.18 and beyond while we support go1.17. - // It can be re-enabled after dropping go1.17. - t.Skip("skip go1.18+") - } testCases := []struct { fileName string expectedInterp string @@ -195,12 +188,12 @@ func TestInterpErrorConsistency(t *testing.T) { { fileName: "assign11.go", expectedInterp: "6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values", - expectedExec: "6:10: assignment mismatch: 3 variables but fmt.Println returns 2 values", + expectedExec: "6:12: assignment mismatch: 3 variables but fmt.Println returns 2 values", }, { fileName: "assign12.go", expectedInterp: "6:2: assignment mismatch: 3 variables but fmt.Println returns 2 values", - expectedExec: "6:10: assignment mismatch: 3 variables but fmt.Println returns 2 values", + expectedExec: "6:13: assignment mismatch: 3 variables but fmt.Println returns 2 values", }, { fileName: "bad0.go", @@ -220,46 +213,47 @@ func TestInterpErrorConsistency(t *testing.T) { { fileName: "const9.go", expectedInterp: "5:2: constant definition loop", - expectedExec: "5:2: constant definition loop", + expectedExec: "5:2: initialization loop for b", }, { fileName: "if2.go", expectedInterp: "7:5: non-bool used as if condition", - expectedExec: "7:2: non-bool i % 1000000 (type int) used as if condition", + expectedExec: "7:5: non-boolean condition in if statement", }, { fileName: "for7.go", expectedInterp: "4:14: non-bool used as for condition", - expectedExec: "4:2: non-bool i (type int) used as for condition", + expectedExec: "4:14: non-boolean condition in for statement", }, { fileName: "fun21.go", expectedInterp: "4:2: not enough arguments to return", - expectedExec: "4:2: not enough arguments to return", + expectedExec: "4:2: not enough return values", }, { fileName: "fun22.go", expectedInterp: "6:2: not enough arguments in call to time.Date", - expectedExec: "6:11: not enough arguments in call to time.Date", + expectedExec: "6:2: not enough arguments in call to time.Date", }, { fileName: "fun23.go", expectedInterp: "3:17: too many arguments to return", - expectedExec: "3:17: too many arguments to return", + expectedExec: "3:24: too many return values", }, { fileName: "issue-1093.go", expectedInterp: "9:6: cannot use type untyped string as type int in assignment", - expectedExec: `9:4: cannot use "a" + b() (type string) as type int in assignment`, + expectedExec: `9:6: cannot use "a" + b() (value of type string) as type int in assignment`, }, { fileName: "op1.go", expectedInterp: "5:2: invalid operation: mismatched types int and untyped float", - expectedExec: "5:4: constant 1.3 truncated to integer", + expectedExec: "5:7: 1.3 (untyped float constant) truncated to int", }, { fileName: "bltn0.go", expectedInterp: "4:7: use of builtin println not in function call", + expectedExec: "4:7: println (built-in) must be called", }, { fileName: "import6.go", @@ -274,17 +268,17 @@ func TestInterpErrorConsistency(t *testing.T) { { fileName: "switch9.go", expectedInterp: "9:3: cannot fallthrough in type switch", - expectedExec: "9:3: cannot fallthrough in type switch", + expectedExec: "fallthrough", }, { fileName: "switch13.go", expectedInterp: "9:2: i is not a type", - expectedExec: "9:2: i (type interface {}) is not a type", + expectedExec: "9:7: i (variable of type interface{}) is not a type", }, { fileName: "switch19.go", expectedInterp: "37:2: duplicate case Bir in type switch", - expectedExec: "37:2: duplicate case Bir in type switch", + expectedExec: "37:7: duplicate case Bir in type switch", }, } diff --git a/interp/interp_eval_test.go b/interp/interp_eval_test.go index 22968b9a7..cc5b5eab8 100644 --- a/interp/interp_eval_test.go +++ b/interp/interp_eval_test.go @@ -1010,7 +1010,7 @@ const goMinorVersionTest = 16 func TestHasIOFS(t *testing.T) { code := ` -// +build go1.16 +// +build go1.18 package main @@ -1048,6 +1048,8 @@ func main() { var minor int var err error version := runtime.Version() + version = strings.Replace(version, "beta", ".", 1) + version = strings.Replace(version, "rc", ".", 1) fields := strings.Fields(version) // Go stable if len(fields) == 1 { @@ -1597,10 +1599,8 @@ func TestREPLCommands(t *testing.T) { if testing.Short() { return } - _ = os.Setenv("YAEGI_PROMPT", "1") // To force prompts over non-tty streams - defer func() { - _ = os.Setenv("YAEGI_PROMPT", "0") - }() + t.Setenv("YAEGI_PROMPT", "1") // To force prompts over non-tty streams + allDone := make(chan bool) runREPL := func() { done := make(chan error) diff --git a/interp/interp_file_test.go b/interp/interp_file_test.go index 96af5f1f5..f29b117df 100644 --- a/interp/interp_file_test.go +++ b/interp/interp_file_test.go @@ -19,10 +19,7 @@ func TestFile(t *testing.T) { filePath := "../_test/str.go" runCheck(t, filePath) - defer func() { - _ = os.Setenv("YAEGI_SPECIAL_STDIO", "0") - }() - _ = os.Setenv("YAEGI_SPECIAL_STDIO", "1") + t.Setenv("YAEGI_SPECIAL_STDIO", "1") baseDir := filepath.Join("..", "_test") files, err := os.ReadDir(baseDir) diff --git a/stdlib/go1_16_archive_tar.go b/stdlib/go1_16_archive_tar.go deleted file mode 100644 index d2a651271..000000000 --- a/stdlib/go1_16_archive_tar.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "archive/tar" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["archive/tar/tar"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrFieldTooLong": reflect.ValueOf(&tar.ErrFieldTooLong).Elem(), - "ErrHeader": reflect.ValueOf(&tar.ErrHeader).Elem(), - "ErrWriteAfterClose": reflect.ValueOf(&tar.ErrWriteAfterClose).Elem(), - "ErrWriteTooLong": reflect.ValueOf(&tar.ErrWriteTooLong).Elem(), - "FileInfoHeader": reflect.ValueOf(tar.FileInfoHeader), - "FormatGNU": reflect.ValueOf(tar.FormatGNU), - "FormatPAX": reflect.ValueOf(tar.FormatPAX), - "FormatUSTAR": reflect.ValueOf(tar.FormatUSTAR), - "FormatUnknown": reflect.ValueOf(tar.FormatUnknown), - "NewReader": reflect.ValueOf(tar.NewReader), - "NewWriter": reflect.ValueOf(tar.NewWriter), - "TypeBlock": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "TypeChar": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "TypeCont": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "TypeDir": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "TypeFifo": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "TypeGNULongLink": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "TypeGNULongName": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "TypeGNUSparse": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "TypeLink": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "TypeReg": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "TypeRegA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TypeSymlink": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "TypeXGlobalHeader": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "TypeXHeader": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - - // type definitions - "Format": reflect.ValueOf((*tar.Format)(nil)), - "Header": reflect.ValueOf((*tar.Header)(nil)), - "Reader": reflect.ValueOf((*tar.Reader)(nil)), - "Writer": reflect.ValueOf((*tar.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_archive_zip.go b/stdlib/go1_16_archive_zip.go deleted file mode 100644 index d14a6a424..000000000 --- a/stdlib/go1_16_archive_zip.go +++ /dev/null @@ -1,36 +0,0 @@ -// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "archive/zip" - "reflect" -) - -func init() { - Symbols["archive/zip/zip"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Deflate": reflect.ValueOf(zip.Deflate), - "ErrAlgorithm": reflect.ValueOf(&zip.ErrAlgorithm).Elem(), - "ErrChecksum": reflect.ValueOf(&zip.ErrChecksum).Elem(), - "ErrFormat": reflect.ValueOf(&zip.ErrFormat).Elem(), - "FileInfoHeader": reflect.ValueOf(zip.FileInfoHeader), - "NewReader": reflect.ValueOf(zip.NewReader), - "NewWriter": reflect.ValueOf(zip.NewWriter), - "OpenReader": reflect.ValueOf(zip.OpenReader), - "RegisterCompressor": reflect.ValueOf(zip.RegisterCompressor), - "RegisterDecompressor": reflect.ValueOf(zip.RegisterDecompressor), - "Store": reflect.ValueOf(zip.Store), - - // type definitions - "Compressor": reflect.ValueOf((*zip.Compressor)(nil)), - "Decompressor": reflect.ValueOf((*zip.Decompressor)(nil)), - "File": reflect.ValueOf((*zip.File)(nil)), - "FileHeader": reflect.ValueOf((*zip.FileHeader)(nil)), - "ReadCloser": reflect.ValueOf((*zip.ReadCloser)(nil)), - "Reader": reflect.ValueOf((*zip.Reader)(nil)), - "Writer": reflect.ValueOf((*zip.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_bufio.go b/stdlib/go1_16_bufio.go deleted file mode 100644 index 23d754fd1..000000000 --- a/stdlib/go1_16_bufio.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract bufio'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "bufio" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["bufio/bufio"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrAdvanceTooFar": reflect.ValueOf(&bufio.ErrAdvanceTooFar).Elem(), - "ErrBadReadCount": reflect.ValueOf(&bufio.ErrBadReadCount).Elem(), - "ErrBufferFull": reflect.ValueOf(&bufio.ErrBufferFull).Elem(), - "ErrFinalToken": reflect.ValueOf(&bufio.ErrFinalToken).Elem(), - "ErrInvalidUnreadByte": reflect.ValueOf(&bufio.ErrInvalidUnreadByte).Elem(), - "ErrInvalidUnreadRune": reflect.ValueOf(&bufio.ErrInvalidUnreadRune).Elem(), - "ErrNegativeAdvance": reflect.ValueOf(&bufio.ErrNegativeAdvance).Elem(), - "ErrNegativeCount": reflect.ValueOf(&bufio.ErrNegativeCount).Elem(), - "ErrTooLong": reflect.ValueOf(&bufio.ErrTooLong).Elem(), - "MaxScanTokenSize": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "NewReadWriter": reflect.ValueOf(bufio.NewReadWriter), - "NewReader": reflect.ValueOf(bufio.NewReader), - "NewReaderSize": reflect.ValueOf(bufio.NewReaderSize), - "NewScanner": reflect.ValueOf(bufio.NewScanner), - "NewWriter": reflect.ValueOf(bufio.NewWriter), - "NewWriterSize": reflect.ValueOf(bufio.NewWriterSize), - "ScanBytes": reflect.ValueOf(bufio.ScanBytes), - "ScanLines": reflect.ValueOf(bufio.ScanLines), - "ScanRunes": reflect.ValueOf(bufio.ScanRunes), - "ScanWords": reflect.ValueOf(bufio.ScanWords), - - // type definitions - "ReadWriter": reflect.ValueOf((*bufio.ReadWriter)(nil)), - "Reader": reflect.ValueOf((*bufio.Reader)(nil)), - "Scanner": reflect.ValueOf((*bufio.Scanner)(nil)), - "SplitFunc": reflect.ValueOf((*bufio.SplitFunc)(nil)), - "Writer": reflect.ValueOf((*bufio.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_bytes.go b/stdlib/go1_16_bytes.go deleted file mode 100644 index 0957c0d2d..000000000 --- a/stdlib/go1_16_bytes.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by 'yaegi extract bytes'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "bytes" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["bytes/bytes"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compare": reflect.ValueOf(bytes.Compare), - "Contains": reflect.ValueOf(bytes.Contains), - "ContainsAny": reflect.ValueOf(bytes.ContainsAny), - "ContainsRune": reflect.ValueOf(bytes.ContainsRune), - "Count": reflect.ValueOf(bytes.Count), - "Equal": reflect.ValueOf(bytes.Equal), - "EqualFold": reflect.ValueOf(bytes.EqualFold), - "ErrTooLarge": reflect.ValueOf(&bytes.ErrTooLarge).Elem(), - "Fields": reflect.ValueOf(bytes.Fields), - "FieldsFunc": reflect.ValueOf(bytes.FieldsFunc), - "HasPrefix": reflect.ValueOf(bytes.HasPrefix), - "HasSuffix": reflect.ValueOf(bytes.HasSuffix), - "Index": reflect.ValueOf(bytes.Index), - "IndexAny": reflect.ValueOf(bytes.IndexAny), - "IndexByte": reflect.ValueOf(bytes.IndexByte), - "IndexFunc": reflect.ValueOf(bytes.IndexFunc), - "IndexRune": reflect.ValueOf(bytes.IndexRune), - "Join": reflect.ValueOf(bytes.Join), - "LastIndex": reflect.ValueOf(bytes.LastIndex), - "LastIndexAny": reflect.ValueOf(bytes.LastIndexAny), - "LastIndexByte": reflect.ValueOf(bytes.LastIndexByte), - "LastIndexFunc": reflect.ValueOf(bytes.LastIndexFunc), - "Map": reflect.ValueOf(bytes.Map), - "MinRead": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NewBuffer": reflect.ValueOf(bytes.NewBuffer), - "NewBufferString": reflect.ValueOf(bytes.NewBufferString), - "NewReader": reflect.ValueOf(bytes.NewReader), - "Repeat": reflect.ValueOf(bytes.Repeat), - "Replace": reflect.ValueOf(bytes.Replace), - "ReplaceAll": reflect.ValueOf(bytes.ReplaceAll), - "Runes": reflect.ValueOf(bytes.Runes), - "Split": reflect.ValueOf(bytes.Split), - "SplitAfter": reflect.ValueOf(bytes.SplitAfter), - "SplitAfterN": reflect.ValueOf(bytes.SplitAfterN), - "SplitN": reflect.ValueOf(bytes.SplitN), - "Title": reflect.ValueOf(bytes.Title), - "ToLower": reflect.ValueOf(bytes.ToLower), - "ToLowerSpecial": reflect.ValueOf(bytes.ToLowerSpecial), - "ToTitle": reflect.ValueOf(bytes.ToTitle), - "ToTitleSpecial": reflect.ValueOf(bytes.ToTitleSpecial), - "ToUpper": reflect.ValueOf(bytes.ToUpper), - "ToUpperSpecial": reflect.ValueOf(bytes.ToUpperSpecial), - "ToValidUTF8": reflect.ValueOf(bytes.ToValidUTF8), - "Trim": reflect.ValueOf(bytes.Trim), - "TrimFunc": reflect.ValueOf(bytes.TrimFunc), - "TrimLeft": reflect.ValueOf(bytes.TrimLeft), - "TrimLeftFunc": reflect.ValueOf(bytes.TrimLeftFunc), - "TrimPrefix": reflect.ValueOf(bytes.TrimPrefix), - "TrimRight": reflect.ValueOf(bytes.TrimRight), - "TrimRightFunc": reflect.ValueOf(bytes.TrimRightFunc), - "TrimSpace": reflect.ValueOf(bytes.TrimSpace), - "TrimSuffix": reflect.ValueOf(bytes.TrimSuffix), - - // type definitions - "Buffer": reflect.ValueOf((*bytes.Buffer)(nil)), - "Reader": reflect.ValueOf((*bytes.Reader)(nil)), - } -} diff --git a/stdlib/go1_16_compress_bzip2.go b/stdlib/go1_16_compress_bzip2.go deleted file mode 100644 index cdf9343ea..000000000 --- a/stdlib/go1_16_compress_bzip2.go +++ /dev/null @@ -1,20 +0,0 @@ -// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "compress/bzip2" - "reflect" -) - -func init() { - Symbols["compress/bzip2/bzip2"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewReader": reflect.ValueOf(bzip2.NewReader), - - // type definitions - "StructuralError": reflect.ValueOf((*bzip2.StructuralError)(nil)), - } -} diff --git a/stdlib/go1_16_compress_flate.go b/stdlib/go1_16_compress_flate.go deleted file mode 100644 index ad2e698c4..000000000 --- a/stdlib/go1_16_compress_flate.go +++ /dev/null @@ -1,65 +0,0 @@ -// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "compress/flate" - "go/constant" - "go/token" - "io" - "reflect" -) - -func init() { - Symbols["compress/flate/flate"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "NewReader": reflect.ValueOf(flate.NewReader), - "NewReaderDict": reflect.ValueOf(flate.NewReaderDict), - "NewWriter": reflect.ValueOf(flate.NewWriter), - "NewWriterDict": reflect.ValueOf(flate.NewWriterDict), - "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - - // type definitions - "CorruptInputError": reflect.ValueOf((*flate.CorruptInputError)(nil)), - "InternalError": reflect.ValueOf((*flate.InternalError)(nil)), - "ReadError": reflect.ValueOf((*flate.ReadError)(nil)), - "Reader": reflect.ValueOf((*flate.Reader)(nil)), - "Resetter": reflect.ValueOf((*flate.Resetter)(nil)), - "WriteError": reflect.ValueOf((*flate.WriteError)(nil)), - "Writer": reflect.ValueOf((*flate.Writer)(nil)), - - // interface wrapper definitions - "_Reader": reflect.ValueOf((*_compress_flate_Reader)(nil)), - "_Resetter": reflect.ValueOf((*_compress_flate_Resetter)(nil)), - } -} - -// _compress_flate_Reader is an interface wrapper for Reader type -type _compress_flate_Reader struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WReadByte func() (byte, error) -} - -func (W _compress_flate_Reader) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _compress_flate_Reader) ReadByte() (byte, error) { - return W.WReadByte() -} - -// _compress_flate_Resetter is an interface wrapper for Resetter type -type _compress_flate_Resetter struct { - IValue interface{} - WReset func(r io.Reader, dict []byte) error -} - -func (W _compress_flate_Resetter) Reset(r io.Reader, dict []byte) error { - return W.WReset(r, dict) -} diff --git a/stdlib/go1_16_compress_gzip.go b/stdlib/go1_16_compress_gzip.go deleted file mode 100644 index 7302a61bc..000000000 --- a/stdlib/go1_16_compress_gzip.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "compress/gzip" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["compress/gzip/gzip"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "ErrChecksum": reflect.ValueOf(&gzip.ErrChecksum).Elem(), - "ErrHeader": reflect.ValueOf(&gzip.ErrHeader).Elem(), - "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "NewReader": reflect.ValueOf(gzip.NewReader), - "NewWriter": reflect.ValueOf(gzip.NewWriter), - "NewWriterLevel": reflect.ValueOf(gzip.NewWriterLevel), - "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - - // type definitions - "Header": reflect.ValueOf((*gzip.Header)(nil)), - "Reader": reflect.ValueOf((*gzip.Reader)(nil)), - "Writer": reflect.ValueOf((*gzip.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_compress_lzw.go b/stdlib/go1_16_compress_lzw.go deleted file mode 100644 index 15c21aca8..000000000 --- a/stdlib/go1_16_compress_lzw.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "compress/lzw" - "reflect" -) - -func init() { - Symbols["compress/lzw/lzw"] = map[string]reflect.Value{ - // function, constant and variable definitions - "LSB": reflect.ValueOf(lzw.LSB), - "MSB": reflect.ValueOf(lzw.MSB), - "NewReader": reflect.ValueOf(lzw.NewReader), - "NewWriter": reflect.ValueOf(lzw.NewWriter), - - // type definitions - "Order": reflect.ValueOf((*lzw.Order)(nil)), - } -} diff --git a/stdlib/go1_16_compress_zlib.go b/stdlib/go1_16_compress_zlib.go deleted file mode 100644 index c92824acf..000000000 --- a/stdlib/go1_16_compress_zlib.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "compress/zlib" - "go/constant" - "go/token" - "io" - "reflect" -) - -func init() { - Symbols["compress/zlib/zlib"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "ErrChecksum": reflect.ValueOf(&zlib.ErrChecksum).Elem(), - "ErrDictionary": reflect.ValueOf(&zlib.ErrDictionary).Elem(), - "ErrHeader": reflect.ValueOf(&zlib.ErrHeader).Elem(), - "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "NewReader": reflect.ValueOf(zlib.NewReader), - "NewReaderDict": reflect.ValueOf(zlib.NewReaderDict), - "NewWriter": reflect.ValueOf(zlib.NewWriter), - "NewWriterLevel": reflect.ValueOf(zlib.NewWriterLevel), - "NewWriterLevelDict": reflect.ValueOf(zlib.NewWriterLevelDict), - "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - - // type definitions - "Resetter": reflect.ValueOf((*zlib.Resetter)(nil)), - "Writer": reflect.ValueOf((*zlib.Writer)(nil)), - - // interface wrapper definitions - "_Resetter": reflect.ValueOf((*_compress_zlib_Resetter)(nil)), - } -} - -// _compress_zlib_Resetter is an interface wrapper for Resetter type -type _compress_zlib_Resetter struct { - IValue interface{} - WReset func(r io.Reader, dict []byte) error -} - -func (W _compress_zlib_Resetter) Reset(r io.Reader, dict []byte) error { - return W.WReset(r, dict) -} diff --git a/stdlib/go1_16_container_heap.go b/stdlib/go1_16_container_heap.go deleted file mode 100644 index 91c1a7120..000000000 --- a/stdlib/go1_16_container_heap.go +++ /dev/null @@ -1,53 +0,0 @@ -// Code generated by 'yaegi extract container/heap'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "container/heap" - "reflect" -) - -func init() { - Symbols["container/heap/heap"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Fix": reflect.ValueOf(heap.Fix), - "Init": reflect.ValueOf(heap.Init), - "Pop": reflect.ValueOf(heap.Pop), - "Push": reflect.ValueOf(heap.Push), - "Remove": reflect.ValueOf(heap.Remove), - - // type definitions - "Interface": reflect.ValueOf((*heap.Interface)(nil)), - - // interface wrapper definitions - "_Interface": reflect.ValueOf((*_container_heap_Interface)(nil)), - } -} - -// _container_heap_Interface is an interface wrapper for Interface type -type _container_heap_Interface struct { - IValue interface{} - WLen func() int - WLess func(i int, j int) bool - WPop func() interface{} - WPush func(x interface{}) - WSwap func(i int, j int) -} - -func (W _container_heap_Interface) Len() int { - return W.WLen() -} -func (W _container_heap_Interface) Less(i int, j int) bool { - return W.WLess(i, j) -} -func (W _container_heap_Interface) Pop() interface{} { - return W.WPop() -} -func (W _container_heap_Interface) Push(x interface{}) { - W.WPush(x) -} -func (W _container_heap_Interface) Swap(i int, j int) { - W.WSwap(i, j) -} diff --git a/stdlib/go1_16_container_list.go b/stdlib/go1_16_container_list.go deleted file mode 100644 index 369b59c0d..000000000 --- a/stdlib/go1_16_container_list.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract container/list'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "container/list" - "reflect" -) - -func init() { - Symbols["container/list/list"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(list.New), - - // type definitions - "Element": reflect.ValueOf((*list.Element)(nil)), - "List": reflect.ValueOf((*list.List)(nil)), - } -} diff --git a/stdlib/go1_16_container_ring.go b/stdlib/go1_16_container_ring.go deleted file mode 100644 index 84bc2d25f..000000000 --- a/stdlib/go1_16_container_ring.go +++ /dev/null @@ -1,20 +0,0 @@ -// Code generated by 'yaegi extract container/ring'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "container/ring" - "reflect" -) - -func init() { - Symbols["container/ring/ring"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(ring.New), - - // type definitions - "Ring": reflect.ValueOf((*ring.Ring)(nil)), - } -} diff --git a/stdlib/go1_16_context.go b/stdlib/go1_16_context.go deleted file mode 100644 index d8bb63bc3..000000000 --- a/stdlib/go1_16_context.go +++ /dev/null @@ -1,54 +0,0 @@ -// Code generated by 'yaegi extract context'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "context" - "reflect" - "time" -) - -func init() { - Symbols["context/context"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Background": reflect.ValueOf(context.Background), - "Canceled": reflect.ValueOf(&context.Canceled).Elem(), - "DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(), - "TODO": reflect.ValueOf(context.TODO), - "WithCancel": reflect.ValueOf(context.WithCancel), - "WithDeadline": reflect.ValueOf(context.WithDeadline), - "WithTimeout": reflect.ValueOf(context.WithTimeout), - "WithValue": reflect.ValueOf(context.WithValue), - - // type definitions - "CancelFunc": reflect.ValueOf((*context.CancelFunc)(nil)), - "Context": reflect.ValueOf((*context.Context)(nil)), - - // interface wrapper definitions - "_Context": reflect.ValueOf((*_context_Context)(nil)), - } -} - -// _context_Context is an interface wrapper for Context type -type _context_Context struct { - IValue interface{} - WDeadline func() (deadline time.Time, ok bool) - WDone func() <-chan struct{} - WErr func() error - WValue func(key interface{}) interface{} -} - -func (W _context_Context) Deadline() (deadline time.Time, ok bool) { - return W.WDeadline() -} -func (W _context_Context) Done() <-chan struct{} { - return W.WDone() -} -func (W _context_Context) Err() error { - return W.WErr() -} -func (W _context_Context) Value(key interface{}) interface{} { - return W.WValue(key) -} diff --git a/stdlib/go1_16_crypto.go b/stdlib/go1_16_crypto.go deleted file mode 100644 index 072f60894..000000000 --- a/stdlib/go1_16_crypto.go +++ /dev/null @@ -1,107 +0,0 @@ -// Code generated by 'yaegi extract crypto'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto" - "io" - "reflect" -) - -func init() { - Symbols["crypto/crypto"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BLAKE2b_256": reflect.ValueOf(crypto.BLAKE2b_256), - "BLAKE2b_384": reflect.ValueOf(crypto.BLAKE2b_384), - "BLAKE2b_512": reflect.ValueOf(crypto.BLAKE2b_512), - "BLAKE2s_256": reflect.ValueOf(crypto.BLAKE2s_256), - "MD4": reflect.ValueOf(crypto.MD4), - "MD5": reflect.ValueOf(crypto.MD5), - "MD5SHA1": reflect.ValueOf(crypto.MD5SHA1), - "RIPEMD160": reflect.ValueOf(crypto.RIPEMD160), - "RegisterHash": reflect.ValueOf(crypto.RegisterHash), - "SHA1": reflect.ValueOf(crypto.SHA1), - "SHA224": reflect.ValueOf(crypto.SHA224), - "SHA256": reflect.ValueOf(crypto.SHA256), - "SHA384": reflect.ValueOf(crypto.SHA384), - "SHA3_224": reflect.ValueOf(crypto.SHA3_224), - "SHA3_256": reflect.ValueOf(crypto.SHA3_256), - "SHA3_384": reflect.ValueOf(crypto.SHA3_384), - "SHA3_512": reflect.ValueOf(crypto.SHA3_512), - "SHA512": reflect.ValueOf(crypto.SHA512), - "SHA512_224": reflect.ValueOf(crypto.SHA512_224), - "SHA512_256": reflect.ValueOf(crypto.SHA512_256), - - // type definitions - "Decrypter": reflect.ValueOf((*crypto.Decrypter)(nil)), - "DecrypterOpts": reflect.ValueOf((*crypto.DecrypterOpts)(nil)), - "Hash": reflect.ValueOf((*crypto.Hash)(nil)), - "PrivateKey": reflect.ValueOf((*crypto.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*crypto.PublicKey)(nil)), - "Signer": reflect.ValueOf((*crypto.Signer)(nil)), - "SignerOpts": reflect.ValueOf((*crypto.SignerOpts)(nil)), - - // interface wrapper definitions - "_Decrypter": reflect.ValueOf((*_crypto_Decrypter)(nil)), - "_DecrypterOpts": reflect.ValueOf((*_crypto_DecrypterOpts)(nil)), - "_PrivateKey": reflect.ValueOf((*_crypto_PrivateKey)(nil)), - "_PublicKey": reflect.ValueOf((*_crypto_PublicKey)(nil)), - "_Signer": reflect.ValueOf((*_crypto_Signer)(nil)), - "_SignerOpts": reflect.ValueOf((*_crypto_SignerOpts)(nil)), - } -} - -// _crypto_Decrypter is an interface wrapper for Decrypter type -type _crypto_Decrypter struct { - IValue interface{} - WDecrypt func(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) - WPublic func() crypto.PublicKey -} - -func (W _crypto_Decrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) { - return W.WDecrypt(rand, msg, opts) -} -func (W _crypto_Decrypter) Public() crypto.PublicKey { - return W.WPublic() -} - -// _crypto_DecrypterOpts is an interface wrapper for DecrypterOpts type -type _crypto_DecrypterOpts struct { - IValue interface{} -} - -// _crypto_PrivateKey is an interface wrapper for PrivateKey type -type _crypto_PrivateKey struct { - IValue interface{} -} - -// _crypto_PublicKey is an interface wrapper for PublicKey type -type _crypto_PublicKey struct { - IValue interface{} -} - -// _crypto_Signer is an interface wrapper for Signer type -type _crypto_Signer struct { - IValue interface{} - WPublic func() crypto.PublicKey - WSign func(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) -} - -func (W _crypto_Signer) Public() crypto.PublicKey { - return W.WPublic() -} -func (W _crypto_Signer) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) { - return W.WSign(rand, digest, opts) -} - -// _crypto_SignerOpts is an interface wrapper for SignerOpts type -type _crypto_SignerOpts struct { - IValue interface{} - WHashFunc func() crypto.Hash -} - -func (W _crypto_SignerOpts) HashFunc() crypto.Hash { - return W.WHashFunc() -} diff --git a/stdlib/go1_16_crypto_aes.go b/stdlib/go1_16_crypto_aes.go deleted file mode 100644 index 3068a70a2..000000000 --- a/stdlib/go1_16_crypto_aes.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/aes" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/aes/aes"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NewCipher": reflect.ValueOf(aes.NewCipher), - - // type definitions - "KeySizeError": reflect.ValueOf((*aes.KeySizeError)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_cipher.go b/stdlib/go1_16_crypto_cipher.go deleted file mode 100644 index 7c713a9c4..000000000 --- a/stdlib/go1_16_crypto_cipher.go +++ /dev/null @@ -1,103 +0,0 @@ -// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/cipher" - "reflect" -) - -func init() { - Symbols["crypto/cipher/cipher"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewCBCDecrypter": reflect.ValueOf(cipher.NewCBCDecrypter), - "NewCBCEncrypter": reflect.ValueOf(cipher.NewCBCEncrypter), - "NewCFBDecrypter": reflect.ValueOf(cipher.NewCFBDecrypter), - "NewCFBEncrypter": reflect.ValueOf(cipher.NewCFBEncrypter), - "NewCTR": reflect.ValueOf(cipher.NewCTR), - "NewGCM": reflect.ValueOf(cipher.NewGCM), - "NewGCMWithNonceSize": reflect.ValueOf(cipher.NewGCMWithNonceSize), - "NewGCMWithTagSize": reflect.ValueOf(cipher.NewGCMWithTagSize), - "NewOFB": reflect.ValueOf(cipher.NewOFB), - - // type definitions - "AEAD": reflect.ValueOf((*cipher.AEAD)(nil)), - "Block": reflect.ValueOf((*cipher.Block)(nil)), - "BlockMode": reflect.ValueOf((*cipher.BlockMode)(nil)), - "Stream": reflect.ValueOf((*cipher.Stream)(nil)), - "StreamReader": reflect.ValueOf((*cipher.StreamReader)(nil)), - "StreamWriter": reflect.ValueOf((*cipher.StreamWriter)(nil)), - - // interface wrapper definitions - "_AEAD": reflect.ValueOf((*_crypto_cipher_AEAD)(nil)), - "_Block": reflect.ValueOf((*_crypto_cipher_Block)(nil)), - "_BlockMode": reflect.ValueOf((*_crypto_cipher_BlockMode)(nil)), - "_Stream": reflect.ValueOf((*_crypto_cipher_Stream)(nil)), - } -} - -// _crypto_cipher_AEAD is an interface wrapper for AEAD type -type _crypto_cipher_AEAD struct { - IValue interface{} - WNonceSize func() int - WOpen func(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) - WOverhead func() int - WSeal func(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte -} - -func (W _crypto_cipher_AEAD) NonceSize() int { - return W.WNonceSize() -} -func (W _crypto_cipher_AEAD) Open(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) { - return W.WOpen(dst, nonce, ciphertext, additionalData) -} -func (W _crypto_cipher_AEAD) Overhead() int { - return W.WOverhead() -} -func (W _crypto_cipher_AEAD) Seal(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte { - return W.WSeal(dst, nonce, plaintext, additionalData) -} - -// _crypto_cipher_Block is an interface wrapper for Block type -type _crypto_cipher_Block struct { - IValue interface{} - WBlockSize func() int - WDecrypt func(dst []byte, src []byte) - WEncrypt func(dst []byte, src []byte) -} - -func (W _crypto_cipher_Block) BlockSize() int { - return W.WBlockSize() -} -func (W _crypto_cipher_Block) Decrypt(dst []byte, src []byte) { - W.WDecrypt(dst, src) -} -func (W _crypto_cipher_Block) Encrypt(dst []byte, src []byte) { - W.WEncrypt(dst, src) -} - -// _crypto_cipher_BlockMode is an interface wrapper for BlockMode type -type _crypto_cipher_BlockMode struct { - IValue interface{} - WBlockSize func() int - WCryptBlocks func(dst []byte, src []byte) -} - -func (W _crypto_cipher_BlockMode) BlockSize() int { - return W.WBlockSize() -} -func (W _crypto_cipher_BlockMode) CryptBlocks(dst []byte, src []byte) { - W.WCryptBlocks(dst, src) -} - -// _crypto_cipher_Stream is an interface wrapper for Stream type -type _crypto_cipher_Stream struct { - IValue interface{} - WXORKeyStream func(dst []byte, src []byte) -} - -func (W _crypto_cipher_Stream) XORKeyStream(dst []byte, src []byte) { - W.WXORKeyStream(dst, src) -} diff --git a/stdlib/go1_16_crypto_des.go b/stdlib/go1_16_crypto_des.go deleted file mode 100644 index 16e142754..000000000 --- a/stdlib/go1_16_crypto_des.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/des" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/des/des"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NewCipher": reflect.ValueOf(des.NewCipher), - "NewTripleDESCipher": reflect.ValueOf(des.NewTripleDESCipher), - - // type definitions - "KeySizeError": reflect.ValueOf((*des.KeySizeError)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_dsa.go b/stdlib/go1_16_crypto_dsa.go deleted file mode 100644 index e8182d3d2..000000000 --- a/stdlib/go1_16_crypto_dsa.go +++ /dev/null @@ -1,31 +0,0 @@ -// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/dsa" - "reflect" -) - -func init() { - Symbols["crypto/dsa/dsa"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrInvalidPublicKey": reflect.ValueOf(&dsa.ErrInvalidPublicKey).Elem(), - "GenerateKey": reflect.ValueOf(dsa.GenerateKey), - "GenerateParameters": reflect.ValueOf(dsa.GenerateParameters), - "L1024N160": reflect.ValueOf(dsa.L1024N160), - "L2048N224": reflect.ValueOf(dsa.L2048N224), - "L2048N256": reflect.ValueOf(dsa.L2048N256), - "L3072N256": reflect.ValueOf(dsa.L3072N256), - "Sign": reflect.ValueOf(dsa.Sign), - "Verify": reflect.ValueOf(dsa.Verify), - - // type definitions - "ParameterSizes": reflect.ValueOf((*dsa.ParameterSizes)(nil)), - "Parameters": reflect.ValueOf((*dsa.Parameters)(nil)), - "PrivateKey": reflect.ValueOf((*dsa.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*dsa.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_ecdsa.go b/stdlib/go1_16_crypto_ecdsa.go deleted file mode 100644 index b80efde08..000000000 --- a/stdlib/go1_16_crypto_ecdsa.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/ecdsa" - "reflect" -) - -func init() { - Symbols["crypto/ecdsa/ecdsa"] = map[string]reflect.Value{ - // function, constant and variable definitions - "GenerateKey": reflect.ValueOf(ecdsa.GenerateKey), - "Sign": reflect.ValueOf(ecdsa.Sign), - "SignASN1": reflect.ValueOf(ecdsa.SignASN1), - "Verify": reflect.ValueOf(ecdsa.Verify), - "VerifyASN1": reflect.ValueOf(ecdsa.VerifyASN1), - - // type definitions - "PrivateKey": reflect.ValueOf((*ecdsa.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*ecdsa.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_ed25519.go b/stdlib/go1_16_crypto_ed25519.go deleted file mode 100644 index 41f05f8aa..000000000 --- a/stdlib/go1_16_crypto_ed25519.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/ed25519" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/ed25519/ed25519"] = map[string]reflect.Value{ - // function, constant and variable definitions - "GenerateKey": reflect.ValueOf(ed25519.GenerateKey), - "NewKeyFromSeed": reflect.ValueOf(ed25519.NewKeyFromSeed), - "PrivateKeySize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PublicKeySize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SeedSize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Sign": reflect.ValueOf(ed25519.Sign), - "SignatureSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Verify": reflect.ValueOf(ed25519.Verify), - - // type definitions - "PrivateKey": reflect.ValueOf((*ed25519.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*ed25519.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_elliptic.go b/stdlib/go1_16_crypto_elliptic.go deleted file mode 100644 index 0d9b603ae..000000000 --- a/stdlib/go1_16_crypto_elliptic.go +++ /dev/null @@ -1,63 +0,0 @@ -// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/elliptic" - "math/big" - "reflect" -) - -func init() { - Symbols["crypto/elliptic/elliptic"] = map[string]reflect.Value{ - // function, constant and variable definitions - "GenerateKey": reflect.ValueOf(elliptic.GenerateKey), - "Marshal": reflect.ValueOf(elliptic.Marshal), - "MarshalCompressed": reflect.ValueOf(elliptic.MarshalCompressed), - "P224": reflect.ValueOf(elliptic.P224), - "P256": reflect.ValueOf(elliptic.P256), - "P384": reflect.ValueOf(elliptic.P384), - "P521": reflect.ValueOf(elliptic.P521), - "Unmarshal": reflect.ValueOf(elliptic.Unmarshal), - "UnmarshalCompressed": reflect.ValueOf(elliptic.UnmarshalCompressed), - - // type definitions - "Curve": reflect.ValueOf((*elliptic.Curve)(nil)), - "CurveParams": reflect.ValueOf((*elliptic.CurveParams)(nil)), - - // interface wrapper definitions - "_Curve": reflect.ValueOf((*_crypto_elliptic_Curve)(nil)), - } -} - -// _crypto_elliptic_Curve is an interface wrapper for Curve type -type _crypto_elliptic_Curve struct { - IValue interface{} - WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) - WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) - WIsOnCurve func(x *big.Int, y *big.Int) bool - WParams func() *elliptic.CurveParams - WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int) - WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) -} - -func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) { - return W.WAdd(x1, y1, x2, y2) -} -func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) { - return W.WDouble(x1, y1) -} -func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { - return W.WIsOnCurve(x, y) -} -func (W _crypto_elliptic_Curve) Params() *elliptic.CurveParams { - return W.WParams() -} -func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) { - return W.WScalarBaseMult(k) -} -func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) { - return W.WScalarMult(x1, y1, k) -} diff --git a/stdlib/go1_16_crypto_hmac.go b/stdlib/go1_16_crypto_hmac.go deleted file mode 100644 index db024d2eb..000000000 --- a/stdlib/go1_16_crypto_hmac.go +++ /dev/null @@ -1,18 +0,0 @@ -// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/hmac" - "reflect" -) - -func init() { - Symbols["crypto/hmac/hmac"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Equal": reflect.ValueOf(hmac.Equal), - "New": reflect.ValueOf(hmac.New), - } -} diff --git a/stdlib/go1_16_crypto_md5.go b/stdlib/go1_16_crypto_md5.go deleted file mode 100644 index afff13cc9..000000000 --- a/stdlib/go1_16_crypto_md5.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/md5" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/md5/md5"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "New": reflect.ValueOf(md5.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Sum": reflect.ValueOf(md5.Sum), - } -} diff --git a/stdlib/go1_16_crypto_rand.go b/stdlib/go1_16_crypto_rand.go deleted file mode 100644 index 28036a0dd..000000000 --- a/stdlib/go1_16_crypto_rand.go +++ /dev/null @@ -1,20 +0,0 @@ -// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/rand" - "reflect" -) - -func init() { - Symbols["crypto/rand/rand"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Int": reflect.ValueOf(rand.Int), - "Prime": reflect.ValueOf(rand.Prime), - "Read": reflect.ValueOf(rand.Read), - "Reader": reflect.ValueOf(&rand.Reader).Elem(), - } -} diff --git a/stdlib/go1_16_crypto_rc4.go b/stdlib/go1_16_crypto_rc4.go deleted file mode 100644 index 588834009..000000000 --- a/stdlib/go1_16_crypto_rc4.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/rc4" - "reflect" -) - -func init() { - Symbols["crypto/rc4/rc4"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewCipher": reflect.ValueOf(rc4.NewCipher), - - // type definitions - "Cipher": reflect.ValueOf((*rc4.Cipher)(nil)), - "KeySizeError": reflect.ValueOf((*rc4.KeySizeError)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_rsa.go b/stdlib/go1_16_crypto_rsa.go deleted file mode 100644 index b98d18850..000000000 --- a/stdlib/go1_16_crypto_rsa.go +++ /dev/null @@ -1,43 +0,0 @@ -// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/rsa" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/rsa/rsa"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DecryptOAEP": reflect.ValueOf(rsa.DecryptOAEP), - "DecryptPKCS1v15": reflect.ValueOf(rsa.DecryptPKCS1v15), - "DecryptPKCS1v15SessionKey": reflect.ValueOf(rsa.DecryptPKCS1v15SessionKey), - "EncryptOAEP": reflect.ValueOf(rsa.EncryptOAEP), - "EncryptPKCS1v15": reflect.ValueOf(rsa.EncryptPKCS1v15), - "ErrDecryption": reflect.ValueOf(&rsa.ErrDecryption).Elem(), - "ErrMessageTooLong": reflect.ValueOf(&rsa.ErrMessageTooLong).Elem(), - "ErrVerification": reflect.ValueOf(&rsa.ErrVerification).Elem(), - "GenerateKey": reflect.ValueOf(rsa.GenerateKey), - "GenerateMultiPrimeKey": reflect.ValueOf(rsa.GenerateMultiPrimeKey), - "PSSSaltLengthAuto": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PSSSaltLengthEqualsHash": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "SignPKCS1v15": reflect.ValueOf(rsa.SignPKCS1v15), - "SignPSS": reflect.ValueOf(rsa.SignPSS), - "VerifyPKCS1v15": reflect.ValueOf(rsa.VerifyPKCS1v15), - "VerifyPSS": reflect.ValueOf(rsa.VerifyPSS), - - // type definitions - "CRTValue": reflect.ValueOf((*rsa.CRTValue)(nil)), - "OAEPOptions": reflect.ValueOf((*rsa.OAEPOptions)(nil)), - "PKCS1v15DecryptOptions": reflect.ValueOf((*rsa.PKCS1v15DecryptOptions)(nil)), - "PSSOptions": reflect.ValueOf((*rsa.PSSOptions)(nil)), - "PrecomputedValues": reflect.ValueOf((*rsa.PrecomputedValues)(nil)), - "PrivateKey": reflect.ValueOf((*rsa.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*rsa.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_sha1.go b/stdlib/go1_16_crypto_sha1.go deleted file mode 100644 index 4e5779ef7..000000000 --- a/stdlib/go1_16_crypto_sha1.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/sha1" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/sha1/sha1"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "New": reflect.ValueOf(sha1.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "Sum": reflect.ValueOf(sha1.Sum), - } -} diff --git a/stdlib/go1_16_crypto_sha256.go b/stdlib/go1_16_crypto_sha256.go deleted file mode 100644 index c08613529..000000000 --- a/stdlib/go1_16_crypto_sha256.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/sha256" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/sha256/sha256"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "New": reflect.ValueOf(sha256.New), - "New224": reflect.ValueOf(sha256.New224), - "Size": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "Sum224": reflect.ValueOf(sha256.Sum224), - "Sum256": reflect.ValueOf(sha256.Sum256), - } -} diff --git a/stdlib/go1_16_crypto_sha512.go b/stdlib/go1_16_crypto_sha512.go deleted file mode 100644 index 4591108c5..000000000 --- a/stdlib/go1_16_crypto_sha512.go +++ /dev/null @@ -1,31 +0,0 @@ -// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/sha512" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/sha512/sha512"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "New": reflect.ValueOf(sha512.New), - "New384": reflect.ValueOf(sha512.New384), - "New512_224": reflect.ValueOf(sha512.New512_224), - "New512_256": reflect.ValueOf(sha512.New512_256), - "Size": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "Size256": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Size384": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "Sum384": reflect.ValueOf(sha512.Sum384), - "Sum512": reflect.ValueOf(sha512.Sum512), - "Sum512_224": reflect.ValueOf(sha512.Sum512_224), - "Sum512_256": reflect.ValueOf(sha512.Sum512_256), - } -} diff --git a/stdlib/go1_16_crypto_subtle.go b/stdlib/go1_16_crypto_subtle.go deleted file mode 100644 index 7f4a7d679..000000000 --- a/stdlib/go1_16_crypto_subtle.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/subtle" - "reflect" -) - -func init() { - Symbols["crypto/subtle/subtle"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ConstantTimeByteEq": reflect.ValueOf(subtle.ConstantTimeByteEq), - "ConstantTimeCompare": reflect.ValueOf(subtle.ConstantTimeCompare), - "ConstantTimeCopy": reflect.ValueOf(subtle.ConstantTimeCopy), - "ConstantTimeEq": reflect.ValueOf(subtle.ConstantTimeEq), - "ConstantTimeLessOrEq": reflect.ValueOf(subtle.ConstantTimeLessOrEq), - "ConstantTimeSelect": reflect.ValueOf(subtle.ConstantTimeSelect), - } -} diff --git a/stdlib/go1_16_crypto_tls.go b/stdlib/go1_16_crypto_tls.go deleted file mode 100644 index 8de497350..000000000 --- a/stdlib/go1_16_crypto_tls.go +++ /dev/null @@ -1,121 +0,0 @@ -// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/tls" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/tls/tls"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CipherSuiteName": reflect.ValueOf(tls.CipherSuiteName), - "CipherSuites": reflect.ValueOf(tls.CipherSuites), - "Client": reflect.ValueOf(tls.Client), - "CurveP256": reflect.ValueOf(tls.CurveP256), - "CurveP384": reflect.ValueOf(tls.CurveP384), - "CurveP521": reflect.ValueOf(tls.CurveP521), - "Dial": reflect.ValueOf(tls.Dial), - "DialWithDialer": reflect.ValueOf(tls.DialWithDialer), - "ECDSAWithP256AndSHA256": reflect.ValueOf(tls.ECDSAWithP256AndSHA256), - "ECDSAWithP384AndSHA384": reflect.ValueOf(tls.ECDSAWithP384AndSHA384), - "ECDSAWithP521AndSHA512": reflect.ValueOf(tls.ECDSAWithP521AndSHA512), - "ECDSAWithSHA1": reflect.ValueOf(tls.ECDSAWithSHA1), - "Ed25519": reflect.ValueOf(tls.Ed25519), - "InsecureCipherSuites": reflect.ValueOf(tls.InsecureCipherSuites), - "Listen": reflect.ValueOf(tls.Listen), - "LoadX509KeyPair": reflect.ValueOf(tls.LoadX509KeyPair), - "NewLRUClientSessionCache": reflect.ValueOf(tls.NewLRUClientSessionCache), - "NewListener": reflect.ValueOf(tls.NewListener), - "NoClientCert": reflect.ValueOf(tls.NoClientCert), - "PKCS1WithSHA1": reflect.ValueOf(tls.PKCS1WithSHA1), - "PKCS1WithSHA256": reflect.ValueOf(tls.PKCS1WithSHA256), - "PKCS1WithSHA384": reflect.ValueOf(tls.PKCS1WithSHA384), - "PKCS1WithSHA512": reflect.ValueOf(tls.PKCS1WithSHA512), - "PSSWithSHA256": reflect.ValueOf(tls.PSSWithSHA256), - "PSSWithSHA384": reflect.ValueOf(tls.PSSWithSHA384), - "PSSWithSHA512": reflect.ValueOf(tls.PSSWithSHA512), - "RenegotiateFreelyAsClient": reflect.ValueOf(tls.RenegotiateFreelyAsClient), - "RenegotiateNever": reflect.ValueOf(tls.RenegotiateNever), - "RenegotiateOnceAsClient": reflect.ValueOf(tls.RenegotiateOnceAsClient), - "RequestClientCert": reflect.ValueOf(tls.RequestClientCert), - "RequireAndVerifyClientCert": reflect.ValueOf(tls.RequireAndVerifyClientCert), - "RequireAnyClientCert": reflect.ValueOf(tls.RequireAnyClientCert), - "Server": reflect.ValueOf(tls.Server), - "TLS_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_AES_128_GCM_SHA256), - "TLS_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_AES_256_GCM_SHA384), - "TLS_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_CHACHA20_POLY1305_SHA256), - "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA), - "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256), - "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256), - "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA), - "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384), - "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305), - "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256), - "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA), - "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA), - "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA), - "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256), - "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256), - "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA), - "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384), - "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305), - "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256), - "TLS_ECDHE_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA), - "TLS_FALLBACK_SCSV": reflect.ValueOf(tls.TLS_FALLBACK_SCSV), - "TLS_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA), - "TLS_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA), - "TLS_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA256), - "TLS_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_GCM_SHA256), - "TLS_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_CBC_SHA), - "TLS_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_GCM_SHA384), - "TLS_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_RC4_128_SHA), - "VerifyClientCertIfGiven": reflect.ValueOf(tls.VerifyClientCertIfGiven), - "VersionSSL30": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "VersionTLS10": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "VersionTLS11": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "VersionTLS12": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "VersionTLS13": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "X25519": reflect.ValueOf(tls.X25519), - "X509KeyPair": reflect.ValueOf(tls.X509KeyPair), - - // type definitions - "Certificate": reflect.ValueOf((*tls.Certificate)(nil)), - "CertificateRequestInfo": reflect.ValueOf((*tls.CertificateRequestInfo)(nil)), - "CipherSuite": reflect.ValueOf((*tls.CipherSuite)(nil)), - "ClientAuthType": reflect.ValueOf((*tls.ClientAuthType)(nil)), - "ClientHelloInfo": reflect.ValueOf((*tls.ClientHelloInfo)(nil)), - "ClientSessionCache": reflect.ValueOf((*tls.ClientSessionCache)(nil)), - "ClientSessionState": reflect.ValueOf((*tls.ClientSessionState)(nil)), - "Config": reflect.ValueOf((*tls.Config)(nil)), - "Conn": reflect.ValueOf((*tls.Conn)(nil)), - "ConnectionState": reflect.ValueOf((*tls.ConnectionState)(nil)), - "CurveID": reflect.ValueOf((*tls.CurveID)(nil)), - "Dialer": reflect.ValueOf((*tls.Dialer)(nil)), - "RecordHeaderError": reflect.ValueOf((*tls.RecordHeaderError)(nil)), - "RenegotiationSupport": reflect.ValueOf((*tls.RenegotiationSupport)(nil)), - "SignatureScheme": reflect.ValueOf((*tls.SignatureScheme)(nil)), - - // interface wrapper definitions - "_ClientSessionCache": reflect.ValueOf((*_crypto_tls_ClientSessionCache)(nil)), - } -} - -// _crypto_tls_ClientSessionCache is an interface wrapper for ClientSessionCache type -type _crypto_tls_ClientSessionCache struct { - IValue interface{} - WGet func(sessionKey string) (session *tls.ClientSessionState, ok bool) - WPut func(sessionKey string, cs *tls.ClientSessionState) -} - -func (W _crypto_tls_ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessionState, ok bool) { - return W.WGet(sessionKey) -} -func (W _crypto_tls_ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) { - W.WPut(sessionKey, cs) -} diff --git a/stdlib/go1_16_crypto_x509.go b/stdlib/go1_16_crypto_x509.go deleted file mode 100644 index f6554278a..000000000 --- a/stdlib/go1_16_crypto_x509.go +++ /dev/null @@ -1,121 +0,0 @@ -// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/x509" - "reflect" -) - -func init() { - Symbols["crypto/x509/x509"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CANotAuthorizedForExtKeyUsage": reflect.ValueOf(x509.CANotAuthorizedForExtKeyUsage), - "CANotAuthorizedForThisName": reflect.ValueOf(x509.CANotAuthorizedForThisName), - "CreateCertificate": reflect.ValueOf(x509.CreateCertificate), - "CreateCertificateRequest": reflect.ValueOf(x509.CreateCertificateRequest), - "CreateRevocationList": reflect.ValueOf(x509.CreateRevocationList), - "DSA": reflect.ValueOf(x509.DSA), - "DSAWithSHA1": reflect.ValueOf(x509.DSAWithSHA1), - "DSAWithSHA256": reflect.ValueOf(x509.DSAWithSHA256), - "DecryptPEMBlock": reflect.ValueOf(x509.DecryptPEMBlock), - "ECDSA": reflect.ValueOf(x509.ECDSA), - "ECDSAWithSHA1": reflect.ValueOf(x509.ECDSAWithSHA1), - "ECDSAWithSHA256": reflect.ValueOf(x509.ECDSAWithSHA256), - "ECDSAWithSHA384": reflect.ValueOf(x509.ECDSAWithSHA384), - "ECDSAWithSHA512": reflect.ValueOf(x509.ECDSAWithSHA512), - "Ed25519": reflect.ValueOf(x509.Ed25519), - "EncryptPEMBlock": reflect.ValueOf(x509.EncryptPEMBlock), - "ErrUnsupportedAlgorithm": reflect.ValueOf(&x509.ErrUnsupportedAlgorithm).Elem(), - "Expired": reflect.ValueOf(x509.Expired), - "ExtKeyUsageAny": reflect.ValueOf(x509.ExtKeyUsageAny), - "ExtKeyUsageClientAuth": reflect.ValueOf(x509.ExtKeyUsageClientAuth), - "ExtKeyUsageCodeSigning": reflect.ValueOf(x509.ExtKeyUsageCodeSigning), - "ExtKeyUsageEmailProtection": reflect.ValueOf(x509.ExtKeyUsageEmailProtection), - "ExtKeyUsageIPSECEndSystem": reflect.ValueOf(x509.ExtKeyUsageIPSECEndSystem), - "ExtKeyUsageIPSECTunnel": reflect.ValueOf(x509.ExtKeyUsageIPSECTunnel), - "ExtKeyUsageIPSECUser": reflect.ValueOf(x509.ExtKeyUsageIPSECUser), - "ExtKeyUsageMicrosoftCommercialCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftCommercialCodeSigning), - "ExtKeyUsageMicrosoftKernelCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftKernelCodeSigning), - "ExtKeyUsageMicrosoftServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageMicrosoftServerGatedCrypto), - "ExtKeyUsageNetscapeServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageNetscapeServerGatedCrypto), - "ExtKeyUsageOCSPSigning": reflect.ValueOf(x509.ExtKeyUsageOCSPSigning), - "ExtKeyUsageServerAuth": reflect.ValueOf(x509.ExtKeyUsageServerAuth), - "ExtKeyUsageTimeStamping": reflect.ValueOf(x509.ExtKeyUsageTimeStamping), - "IncompatibleUsage": reflect.ValueOf(x509.IncompatibleUsage), - "IncorrectPasswordError": reflect.ValueOf(&x509.IncorrectPasswordError).Elem(), - "IsEncryptedPEMBlock": reflect.ValueOf(x509.IsEncryptedPEMBlock), - "KeyUsageCRLSign": reflect.ValueOf(x509.KeyUsageCRLSign), - "KeyUsageCertSign": reflect.ValueOf(x509.KeyUsageCertSign), - "KeyUsageContentCommitment": reflect.ValueOf(x509.KeyUsageContentCommitment), - "KeyUsageDataEncipherment": reflect.ValueOf(x509.KeyUsageDataEncipherment), - "KeyUsageDecipherOnly": reflect.ValueOf(x509.KeyUsageDecipherOnly), - "KeyUsageDigitalSignature": reflect.ValueOf(x509.KeyUsageDigitalSignature), - "KeyUsageEncipherOnly": reflect.ValueOf(x509.KeyUsageEncipherOnly), - "KeyUsageKeyAgreement": reflect.ValueOf(x509.KeyUsageKeyAgreement), - "KeyUsageKeyEncipherment": reflect.ValueOf(x509.KeyUsageKeyEncipherment), - "MD2WithRSA": reflect.ValueOf(x509.MD2WithRSA), - "MD5WithRSA": reflect.ValueOf(x509.MD5WithRSA), - "MarshalECPrivateKey": reflect.ValueOf(x509.MarshalECPrivateKey), - "MarshalPKCS1PrivateKey": reflect.ValueOf(x509.MarshalPKCS1PrivateKey), - "MarshalPKCS1PublicKey": reflect.ValueOf(x509.MarshalPKCS1PublicKey), - "MarshalPKCS8PrivateKey": reflect.ValueOf(x509.MarshalPKCS8PrivateKey), - "MarshalPKIXPublicKey": reflect.ValueOf(x509.MarshalPKIXPublicKey), - "NameConstraintsWithoutSANs": reflect.ValueOf(x509.NameConstraintsWithoutSANs), - "NameMismatch": reflect.ValueOf(x509.NameMismatch), - "NewCertPool": reflect.ValueOf(x509.NewCertPool), - "NotAuthorizedToSign": reflect.ValueOf(x509.NotAuthorizedToSign), - "PEMCipher3DES": reflect.ValueOf(x509.PEMCipher3DES), - "PEMCipherAES128": reflect.ValueOf(x509.PEMCipherAES128), - "PEMCipherAES192": reflect.ValueOf(x509.PEMCipherAES192), - "PEMCipherAES256": reflect.ValueOf(x509.PEMCipherAES256), - "PEMCipherDES": reflect.ValueOf(x509.PEMCipherDES), - "ParseCRL": reflect.ValueOf(x509.ParseCRL), - "ParseCertificate": reflect.ValueOf(x509.ParseCertificate), - "ParseCertificateRequest": reflect.ValueOf(x509.ParseCertificateRequest), - "ParseCertificates": reflect.ValueOf(x509.ParseCertificates), - "ParseDERCRL": reflect.ValueOf(x509.ParseDERCRL), - "ParseECPrivateKey": reflect.ValueOf(x509.ParseECPrivateKey), - "ParsePKCS1PrivateKey": reflect.ValueOf(x509.ParsePKCS1PrivateKey), - "ParsePKCS1PublicKey": reflect.ValueOf(x509.ParsePKCS1PublicKey), - "ParsePKCS8PrivateKey": reflect.ValueOf(x509.ParsePKCS8PrivateKey), - "ParsePKIXPublicKey": reflect.ValueOf(x509.ParsePKIXPublicKey), - "PureEd25519": reflect.ValueOf(x509.PureEd25519), - "RSA": reflect.ValueOf(x509.RSA), - "SHA1WithRSA": reflect.ValueOf(x509.SHA1WithRSA), - "SHA256WithRSA": reflect.ValueOf(x509.SHA256WithRSA), - "SHA256WithRSAPSS": reflect.ValueOf(x509.SHA256WithRSAPSS), - "SHA384WithRSA": reflect.ValueOf(x509.SHA384WithRSA), - "SHA384WithRSAPSS": reflect.ValueOf(x509.SHA384WithRSAPSS), - "SHA512WithRSA": reflect.ValueOf(x509.SHA512WithRSA), - "SHA512WithRSAPSS": reflect.ValueOf(x509.SHA512WithRSAPSS), - "SystemCertPool": reflect.ValueOf(x509.SystemCertPool), - "TooManyConstraints": reflect.ValueOf(x509.TooManyConstraints), - "TooManyIntermediates": reflect.ValueOf(x509.TooManyIntermediates), - "UnconstrainedName": reflect.ValueOf(x509.UnconstrainedName), - "UnknownPublicKeyAlgorithm": reflect.ValueOf(x509.UnknownPublicKeyAlgorithm), - "UnknownSignatureAlgorithm": reflect.ValueOf(x509.UnknownSignatureAlgorithm), - - // type definitions - "CertPool": reflect.ValueOf((*x509.CertPool)(nil)), - "Certificate": reflect.ValueOf((*x509.Certificate)(nil)), - "CertificateInvalidError": reflect.ValueOf((*x509.CertificateInvalidError)(nil)), - "CertificateRequest": reflect.ValueOf((*x509.CertificateRequest)(nil)), - "ConstraintViolationError": reflect.ValueOf((*x509.ConstraintViolationError)(nil)), - "ExtKeyUsage": reflect.ValueOf((*x509.ExtKeyUsage)(nil)), - "HostnameError": reflect.ValueOf((*x509.HostnameError)(nil)), - "InsecureAlgorithmError": reflect.ValueOf((*x509.InsecureAlgorithmError)(nil)), - "InvalidReason": reflect.ValueOf((*x509.InvalidReason)(nil)), - "KeyUsage": reflect.ValueOf((*x509.KeyUsage)(nil)), - "PEMCipher": reflect.ValueOf((*x509.PEMCipher)(nil)), - "PublicKeyAlgorithm": reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)), - "RevocationList": reflect.ValueOf((*x509.RevocationList)(nil)), - "SignatureAlgorithm": reflect.ValueOf((*x509.SignatureAlgorithm)(nil)), - "SystemRootsError": reflect.ValueOf((*x509.SystemRootsError)(nil)), - "UnhandledCriticalExtension": reflect.ValueOf((*x509.UnhandledCriticalExtension)(nil)), - "UnknownAuthorityError": reflect.ValueOf((*x509.UnknownAuthorityError)(nil)), - "VerifyOptions": reflect.ValueOf((*x509.VerifyOptions)(nil)), - } -} diff --git a/stdlib/go1_16_crypto_x509_pkix.go b/stdlib/go1_16_crypto_x509_pkix.go deleted file mode 100644 index c236e3800..000000000 --- a/stdlib/go1_16_crypto_x509_pkix.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "crypto/x509/pkix" - "reflect" -) - -func init() { - Symbols["crypto/x509/pkix/pkix"] = map[string]reflect.Value{ - // type definitions - "AlgorithmIdentifier": reflect.ValueOf((*pkix.AlgorithmIdentifier)(nil)), - "AttributeTypeAndValue": reflect.ValueOf((*pkix.AttributeTypeAndValue)(nil)), - "AttributeTypeAndValueSET": reflect.ValueOf((*pkix.AttributeTypeAndValueSET)(nil)), - "CertificateList": reflect.ValueOf((*pkix.CertificateList)(nil)), - "Extension": reflect.ValueOf((*pkix.Extension)(nil)), - "Name": reflect.ValueOf((*pkix.Name)(nil)), - "RDNSequence": reflect.ValueOf((*pkix.RDNSequence)(nil)), - "RelativeDistinguishedNameSET": reflect.ValueOf((*pkix.RelativeDistinguishedNameSET)(nil)), - "RevokedCertificate": reflect.ValueOf((*pkix.RevokedCertificate)(nil)), - "TBSCertificateList": reflect.ValueOf((*pkix.TBSCertificateList)(nil)), - } -} diff --git a/stdlib/go1_16_database_sql.go b/stdlib/go1_16_database_sql.go deleted file mode 100644 index 1db8db1a5..000000000 --- a/stdlib/go1_16_database_sql.go +++ /dev/null @@ -1,83 +0,0 @@ -// Code generated by 'yaegi extract database/sql'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "database/sql" - "reflect" -) - -func init() { - Symbols["database/sql/sql"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Drivers": reflect.ValueOf(sql.Drivers), - "ErrConnDone": reflect.ValueOf(&sql.ErrConnDone).Elem(), - "ErrNoRows": reflect.ValueOf(&sql.ErrNoRows).Elem(), - "ErrTxDone": reflect.ValueOf(&sql.ErrTxDone).Elem(), - "LevelDefault": reflect.ValueOf(sql.LevelDefault), - "LevelLinearizable": reflect.ValueOf(sql.LevelLinearizable), - "LevelReadCommitted": reflect.ValueOf(sql.LevelReadCommitted), - "LevelReadUncommitted": reflect.ValueOf(sql.LevelReadUncommitted), - "LevelRepeatableRead": reflect.ValueOf(sql.LevelRepeatableRead), - "LevelSerializable": reflect.ValueOf(sql.LevelSerializable), - "LevelSnapshot": reflect.ValueOf(sql.LevelSnapshot), - "LevelWriteCommitted": reflect.ValueOf(sql.LevelWriteCommitted), - "Named": reflect.ValueOf(sql.Named), - "Open": reflect.ValueOf(sql.Open), - "OpenDB": reflect.ValueOf(sql.OpenDB), - "Register": reflect.ValueOf(sql.Register), - - // type definitions - "ColumnType": reflect.ValueOf((*sql.ColumnType)(nil)), - "Conn": reflect.ValueOf((*sql.Conn)(nil)), - "DB": reflect.ValueOf((*sql.DB)(nil)), - "DBStats": reflect.ValueOf((*sql.DBStats)(nil)), - "IsolationLevel": reflect.ValueOf((*sql.IsolationLevel)(nil)), - "NamedArg": reflect.ValueOf((*sql.NamedArg)(nil)), - "NullBool": reflect.ValueOf((*sql.NullBool)(nil)), - "NullFloat64": reflect.ValueOf((*sql.NullFloat64)(nil)), - "NullInt32": reflect.ValueOf((*sql.NullInt32)(nil)), - "NullInt64": reflect.ValueOf((*sql.NullInt64)(nil)), - "NullString": reflect.ValueOf((*sql.NullString)(nil)), - "NullTime": reflect.ValueOf((*sql.NullTime)(nil)), - "Out": reflect.ValueOf((*sql.Out)(nil)), - "RawBytes": reflect.ValueOf((*sql.RawBytes)(nil)), - "Result": reflect.ValueOf((*sql.Result)(nil)), - "Row": reflect.ValueOf((*sql.Row)(nil)), - "Rows": reflect.ValueOf((*sql.Rows)(nil)), - "Scanner": reflect.ValueOf((*sql.Scanner)(nil)), - "Stmt": reflect.ValueOf((*sql.Stmt)(nil)), - "Tx": reflect.ValueOf((*sql.Tx)(nil)), - "TxOptions": reflect.ValueOf((*sql.TxOptions)(nil)), - - // interface wrapper definitions - "_Result": reflect.ValueOf((*_database_sql_Result)(nil)), - "_Scanner": reflect.ValueOf((*_database_sql_Scanner)(nil)), - } -} - -// _database_sql_Result is an interface wrapper for Result type -type _database_sql_Result struct { - IValue interface{} - WLastInsertId func() (int64, error) - WRowsAffected func() (int64, error) -} - -func (W _database_sql_Result) LastInsertId() (int64, error) { - return W.WLastInsertId() -} -func (W _database_sql_Result) RowsAffected() (int64, error) { - return W.WRowsAffected() -} - -// _database_sql_Scanner is an interface wrapper for Scanner type -type _database_sql_Scanner struct { - IValue interface{} - WScan func(src interface{}) error -} - -func (W _database_sql_Scanner) Scan(src interface{}) error { - return W.WScan(src) -} diff --git a/stdlib/go1_16_database_sql_driver.go b/stdlib/go1_16_database_sql_driver.go deleted file mode 100644 index 37ad0c4b7..000000000 --- a/stdlib/go1_16_database_sql_driver.go +++ /dev/null @@ -1,508 +0,0 @@ -// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "context" - "database/sql/driver" - "reflect" -) - -func init() { - Symbols["database/sql/driver/driver"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Bool": reflect.ValueOf(&driver.Bool).Elem(), - "DefaultParameterConverter": reflect.ValueOf(&driver.DefaultParameterConverter).Elem(), - "ErrBadConn": reflect.ValueOf(&driver.ErrBadConn).Elem(), - "ErrRemoveArgument": reflect.ValueOf(&driver.ErrRemoveArgument).Elem(), - "ErrSkip": reflect.ValueOf(&driver.ErrSkip).Elem(), - "Int32": reflect.ValueOf(&driver.Int32).Elem(), - "IsScanValue": reflect.ValueOf(driver.IsScanValue), - "IsValue": reflect.ValueOf(driver.IsValue), - "ResultNoRows": reflect.ValueOf(&driver.ResultNoRows).Elem(), - "String": reflect.ValueOf(&driver.String).Elem(), - - // type definitions - "ColumnConverter": reflect.ValueOf((*driver.ColumnConverter)(nil)), - "Conn": reflect.ValueOf((*driver.Conn)(nil)), - "ConnBeginTx": reflect.ValueOf((*driver.ConnBeginTx)(nil)), - "ConnPrepareContext": reflect.ValueOf((*driver.ConnPrepareContext)(nil)), - "Connector": reflect.ValueOf((*driver.Connector)(nil)), - "Driver": reflect.ValueOf((*driver.Driver)(nil)), - "DriverContext": reflect.ValueOf((*driver.DriverContext)(nil)), - "Execer": reflect.ValueOf((*driver.Execer)(nil)), - "ExecerContext": reflect.ValueOf((*driver.ExecerContext)(nil)), - "IsolationLevel": reflect.ValueOf((*driver.IsolationLevel)(nil)), - "NamedValue": reflect.ValueOf((*driver.NamedValue)(nil)), - "NamedValueChecker": reflect.ValueOf((*driver.NamedValueChecker)(nil)), - "NotNull": reflect.ValueOf((*driver.NotNull)(nil)), - "Null": reflect.ValueOf((*driver.Null)(nil)), - "Pinger": reflect.ValueOf((*driver.Pinger)(nil)), - "Queryer": reflect.ValueOf((*driver.Queryer)(nil)), - "QueryerContext": reflect.ValueOf((*driver.QueryerContext)(nil)), - "Result": reflect.ValueOf((*driver.Result)(nil)), - "Rows": reflect.ValueOf((*driver.Rows)(nil)), - "RowsAffected": reflect.ValueOf((*driver.RowsAffected)(nil)), - "RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*driver.RowsColumnTypeDatabaseTypeName)(nil)), - "RowsColumnTypeLength": reflect.ValueOf((*driver.RowsColumnTypeLength)(nil)), - "RowsColumnTypeNullable": reflect.ValueOf((*driver.RowsColumnTypeNullable)(nil)), - "RowsColumnTypePrecisionScale": reflect.ValueOf((*driver.RowsColumnTypePrecisionScale)(nil)), - "RowsColumnTypeScanType": reflect.ValueOf((*driver.RowsColumnTypeScanType)(nil)), - "RowsNextResultSet": reflect.ValueOf((*driver.RowsNextResultSet)(nil)), - "SessionResetter": reflect.ValueOf((*driver.SessionResetter)(nil)), - "Stmt": reflect.ValueOf((*driver.Stmt)(nil)), - "StmtExecContext": reflect.ValueOf((*driver.StmtExecContext)(nil)), - "StmtQueryContext": reflect.ValueOf((*driver.StmtQueryContext)(nil)), - "Tx": reflect.ValueOf((*driver.Tx)(nil)), - "TxOptions": reflect.ValueOf((*driver.TxOptions)(nil)), - "Validator": reflect.ValueOf((*driver.Validator)(nil)), - "Value": reflect.ValueOf((*driver.Value)(nil)), - "ValueConverter": reflect.ValueOf((*driver.ValueConverter)(nil)), - "Valuer": reflect.ValueOf((*driver.Valuer)(nil)), - - // interface wrapper definitions - "_ColumnConverter": reflect.ValueOf((*_database_sql_driver_ColumnConverter)(nil)), - "_Conn": reflect.ValueOf((*_database_sql_driver_Conn)(nil)), - "_ConnBeginTx": reflect.ValueOf((*_database_sql_driver_ConnBeginTx)(nil)), - "_ConnPrepareContext": reflect.ValueOf((*_database_sql_driver_ConnPrepareContext)(nil)), - "_Connector": reflect.ValueOf((*_database_sql_driver_Connector)(nil)), - "_Driver": reflect.ValueOf((*_database_sql_driver_Driver)(nil)), - "_DriverContext": reflect.ValueOf((*_database_sql_driver_DriverContext)(nil)), - "_Execer": reflect.ValueOf((*_database_sql_driver_Execer)(nil)), - "_ExecerContext": reflect.ValueOf((*_database_sql_driver_ExecerContext)(nil)), - "_NamedValueChecker": reflect.ValueOf((*_database_sql_driver_NamedValueChecker)(nil)), - "_Pinger": reflect.ValueOf((*_database_sql_driver_Pinger)(nil)), - "_Queryer": reflect.ValueOf((*_database_sql_driver_Queryer)(nil)), - "_QueryerContext": reflect.ValueOf((*_database_sql_driver_QueryerContext)(nil)), - "_Result": reflect.ValueOf((*_database_sql_driver_Result)(nil)), - "_Rows": reflect.ValueOf((*_database_sql_driver_Rows)(nil)), - "_RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeDatabaseTypeName)(nil)), - "_RowsColumnTypeLength": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeLength)(nil)), - "_RowsColumnTypeNullable": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeNullable)(nil)), - "_RowsColumnTypePrecisionScale": reflect.ValueOf((*_database_sql_driver_RowsColumnTypePrecisionScale)(nil)), - "_RowsColumnTypeScanType": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeScanType)(nil)), - "_RowsNextResultSet": reflect.ValueOf((*_database_sql_driver_RowsNextResultSet)(nil)), - "_SessionResetter": reflect.ValueOf((*_database_sql_driver_SessionResetter)(nil)), - "_Stmt": reflect.ValueOf((*_database_sql_driver_Stmt)(nil)), - "_StmtExecContext": reflect.ValueOf((*_database_sql_driver_StmtExecContext)(nil)), - "_StmtQueryContext": reflect.ValueOf((*_database_sql_driver_StmtQueryContext)(nil)), - "_Tx": reflect.ValueOf((*_database_sql_driver_Tx)(nil)), - "_Validator": reflect.ValueOf((*_database_sql_driver_Validator)(nil)), - "_Value": reflect.ValueOf((*_database_sql_driver_Value)(nil)), - "_ValueConverter": reflect.ValueOf((*_database_sql_driver_ValueConverter)(nil)), - "_Valuer": reflect.ValueOf((*_database_sql_driver_Valuer)(nil)), - } -} - -// _database_sql_driver_ColumnConverter is an interface wrapper for ColumnConverter type -type _database_sql_driver_ColumnConverter struct { - IValue interface{} - WColumnConverter func(idx int) driver.ValueConverter -} - -func (W _database_sql_driver_ColumnConverter) ColumnConverter(idx int) driver.ValueConverter { - return W.WColumnConverter(idx) -} - -// _database_sql_driver_Conn is an interface wrapper for Conn type -type _database_sql_driver_Conn struct { - IValue interface{} - WBegin func() (driver.Tx, error) - WClose func() error - WPrepare func(query string) (driver.Stmt, error) -} - -func (W _database_sql_driver_Conn) Begin() (driver.Tx, error) { - return W.WBegin() -} -func (W _database_sql_driver_Conn) Close() error { - return W.WClose() -} -func (W _database_sql_driver_Conn) Prepare(query string) (driver.Stmt, error) { - return W.WPrepare(query) -} - -// _database_sql_driver_ConnBeginTx is an interface wrapper for ConnBeginTx type -type _database_sql_driver_ConnBeginTx struct { - IValue interface{} - WBeginTx func(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) -} - -func (W _database_sql_driver_ConnBeginTx) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) { - return W.WBeginTx(ctx, opts) -} - -// _database_sql_driver_ConnPrepareContext is an interface wrapper for ConnPrepareContext type -type _database_sql_driver_ConnPrepareContext struct { - IValue interface{} - WPrepareContext func(ctx context.Context, query string) (driver.Stmt, error) -} - -func (W _database_sql_driver_ConnPrepareContext) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) { - return W.WPrepareContext(ctx, query) -} - -// _database_sql_driver_Connector is an interface wrapper for Connector type -type _database_sql_driver_Connector struct { - IValue interface{} - WConnect func(a0 context.Context) (driver.Conn, error) - WDriver func() driver.Driver -} - -func (W _database_sql_driver_Connector) Connect(a0 context.Context) (driver.Conn, error) { - return W.WConnect(a0) -} -func (W _database_sql_driver_Connector) Driver() driver.Driver { - return W.WDriver() -} - -// _database_sql_driver_Driver is an interface wrapper for Driver type -type _database_sql_driver_Driver struct { - IValue interface{} - WOpen func(name string) (driver.Conn, error) -} - -func (W _database_sql_driver_Driver) Open(name string) (driver.Conn, error) { - return W.WOpen(name) -} - -// _database_sql_driver_DriverContext is an interface wrapper for DriverContext type -type _database_sql_driver_DriverContext struct { - IValue interface{} - WOpenConnector func(name string) (driver.Connector, error) -} - -func (W _database_sql_driver_DriverContext) OpenConnector(name string) (driver.Connector, error) { - return W.WOpenConnector(name) -} - -// _database_sql_driver_Execer is an interface wrapper for Execer type -type _database_sql_driver_Execer struct { - IValue interface{} - WExec func(query string, args []driver.Value) (driver.Result, error) -} - -func (W _database_sql_driver_Execer) Exec(query string, args []driver.Value) (driver.Result, error) { - return W.WExec(query, args) -} - -// _database_sql_driver_ExecerContext is an interface wrapper for ExecerContext type -type _database_sql_driver_ExecerContext struct { - IValue interface{} - WExecContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) -} - -func (W _database_sql_driver_ExecerContext) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) { - return W.WExecContext(ctx, query, args) -} - -// _database_sql_driver_NamedValueChecker is an interface wrapper for NamedValueChecker type -type _database_sql_driver_NamedValueChecker struct { - IValue interface{} - WCheckNamedValue func(a0 *driver.NamedValue) error -} - -func (W _database_sql_driver_NamedValueChecker) CheckNamedValue(a0 *driver.NamedValue) error { - return W.WCheckNamedValue(a0) -} - -// _database_sql_driver_Pinger is an interface wrapper for Pinger type -type _database_sql_driver_Pinger struct { - IValue interface{} - WPing func(ctx context.Context) error -} - -func (W _database_sql_driver_Pinger) Ping(ctx context.Context) error { - return W.WPing(ctx) -} - -// _database_sql_driver_Queryer is an interface wrapper for Queryer type -type _database_sql_driver_Queryer struct { - IValue interface{} - WQuery func(query string, args []driver.Value) (driver.Rows, error) -} - -func (W _database_sql_driver_Queryer) Query(query string, args []driver.Value) (driver.Rows, error) { - return W.WQuery(query, args) -} - -// _database_sql_driver_QueryerContext is an interface wrapper for QueryerContext type -type _database_sql_driver_QueryerContext struct { - IValue interface{} - WQueryContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) -} - -func (W _database_sql_driver_QueryerContext) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) { - return W.WQueryContext(ctx, query, args) -} - -// _database_sql_driver_Result is an interface wrapper for Result type -type _database_sql_driver_Result struct { - IValue interface{} - WLastInsertId func() (int64, error) - WRowsAffected func() (int64, error) -} - -func (W _database_sql_driver_Result) LastInsertId() (int64, error) { - return W.WLastInsertId() -} -func (W _database_sql_driver_Result) RowsAffected() (int64, error) { - return W.WRowsAffected() -} - -// _database_sql_driver_Rows is an interface wrapper for Rows type -type _database_sql_driver_Rows struct { - IValue interface{} - WClose func() error - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_Rows) Close() error { - return W.WClose() -} -func (W _database_sql_driver_Rows) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_Rows) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeDatabaseTypeName is an interface wrapper for RowsColumnTypeDatabaseTypeName type -type _database_sql_driver_RowsColumnTypeDatabaseTypeName struct { - IValue interface{} - WClose func() error - WColumnTypeDatabaseTypeName func(index int) string - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) ColumnTypeDatabaseTypeName(index int) string { - return W.WColumnTypeDatabaseTypeName(index) -} -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeLength is an interface wrapper for RowsColumnTypeLength type -type _database_sql_driver_RowsColumnTypeLength struct { - IValue interface{} - WClose func() error - WColumnTypeLength func(index int) (length int64, ok bool) - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeLength) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeLength) ColumnTypeLength(index int) (length int64, ok bool) { - return W.WColumnTypeLength(index) -} -func (W _database_sql_driver_RowsColumnTypeLength) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeLength) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeNullable is an interface wrapper for RowsColumnTypeNullable type -type _database_sql_driver_RowsColumnTypeNullable struct { - IValue interface{} - WClose func() error - WColumnTypeNullable func(index int) (nullable bool, ok bool) - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeNullable) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeNullable) ColumnTypeNullable(index int) (nullable bool, ok bool) { - return W.WColumnTypeNullable(index) -} -func (W _database_sql_driver_RowsColumnTypeNullable) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeNullable) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypePrecisionScale is an interface wrapper for RowsColumnTypePrecisionScale type -type _database_sql_driver_RowsColumnTypePrecisionScale struct { - IValue interface{} - WClose func() error - WColumnTypePrecisionScale func(index int) (precision int64, scale int64, ok bool) - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypePrecisionScale) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypePrecisionScale) ColumnTypePrecisionScale(index int) (precision int64, scale int64, ok bool) { - return W.WColumnTypePrecisionScale(index) -} -func (W _database_sql_driver_RowsColumnTypePrecisionScale) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypePrecisionScale) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeScanType is an interface wrapper for RowsColumnTypeScanType type -type _database_sql_driver_RowsColumnTypeScanType struct { - IValue interface{} - WClose func() error - WColumnTypeScanType func(index int) reflect.Type - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeScanType) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeScanType) ColumnTypeScanType(index int) reflect.Type { - return W.WColumnTypeScanType(index) -} -func (W _database_sql_driver_RowsColumnTypeScanType) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeScanType) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsNextResultSet is an interface wrapper for RowsNextResultSet type -type _database_sql_driver_RowsNextResultSet struct { - IValue interface{} - WClose func() error - WColumns func() []string - WHasNextResultSet func() bool - WNext func(dest []driver.Value) error - WNextResultSet func() error -} - -func (W _database_sql_driver_RowsNextResultSet) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsNextResultSet) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsNextResultSet) HasNextResultSet() bool { - return W.WHasNextResultSet() -} -func (W _database_sql_driver_RowsNextResultSet) Next(dest []driver.Value) error { - return W.WNext(dest) -} -func (W _database_sql_driver_RowsNextResultSet) NextResultSet() error { - return W.WNextResultSet() -} - -// _database_sql_driver_SessionResetter is an interface wrapper for SessionResetter type -type _database_sql_driver_SessionResetter struct { - IValue interface{} - WResetSession func(ctx context.Context) error -} - -func (W _database_sql_driver_SessionResetter) ResetSession(ctx context.Context) error { - return W.WResetSession(ctx) -} - -// _database_sql_driver_Stmt is an interface wrapper for Stmt type -type _database_sql_driver_Stmt struct { - IValue interface{} - WClose func() error - WExec func(args []driver.Value) (driver.Result, error) - WNumInput func() int - WQuery func(args []driver.Value) (driver.Rows, error) -} - -func (W _database_sql_driver_Stmt) Close() error { - return W.WClose() -} -func (W _database_sql_driver_Stmt) Exec(args []driver.Value) (driver.Result, error) { - return W.WExec(args) -} -func (W _database_sql_driver_Stmt) NumInput() int { - return W.WNumInput() -} -func (W _database_sql_driver_Stmt) Query(args []driver.Value) (driver.Rows, error) { - return W.WQuery(args) -} - -// _database_sql_driver_StmtExecContext is an interface wrapper for StmtExecContext type -type _database_sql_driver_StmtExecContext struct { - IValue interface{} - WExecContext func(ctx context.Context, args []driver.NamedValue) (driver.Result, error) -} - -func (W _database_sql_driver_StmtExecContext) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) { - return W.WExecContext(ctx, args) -} - -// _database_sql_driver_StmtQueryContext is an interface wrapper for StmtQueryContext type -type _database_sql_driver_StmtQueryContext struct { - IValue interface{} - WQueryContext func(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) -} - -func (W _database_sql_driver_StmtQueryContext) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { - return W.WQueryContext(ctx, args) -} - -// _database_sql_driver_Tx is an interface wrapper for Tx type -type _database_sql_driver_Tx struct { - IValue interface{} - WCommit func() error - WRollback func() error -} - -func (W _database_sql_driver_Tx) Commit() error { - return W.WCommit() -} -func (W _database_sql_driver_Tx) Rollback() error { - return W.WRollback() -} - -// _database_sql_driver_Validator is an interface wrapper for Validator type -type _database_sql_driver_Validator struct { - IValue interface{} - WIsValid func() bool -} - -func (W _database_sql_driver_Validator) IsValid() bool { - return W.WIsValid() -} - -// _database_sql_driver_Value is an interface wrapper for Value type -type _database_sql_driver_Value struct { - IValue interface{} -} - -// _database_sql_driver_ValueConverter is an interface wrapper for ValueConverter type -type _database_sql_driver_ValueConverter struct { - IValue interface{} - WConvertValue func(v interface{}) (driver.Value, error) -} - -func (W _database_sql_driver_ValueConverter) ConvertValue(v interface{}) (driver.Value, error) { - return W.WConvertValue(v) -} - -// _database_sql_driver_Valuer is an interface wrapper for Valuer type -type _database_sql_driver_Valuer struct { - IValue interface{} - WValue func() (driver.Value, error) -} - -func (W _database_sql_driver_Valuer) Value() (driver.Value, error) { - return W.WValue() -} diff --git a/stdlib/go1_16_debug_dwarf.go b/stdlib/go1_16_debug_dwarf.go deleted file mode 100644 index 4e1c99a39..000000000 --- a/stdlib/go1_16_debug_dwarf.go +++ /dev/null @@ -1,291 +0,0 @@ -// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "debug/dwarf" - "reflect" -) - -func init() { - Symbols["debug/dwarf/dwarf"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AttrAbstractOrigin": reflect.ValueOf(dwarf.AttrAbstractOrigin), - "AttrAccessibility": reflect.ValueOf(dwarf.AttrAccessibility), - "AttrAddrBase": reflect.ValueOf(dwarf.AttrAddrBase), - "AttrAddrClass": reflect.ValueOf(dwarf.AttrAddrClass), - "AttrAlignment": reflect.ValueOf(dwarf.AttrAlignment), - "AttrAllocated": reflect.ValueOf(dwarf.AttrAllocated), - "AttrArtificial": reflect.ValueOf(dwarf.AttrArtificial), - "AttrAssociated": reflect.ValueOf(dwarf.AttrAssociated), - "AttrBaseTypes": reflect.ValueOf(dwarf.AttrBaseTypes), - "AttrBinaryScale": reflect.ValueOf(dwarf.AttrBinaryScale), - "AttrBitOffset": reflect.ValueOf(dwarf.AttrBitOffset), - "AttrBitSize": reflect.ValueOf(dwarf.AttrBitSize), - "AttrByteSize": reflect.ValueOf(dwarf.AttrByteSize), - "AttrCallAllCalls": reflect.ValueOf(dwarf.AttrCallAllCalls), - "AttrCallAllSourceCalls": reflect.ValueOf(dwarf.AttrCallAllSourceCalls), - "AttrCallAllTailCalls": reflect.ValueOf(dwarf.AttrCallAllTailCalls), - "AttrCallColumn": reflect.ValueOf(dwarf.AttrCallColumn), - "AttrCallDataLocation": reflect.ValueOf(dwarf.AttrCallDataLocation), - "AttrCallDataValue": reflect.ValueOf(dwarf.AttrCallDataValue), - "AttrCallFile": reflect.ValueOf(dwarf.AttrCallFile), - "AttrCallLine": reflect.ValueOf(dwarf.AttrCallLine), - "AttrCallOrigin": reflect.ValueOf(dwarf.AttrCallOrigin), - "AttrCallPC": reflect.ValueOf(dwarf.AttrCallPC), - "AttrCallParameter": reflect.ValueOf(dwarf.AttrCallParameter), - "AttrCallReturnPC": reflect.ValueOf(dwarf.AttrCallReturnPC), - "AttrCallTailCall": reflect.ValueOf(dwarf.AttrCallTailCall), - "AttrCallTarget": reflect.ValueOf(dwarf.AttrCallTarget), - "AttrCallTargetClobbered": reflect.ValueOf(dwarf.AttrCallTargetClobbered), - "AttrCallValue": reflect.ValueOf(dwarf.AttrCallValue), - "AttrCalling": reflect.ValueOf(dwarf.AttrCalling), - "AttrCommonRef": reflect.ValueOf(dwarf.AttrCommonRef), - "AttrCompDir": reflect.ValueOf(dwarf.AttrCompDir), - "AttrConstExpr": reflect.ValueOf(dwarf.AttrConstExpr), - "AttrConstValue": reflect.ValueOf(dwarf.AttrConstValue), - "AttrContainingType": reflect.ValueOf(dwarf.AttrContainingType), - "AttrCount": reflect.ValueOf(dwarf.AttrCount), - "AttrDataBitOffset": reflect.ValueOf(dwarf.AttrDataBitOffset), - "AttrDataLocation": reflect.ValueOf(dwarf.AttrDataLocation), - "AttrDataMemberLoc": reflect.ValueOf(dwarf.AttrDataMemberLoc), - "AttrDecimalScale": reflect.ValueOf(dwarf.AttrDecimalScale), - "AttrDecimalSign": reflect.ValueOf(dwarf.AttrDecimalSign), - "AttrDeclColumn": reflect.ValueOf(dwarf.AttrDeclColumn), - "AttrDeclFile": reflect.ValueOf(dwarf.AttrDeclFile), - "AttrDeclLine": reflect.ValueOf(dwarf.AttrDeclLine), - "AttrDeclaration": reflect.ValueOf(dwarf.AttrDeclaration), - "AttrDefaultValue": reflect.ValueOf(dwarf.AttrDefaultValue), - "AttrDefaulted": reflect.ValueOf(dwarf.AttrDefaulted), - "AttrDeleted": reflect.ValueOf(dwarf.AttrDeleted), - "AttrDescription": reflect.ValueOf(dwarf.AttrDescription), - "AttrDigitCount": reflect.ValueOf(dwarf.AttrDigitCount), - "AttrDiscr": reflect.ValueOf(dwarf.AttrDiscr), - "AttrDiscrList": reflect.ValueOf(dwarf.AttrDiscrList), - "AttrDiscrValue": reflect.ValueOf(dwarf.AttrDiscrValue), - "AttrDwoName": reflect.ValueOf(dwarf.AttrDwoName), - "AttrElemental": reflect.ValueOf(dwarf.AttrElemental), - "AttrEncoding": reflect.ValueOf(dwarf.AttrEncoding), - "AttrEndianity": reflect.ValueOf(dwarf.AttrEndianity), - "AttrEntrypc": reflect.ValueOf(dwarf.AttrEntrypc), - "AttrEnumClass": reflect.ValueOf(dwarf.AttrEnumClass), - "AttrExplicit": reflect.ValueOf(dwarf.AttrExplicit), - "AttrExportSymbols": reflect.ValueOf(dwarf.AttrExportSymbols), - "AttrExtension": reflect.ValueOf(dwarf.AttrExtension), - "AttrExternal": reflect.ValueOf(dwarf.AttrExternal), - "AttrFrameBase": reflect.ValueOf(dwarf.AttrFrameBase), - "AttrFriend": reflect.ValueOf(dwarf.AttrFriend), - "AttrHighpc": reflect.ValueOf(dwarf.AttrHighpc), - "AttrIdentifierCase": reflect.ValueOf(dwarf.AttrIdentifierCase), - "AttrImport": reflect.ValueOf(dwarf.AttrImport), - "AttrInline": reflect.ValueOf(dwarf.AttrInline), - "AttrIsOptional": reflect.ValueOf(dwarf.AttrIsOptional), - "AttrLanguage": reflect.ValueOf(dwarf.AttrLanguage), - "AttrLinkageName": reflect.ValueOf(dwarf.AttrLinkageName), - "AttrLocation": reflect.ValueOf(dwarf.AttrLocation), - "AttrLoclistsBase": reflect.ValueOf(dwarf.AttrLoclistsBase), - "AttrLowerBound": reflect.ValueOf(dwarf.AttrLowerBound), - "AttrLowpc": reflect.ValueOf(dwarf.AttrLowpc), - "AttrMacroInfo": reflect.ValueOf(dwarf.AttrMacroInfo), - "AttrMacros": reflect.ValueOf(dwarf.AttrMacros), - "AttrMainSubprogram": reflect.ValueOf(dwarf.AttrMainSubprogram), - "AttrMutable": reflect.ValueOf(dwarf.AttrMutable), - "AttrName": reflect.ValueOf(dwarf.AttrName), - "AttrNamelistItem": reflect.ValueOf(dwarf.AttrNamelistItem), - "AttrNoreturn": reflect.ValueOf(dwarf.AttrNoreturn), - "AttrObjectPointer": reflect.ValueOf(dwarf.AttrObjectPointer), - "AttrOrdering": reflect.ValueOf(dwarf.AttrOrdering), - "AttrPictureString": reflect.ValueOf(dwarf.AttrPictureString), - "AttrPriority": reflect.ValueOf(dwarf.AttrPriority), - "AttrProducer": reflect.ValueOf(dwarf.AttrProducer), - "AttrPrototyped": reflect.ValueOf(dwarf.AttrPrototyped), - "AttrPure": reflect.ValueOf(dwarf.AttrPure), - "AttrRanges": reflect.ValueOf(dwarf.AttrRanges), - "AttrRank": reflect.ValueOf(dwarf.AttrRank), - "AttrRecursive": reflect.ValueOf(dwarf.AttrRecursive), - "AttrReference": reflect.ValueOf(dwarf.AttrReference), - "AttrReturnAddr": reflect.ValueOf(dwarf.AttrReturnAddr), - "AttrRnglistsBase": reflect.ValueOf(dwarf.AttrRnglistsBase), - "AttrRvalueReference": reflect.ValueOf(dwarf.AttrRvalueReference), - "AttrSegment": reflect.ValueOf(dwarf.AttrSegment), - "AttrSibling": reflect.ValueOf(dwarf.AttrSibling), - "AttrSignature": reflect.ValueOf(dwarf.AttrSignature), - "AttrSmall": reflect.ValueOf(dwarf.AttrSmall), - "AttrSpecification": reflect.ValueOf(dwarf.AttrSpecification), - "AttrStartScope": reflect.ValueOf(dwarf.AttrStartScope), - "AttrStaticLink": reflect.ValueOf(dwarf.AttrStaticLink), - "AttrStmtList": reflect.ValueOf(dwarf.AttrStmtList), - "AttrStrOffsetsBase": reflect.ValueOf(dwarf.AttrStrOffsetsBase), - "AttrStride": reflect.ValueOf(dwarf.AttrStride), - "AttrStrideSize": reflect.ValueOf(dwarf.AttrStrideSize), - "AttrStringLength": reflect.ValueOf(dwarf.AttrStringLength), - "AttrStringLengthBitSize": reflect.ValueOf(dwarf.AttrStringLengthBitSize), - "AttrStringLengthByteSize": reflect.ValueOf(dwarf.AttrStringLengthByteSize), - "AttrThreadsScaled": reflect.ValueOf(dwarf.AttrThreadsScaled), - "AttrTrampoline": reflect.ValueOf(dwarf.AttrTrampoline), - "AttrType": reflect.ValueOf(dwarf.AttrType), - "AttrUpperBound": reflect.ValueOf(dwarf.AttrUpperBound), - "AttrUseLocation": reflect.ValueOf(dwarf.AttrUseLocation), - "AttrUseUTF8": reflect.ValueOf(dwarf.AttrUseUTF8), - "AttrVarParam": reflect.ValueOf(dwarf.AttrVarParam), - "AttrVirtuality": reflect.ValueOf(dwarf.AttrVirtuality), - "AttrVisibility": reflect.ValueOf(dwarf.AttrVisibility), - "AttrVtableElemLoc": reflect.ValueOf(dwarf.AttrVtableElemLoc), - "ClassAddrPtr": reflect.ValueOf(dwarf.ClassAddrPtr), - "ClassAddress": reflect.ValueOf(dwarf.ClassAddress), - "ClassBlock": reflect.ValueOf(dwarf.ClassBlock), - "ClassConstant": reflect.ValueOf(dwarf.ClassConstant), - "ClassExprLoc": reflect.ValueOf(dwarf.ClassExprLoc), - "ClassFlag": reflect.ValueOf(dwarf.ClassFlag), - "ClassLinePtr": reflect.ValueOf(dwarf.ClassLinePtr), - "ClassLocList": reflect.ValueOf(dwarf.ClassLocList), - "ClassLocListPtr": reflect.ValueOf(dwarf.ClassLocListPtr), - "ClassMacPtr": reflect.ValueOf(dwarf.ClassMacPtr), - "ClassRangeListPtr": reflect.ValueOf(dwarf.ClassRangeListPtr), - "ClassReference": reflect.ValueOf(dwarf.ClassReference), - "ClassReferenceAlt": reflect.ValueOf(dwarf.ClassReferenceAlt), - "ClassReferenceSig": reflect.ValueOf(dwarf.ClassReferenceSig), - "ClassRngList": reflect.ValueOf(dwarf.ClassRngList), - "ClassRngListsPtr": reflect.ValueOf(dwarf.ClassRngListsPtr), - "ClassStrOffsetsPtr": reflect.ValueOf(dwarf.ClassStrOffsetsPtr), - "ClassString": reflect.ValueOf(dwarf.ClassString), - "ClassStringAlt": reflect.ValueOf(dwarf.ClassStringAlt), - "ClassUnknown": reflect.ValueOf(dwarf.ClassUnknown), - "ErrUnknownPC": reflect.ValueOf(&dwarf.ErrUnknownPC).Elem(), - "New": reflect.ValueOf(dwarf.New), - "TagAccessDeclaration": reflect.ValueOf(dwarf.TagAccessDeclaration), - "TagArrayType": reflect.ValueOf(dwarf.TagArrayType), - "TagAtomicType": reflect.ValueOf(dwarf.TagAtomicType), - "TagBaseType": reflect.ValueOf(dwarf.TagBaseType), - "TagCallSite": reflect.ValueOf(dwarf.TagCallSite), - "TagCallSiteParameter": reflect.ValueOf(dwarf.TagCallSiteParameter), - "TagCatchDwarfBlock": reflect.ValueOf(dwarf.TagCatchDwarfBlock), - "TagClassType": reflect.ValueOf(dwarf.TagClassType), - "TagCoarrayType": reflect.ValueOf(dwarf.TagCoarrayType), - "TagCommonDwarfBlock": reflect.ValueOf(dwarf.TagCommonDwarfBlock), - "TagCommonInclusion": reflect.ValueOf(dwarf.TagCommonInclusion), - "TagCompileUnit": reflect.ValueOf(dwarf.TagCompileUnit), - "TagCondition": reflect.ValueOf(dwarf.TagCondition), - "TagConstType": reflect.ValueOf(dwarf.TagConstType), - "TagConstant": reflect.ValueOf(dwarf.TagConstant), - "TagDwarfProcedure": reflect.ValueOf(dwarf.TagDwarfProcedure), - "TagDynamicType": reflect.ValueOf(dwarf.TagDynamicType), - "TagEntryPoint": reflect.ValueOf(dwarf.TagEntryPoint), - "TagEnumerationType": reflect.ValueOf(dwarf.TagEnumerationType), - "TagEnumerator": reflect.ValueOf(dwarf.TagEnumerator), - "TagFileType": reflect.ValueOf(dwarf.TagFileType), - "TagFormalParameter": reflect.ValueOf(dwarf.TagFormalParameter), - "TagFriend": reflect.ValueOf(dwarf.TagFriend), - "TagGenericSubrange": reflect.ValueOf(dwarf.TagGenericSubrange), - "TagImmutableType": reflect.ValueOf(dwarf.TagImmutableType), - "TagImportedDeclaration": reflect.ValueOf(dwarf.TagImportedDeclaration), - "TagImportedModule": reflect.ValueOf(dwarf.TagImportedModule), - "TagImportedUnit": reflect.ValueOf(dwarf.TagImportedUnit), - "TagInheritance": reflect.ValueOf(dwarf.TagInheritance), - "TagInlinedSubroutine": reflect.ValueOf(dwarf.TagInlinedSubroutine), - "TagInterfaceType": reflect.ValueOf(dwarf.TagInterfaceType), - "TagLabel": reflect.ValueOf(dwarf.TagLabel), - "TagLexDwarfBlock": reflect.ValueOf(dwarf.TagLexDwarfBlock), - "TagMember": reflect.ValueOf(dwarf.TagMember), - "TagModule": reflect.ValueOf(dwarf.TagModule), - "TagMutableType": reflect.ValueOf(dwarf.TagMutableType), - "TagNamelist": reflect.ValueOf(dwarf.TagNamelist), - "TagNamelistItem": reflect.ValueOf(dwarf.TagNamelistItem), - "TagNamespace": reflect.ValueOf(dwarf.TagNamespace), - "TagPackedType": reflect.ValueOf(dwarf.TagPackedType), - "TagPartialUnit": reflect.ValueOf(dwarf.TagPartialUnit), - "TagPointerType": reflect.ValueOf(dwarf.TagPointerType), - "TagPtrToMemberType": reflect.ValueOf(dwarf.TagPtrToMemberType), - "TagReferenceType": reflect.ValueOf(dwarf.TagReferenceType), - "TagRestrictType": reflect.ValueOf(dwarf.TagRestrictType), - "TagRvalueReferenceType": reflect.ValueOf(dwarf.TagRvalueReferenceType), - "TagSetType": reflect.ValueOf(dwarf.TagSetType), - "TagSharedType": reflect.ValueOf(dwarf.TagSharedType), - "TagSkeletonUnit": reflect.ValueOf(dwarf.TagSkeletonUnit), - "TagStringType": reflect.ValueOf(dwarf.TagStringType), - "TagStructType": reflect.ValueOf(dwarf.TagStructType), - "TagSubprogram": reflect.ValueOf(dwarf.TagSubprogram), - "TagSubrangeType": reflect.ValueOf(dwarf.TagSubrangeType), - "TagSubroutineType": reflect.ValueOf(dwarf.TagSubroutineType), - "TagTemplateAlias": reflect.ValueOf(dwarf.TagTemplateAlias), - "TagTemplateTypeParameter": reflect.ValueOf(dwarf.TagTemplateTypeParameter), - "TagTemplateValueParameter": reflect.ValueOf(dwarf.TagTemplateValueParameter), - "TagThrownType": reflect.ValueOf(dwarf.TagThrownType), - "TagTryDwarfBlock": reflect.ValueOf(dwarf.TagTryDwarfBlock), - "TagTypeUnit": reflect.ValueOf(dwarf.TagTypeUnit), - "TagTypedef": reflect.ValueOf(dwarf.TagTypedef), - "TagUnionType": reflect.ValueOf(dwarf.TagUnionType), - "TagUnspecifiedParameters": reflect.ValueOf(dwarf.TagUnspecifiedParameters), - "TagUnspecifiedType": reflect.ValueOf(dwarf.TagUnspecifiedType), - "TagVariable": reflect.ValueOf(dwarf.TagVariable), - "TagVariant": reflect.ValueOf(dwarf.TagVariant), - "TagVariantPart": reflect.ValueOf(dwarf.TagVariantPart), - "TagVolatileType": reflect.ValueOf(dwarf.TagVolatileType), - "TagWithStmt": reflect.ValueOf(dwarf.TagWithStmt), - - // type definitions - "AddrType": reflect.ValueOf((*dwarf.AddrType)(nil)), - "ArrayType": reflect.ValueOf((*dwarf.ArrayType)(nil)), - "Attr": reflect.ValueOf((*dwarf.Attr)(nil)), - "BasicType": reflect.ValueOf((*dwarf.BasicType)(nil)), - "BoolType": reflect.ValueOf((*dwarf.BoolType)(nil)), - "CharType": reflect.ValueOf((*dwarf.CharType)(nil)), - "Class": reflect.ValueOf((*dwarf.Class)(nil)), - "CommonType": reflect.ValueOf((*dwarf.CommonType)(nil)), - "ComplexType": reflect.ValueOf((*dwarf.ComplexType)(nil)), - "Data": reflect.ValueOf((*dwarf.Data)(nil)), - "DecodeError": reflect.ValueOf((*dwarf.DecodeError)(nil)), - "DotDotDotType": reflect.ValueOf((*dwarf.DotDotDotType)(nil)), - "Entry": reflect.ValueOf((*dwarf.Entry)(nil)), - "EnumType": reflect.ValueOf((*dwarf.EnumType)(nil)), - "EnumValue": reflect.ValueOf((*dwarf.EnumValue)(nil)), - "Field": reflect.ValueOf((*dwarf.Field)(nil)), - "FloatType": reflect.ValueOf((*dwarf.FloatType)(nil)), - "FuncType": reflect.ValueOf((*dwarf.FuncType)(nil)), - "IntType": reflect.ValueOf((*dwarf.IntType)(nil)), - "LineEntry": reflect.ValueOf((*dwarf.LineEntry)(nil)), - "LineFile": reflect.ValueOf((*dwarf.LineFile)(nil)), - "LineReader": reflect.ValueOf((*dwarf.LineReader)(nil)), - "LineReaderPos": reflect.ValueOf((*dwarf.LineReaderPos)(nil)), - "Offset": reflect.ValueOf((*dwarf.Offset)(nil)), - "PtrType": reflect.ValueOf((*dwarf.PtrType)(nil)), - "QualType": reflect.ValueOf((*dwarf.QualType)(nil)), - "Reader": reflect.ValueOf((*dwarf.Reader)(nil)), - "StructField": reflect.ValueOf((*dwarf.StructField)(nil)), - "StructType": reflect.ValueOf((*dwarf.StructType)(nil)), - "Tag": reflect.ValueOf((*dwarf.Tag)(nil)), - "Type": reflect.ValueOf((*dwarf.Type)(nil)), - "TypedefType": reflect.ValueOf((*dwarf.TypedefType)(nil)), - "UcharType": reflect.ValueOf((*dwarf.UcharType)(nil)), - "UintType": reflect.ValueOf((*dwarf.UintType)(nil)), - "UnspecifiedType": reflect.ValueOf((*dwarf.UnspecifiedType)(nil)), - "UnsupportedType": reflect.ValueOf((*dwarf.UnsupportedType)(nil)), - "VoidType": reflect.ValueOf((*dwarf.VoidType)(nil)), - - // interface wrapper definitions - "_Type": reflect.ValueOf((*_debug_dwarf_Type)(nil)), - } -} - -// _debug_dwarf_Type is an interface wrapper for Type type -type _debug_dwarf_Type struct { - IValue interface{} - WCommon func() *dwarf.CommonType - WSize func() int64 - WString func() string -} - -func (W _debug_dwarf_Type) Common() *dwarf.CommonType { - return W.WCommon() -} -func (W _debug_dwarf_Type) Size() int64 { - return W.WSize() -} -func (W _debug_dwarf_Type) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_debug_elf.go b/stdlib/go1_16_debug_elf.go deleted file mode 100644 index a2aeaf688..000000000 --- a/stdlib/go1_16_debug_elf.go +++ /dev/null @@ -1,1363 +0,0 @@ -// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "debug/elf" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["debug/elf/elf"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ARM_MAGIC_TRAMP_NUMBER": reflect.ValueOf(constant.MakeFromLiteral("1543503875", token.INT, 0)), - "COMPRESS_HIOS": reflect.ValueOf(elf.COMPRESS_HIOS), - "COMPRESS_HIPROC": reflect.ValueOf(elf.COMPRESS_HIPROC), - "COMPRESS_LOOS": reflect.ValueOf(elf.COMPRESS_LOOS), - "COMPRESS_LOPROC": reflect.ValueOf(elf.COMPRESS_LOPROC), - "COMPRESS_ZLIB": reflect.ValueOf(elf.COMPRESS_ZLIB), - "DF_BIND_NOW": reflect.ValueOf(elf.DF_BIND_NOW), - "DF_ORIGIN": reflect.ValueOf(elf.DF_ORIGIN), - "DF_STATIC_TLS": reflect.ValueOf(elf.DF_STATIC_TLS), - "DF_SYMBOLIC": reflect.ValueOf(elf.DF_SYMBOLIC), - "DF_TEXTREL": reflect.ValueOf(elf.DF_TEXTREL), - "DT_ADDRRNGHI": reflect.ValueOf(elf.DT_ADDRRNGHI), - "DT_ADDRRNGLO": reflect.ValueOf(elf.DT_ADDRRNGLO), - "DT_AUDIT": reflect.ValueOf(elf.DT_AUDIT), - "DT_AUXILIARY": reflect.ValueOf(elf.DT_AUXILIARY), - "DT_BIND_NOW": reflect.ValueOf(elf.DT_BIND_NOW), - "DT_CHECKSUM": reflect.ValueOf(elf.DT_CHECKSUM), - "DT_CONFIG": reflect.ValueOf(elf.DT_CONFIG), - "DT_DEBUG": reflect.ValueOf(elf.DT_DEBUG), - "DT_DEPAUDIT": reflect.ValueOf(elf.DT_DEPAUDIT), - "DT_ENCODING": reflect.ValueOf(elf.DT_ENCODING), - "DT_FEATURE": reflect.ValueOf(elf.DT_FEATURE), - "DT_FILTER": reflect.ValueOf(elf.DT_FILTER), - "DT_FINI": reflect.ValueOf(elf.DT_FINI), - "DT_FINI_ARRAY": reflect.ValueOf(elf.DT_FINI_ARRAY), - "DT_FINI_ARRAYSZ": reflect.ValueOf(elf.DT_FINI_ARRAYSZ), - "DT_FLAGS": reflect.ValueOf(elf.DT_FLAGS), - "DT_FLAGS_1": reflect.ValueOf(elf.DT_FLAGS_1), - "DT_GNU_CONFLICT": reflect.ValueOf(elf.DT_GNU_CONFLICT), - "DT_GNU_CONFLICTSZ": reflect.ValueOf(elf.DT_GNU_CONFLICTSZ), - "DT_GNU_HASH": reflect.ValueOf(elf.DT_GNU_HASH), - "DT_GNU_LIBLIST": reflect.ValueOf(elf.DT_GNU_LIBLIST), - "DT_GNU_LIBLISTSZ": reflect.ValueOf(elf.DT_GNU_LIBLISTSZ), - "DT_GNU_PRELINKED": reflect.ValueOf(elf.DT_GNU_PRELINKED), - "DT_HASH": reflect.ValueOf(elf.DT_HASH), - "DT_HIOS": reflect.ValueOf(elf.DT_HIOS), - "DT_HIPROC": reflect.ValueOf(elf.DT_HIPROC), - "DT_INIT": reflect.ValueOf(elf.DT_INIT), - "DT_INIT_ARRAY": reflect.ValueOf(elf.DT_INIT_ARRAY), - "DT_INIT_ARRAYSZ": reflect.ValueOf(elf.DT_INIT_ARRAYSZ), - "DT_JMPREL": reflect.ValueOf(elf.DT_JMPREL), - "DT_LOOS": reflect.ValueOf(elf.DT_LOOS), - "DT_LOPROC": reflect.ValueOf(elf.DT_LOPROC), - "DT_MIPS_AUX_DYNAMIC": reflect.ValueOf(elf.DT_MIPS_AUX_DYNAMIC), - "DT_MIPS_BASE_ADDRESS": reflect.ValueOf(elf.DT_MIPS_BASE_ADDRESS), - "DT_MIPS_COMPACT_SIZE": reflect.ValueOf(elf.DT_MIPS_COMPACT_SIZE), - "DT_MIPS_CONFLICT": reflect.ValueOf(elf.DT_MIPS_CONFLICT), - "DT_MIPS_CONFLICTNO": reflect.ValueOf(elf.DT_MIPS_CONFLICTNO), - "DT_MIPS_CXX_FLAGS": reflect.ValueOf(elf.DT_MIPS_CXX_FLAGS), - "DT_MIPS_DELTA_CLASS": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS), - "DT_MIPS_DELTA_CLASSSYM": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM), - "DT_MIPS_DELTA_CLASSSYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM_NO), - "DT_MIPS_DELTA_CLASS_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS_NO), - "DT_MIPS_DELTA_INSTANCE": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE), - "DT_MIPS_DELTA_INSTANCE_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE_NO), - "DT_MIPS_DELTA_RELOC": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC), - "DT_MIPS_DELTA_RELOC_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC_NO), - "DT_MIPS_DELTA_SYM": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM), - "DT_MIPS_DELTA_SYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM_NO), - "DT_MIPS_DYNSTR_ALIGN": reflect.ValueOf(elf.DT_MIPS_DYNSTR_ALIGN), - "DT_MIPS_FLAGS": reflect.ValueOf(elf.DT_MIPS_FLAGS), - "DT_MIPS_GOTSYM": reflect.ValueOf(elf.DT_MIPS_GOTSYM), - "DT_MIPS_GP_VALUE": reflect.ValueOf(elf.DT_MIPS_GP_VALUE), - "DT_MIPS_HIDDEN_GOTIDX": reflect.ValueOf(elf.DT_MIPS_HIDDEN_GOTIDX), - "DT_MIPS_HIPAGENO": reflect.ValueOf(elf.DT_MIPS_HIPAGENO), - "DT_MIPS_ICHECKSUM": reflect.ValueOf(elf.DT_MIPS_ICHECKSUM), - "DT_MIPS_INTERFACE": reflect.ValueOf(elf.DT_MIPS_INTERFACE), - "DT_MIPS_INTERFACE_SIZE": reflect.ValueOf(elf.DT_MIPS_INTERFACE_SIZE), - "DT_MIPS_IVERSION": reflect.ValueOf(elf.DT_MIPS_IVERSION), - "DT_MIPS_LIBLIST": reflect.ValueOf(elf.DT_MIPS_LIBLIST), - "DT_MIPS_LIBLISTNO": reflect.ValueOf(elf.DT_MIPS_LIBLISTNO), - "DT_MIPS_LOCALPAGE_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCALPAGE_GOTIDX), - "DT_MIPS_LOCAL_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTIDX), - "DT_MIPS_LOCAL_GOTNO": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTNO), - "DT_MIPS_MSYM": reflect.ValueOf(elf.DT_MIPS_MSYM), - "DT_MIPS_OPTIONS": reflect.ValueOf(elf.DT_MIPS_OPTIONS), - "DT_MIPS_PERF_SUFFIX": reflect.ValueOf(elf.DT_MIPS_PERF_SUFFIX), - "DT_MIPS_PIXIE_INIT": reflect.ValueOf(elf.DT_MIPS_PIXIE_INIT), - "DT_MIPS_PLTGOT": reflect.ValueOf(elf.DT_MIPS_PLTGOT), - "DT_MIPS_PROTECTED_GOTIDX": reflect.ValueOf(elf.DT_MIPS_PROTECTED_GOTIDX), - "DT_MIPS_RLD_MAP": reflect.ValueOf(elf.DT_MIPS_RLD_MAP), - "DT_MIPS_RLD_MAP_REL": reflect.ValueOf(elf.DT_MIPS_RLD_MAP_REL), - "DT_MIPS_RLD_TEXT_RESOLVE_ADDR": reflect.ValueOf(elf.DT_MIPS_RLD_TEXT_RESOLVE_ADDR), - "DT_MIPS_RLD_VERSION": reflect.ValueOf(elf.DT_MIPS_RLD_VERSION), - "DT_MIPS_RWPLT": reflect.ValueOf(elf.DT_MIPS_RWPLT), - "DT_MIPS_SYMBOL_LIB": reflect.ValueOf(elf.DT_MIPS_SYMBOL_LIB), - "DT_MIPS_SYMTABNO": reflect.ValueOf(elf.DT_MIPS_SYMTABNO), - "DT_MIPS_TIME_STAMP": reflect.ValueOf(elf.DT_MIPS_TIME_STAMP), - "DT_MIPS_UNREFEXTNO": reflect.ValueOf(elf.DT_MIPS_UNREFEXTNO), - "DT_MOVEENT": reflect.ValueOf(elf.DT_MOVEENT), - "DT_MOVESZ": reflect.ValueOf(elf.DT_MOVESZ), - "DT_MOVETAB": reflect.ValueOf(elf.DT_MOVETAB), - "DT_NEEDED": reflect.ValueOf(elf.DT_NEEDED), - "DT_NULL": reflect.ValueOf(elf.DT_NULL), - "DT_PLTGOT": reflect.ValueOf(elf.DT_PLTGOT), - "DT_PLTPAD": reflect.ValueOf(elf.DT_PLTPAD), - "DT_PLTPADSZ": reflect.ValueOf(elf.DT_PLTPADSZ), - "DT_PLTREL": reflect.ValueOf(elf.DT_PLTREL), - "DT_PLTRELSZ": reflect.ValueOf(elf.DT_PLTRELSZ), - "DT_POSFLAG_1": reflect.ValueOf(elf.DT_POSFLAG_1), - "DT_PPC64_GLINK": reflect.ValueOf(elf.DT_PPC64_GLINK), - "DT_PPC64_OPD": reflect.ValueOf(elf.DT_PPC64_OPD), - "DT_PPC64_OPDSZ": reflect.ValueOf(elf.DT_PPC64_OPDSZ), - "DT_PPC64_OPT": reflect.ValueOf(elf.DT_PPC64_OPT), - "DT_PPC_GOT": reflect.ValueOf(elf.DT_PPC_GOT), - "DT_PPC_OPT": reflect.ValueOf(elf.DT_PPC_OPT), - "DT_PREINIT_ARRAY": reflect.ValueOf(elf.DT_PREINIT_ARRAY), - "DT_PREINIT_ARRAYSZ": reflect.ValueOf(elf.DT_PREINIT_ARRAYSZ), - "DT_REL": reflect.ValueOf(elf.DT_REL), - "DT_RELA": reflect.ValueOf(elf.DT_RELA), - "DT_RELACOUNT": reflect.ValueOf(elf.DT_RELACOUNT), - "DT_RELAENT": reflect.ValueOf(elf.DT_RELAENT), - "DT_RELASZ": reflect.ValueOf(elf.DT_RELASZ), - "DT_RELCOUNT": reflect.ValueOf(elf.DT_RELCOUNT), - "DT_RELENT": reflect.ValueOf(elf.DT_RELENT), - "DT_RELSZ": reflect.ValueOf(elf.DT_RELSZ), - "DT_RPATH": reflect.ValueOf(elf.DT_RPATH), - "DT_RUNPATH": reflect.ValueOf(elf.DT_RUNPATH), - "DT_SONAME": reflect.ValueOf(elf.DT_SONAME), - "DT_SPARC_REGISTER": reflect.ValueOf(elf.DT_SPARC_REGISTER), - "DT_STRSZ": reflect.ValueOf(elf.DT_STRSZ), - "DT_STRTAB": reflect.ValueOf(elf.DT_STRTAB), - "DT_SYMBOLIC": reflect.ValueOf(elf.DT_SYMBOLIC), - "DT_SYMENT": reflect.ValueOf(elf.DT_SYMENT), - "DT_SYMINENT": reflect.ValueOf(elf.DT_SYMINENT), - "DT_SYMINFO": reflect.ValueOf(elf.DT_SYMINFO), - "DT_SYMINSZ": reflect.ValueOf(elf.DT_SYMINSZ), - "DT_SYMTAB": reflect.ValueOf(elf.DT_SYMTAB), - "DT_SYMTAB_SHNDX": reflect.ValueOf(elf.DT_SYMTAB_SHNDX), - "DT_TEXTREL": reflect.ValueOf(elf.DT_TEXTREL), - "DT_TLSDESC_GOT": reflect.ValueOf(elf.DT_TLSDESC_GOT), - "DT_TLSDESC_PLT": reflect.ValueOf(elf.DT_TLSDESC_PLT), - "DT_USED": reflect.ValueOf(elf.DT_USED), - "DT_VALRNGHI": reflect.ValueOf(elf.DT_VALRNGHI), - "DT_VALRNGLO": reflect.ValueOf(elf.DT_VALRNGLO), - "DT_VERDEF": reflect.ValueOf(elf.DT_VERDEF), - "DT_VERDEFNUM": reflect.ValueOf(elf.DT_VERDEFNUM), - "DT_VERNEED": reflect.ValueOf(elf.DT_VERNEED), - "DT_VERNEEDNUM": reflect.ValueOf(elf.DT_VERNEEDNUM), - "DT_VERSYM": reflect.ValueOf(elf.DT_VERSYM), - "EI_ABIVERSION": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EI_CLASS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EI_DATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EI_NIDENT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EI_OSABI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EI_PAD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "EI_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ELFCLASS32": reflect.ValueOf(elf.ELFCLASS32), - "ELFCLASS64": reflect.ValueOf(elf.ELFCLASS64), - "ELFCLASSNONE": reflect.ValueOf(elf.ELFCLASSNONE), - "ELFDATA2LSB": reflect.ValueOf(elf.ELFDATA2LSB), - "ELFDATA2MSB": reflect.ValueOf(elf.ELFDATA2MSB), - "ELFDATANONE": reflect.ValueOf(elf.ELFDATANONE), - "ELFMAG": reflect.ValueOf(constant.MakeFromLiteral("\"\\u007fELF\"", token.STRING, 0)), - "ELFOSABI_86OPEN": reflect.ValueOf(elf.ELFOSABI_86OPEN), - "ELFOSABI_AIX": reflect.ValueOf(elf.ELFOSABI_AIX), - "ELFOSABI_ARM": reflect.ValueOf(elf.ELFOSABI_ARM), - "ELFOSABI_AROS": reflect.ValueOf(elf.ELFOSABI_AROS), - "ELFOSABI_CLOUDABI": reflect.ValueOf(elf.ELFOSABI_CLOUDABI), - "ELFOSABI_FENIXOS": reflect.ValueOf(elf.ELFOSABI_FENIXOS), - "ELFOSABI_FREEBSD": reflect.ValueOf(elf.ELFOSABI_FREEBSD), - "ELFOSABI_HPUX": reflect.ValueOf(elf.ELFOSABI_HPUX), - "ELFOSABI_HURD": reflect.ValueOf(elf.ELFOSABI_HURD), - "ELFOSABI_IRIX": reflect.ValueOf(elf.ELFOSABI_IRIX), - "ELFOSABI_LINUX": reflect.ValueOf(elf.ELFOSABI_LINUX), - "ELFOSABI_MODESTO": reflect.ValueOf(elf.ELFOSABI_MODESTO), - "ELFOSABI_NETBSD": reflect.ValueOf(elf.ELFOSABI_NETBSD), - "ELFOSABI_NONE": reflect.ValueOf(elf.ELFOSABI_NONE), - "ELFOSABI_NSK": reflect.ValueOf(elf.ELFOSABI_NSK), - "ELFOSABI_OPENBSD": reflect.ValueOf(elf.ELFOSABI_OPENBSD), - "ELFOSABI_OPENVMS": reflect.ValueOf(elf.ELFOSABI_OPENVMS), - "ELFOSABI_SOLARIS": reflect.ValueOf(elf.ELFOSABI_SOLARIS), - "ELFOSABI_STANDALONE": reflect.ValueOf(elf.ELFOSABI_STANDALONE), - "ELFOSABI_TRU64": reflect.ValueOf(elf.ELFOSABI_TRU64), - "EM_386": reflect.ValueOf(elf.EM_386), - "EM_486": reflect.ValueOf(elf.EM_486), - "EM_56800EX": reflect.ValueOf(elf.EM_56800EX), - "EM_68HC05": reflect.ValueOf(elf.EM_68HC05), - "EM_68HC08": reflect.ValueOf(elf.EM_68HC08), - "EM_68HC11": reflect.ValueOf(elf.EM_68HC11), - "EM_68HC12": reflect.ValueOf(elf.EM_68HC12), - "EM_68HC16": reflect.ValueOf(elf.EM_68HC16), - "EM_68K": reflect.ValueOf(elf.EM_68K), - "EM_78KOR": reflect.ValueOf(elf.EM_78KOR), - "EM_8051": reflect.ValueOf(elf.EM_8051), - "EM_860": reflect.ValueOf(elf.EM_860), - "EM_88K": reflect.ValueOf(elf.EM_88K), - "EM_960": reflect.ValueOf(elf.EM_960), - "EM_AARCH64": reflect.ValueOf(elf.EM_AARCH64), - "EM_ALPHA": reflect.ValueOf(elf.EM_ALPHA), - "EM_ALPHA_STD": reflect.ValueOf(elf.EM_ALPHA_STD), - "EM_ALTERA_NIOS2": reflect.ValueOf(elf.EM_ALTERA_NIOS2), - "EM_AMDGPU": reflect.ValueOf(elf.EM_AMDGPU), - "EM_ARC": reflect.ValueOf(elf.EM_ARC), - "EM_ARCA": reflect.ValueOf(elf.EM_ARCA), - "EM_ARC_COMPACT": reflect.ValueOf(elf.EM_ARC_COMPACT), - "EM_ARC_COMPACT2": reflect.ValueOf(elf.EM_ARC_COMPACT2), - "EM_ARM": reflect.ValueOf(elf.EM_ARM), - "EM_AVR": reflect.ValueOf(elf.EM_AVR), - "EM_AVR32": reflect.ValueOf(elf.EM_AVR32), - "EM_BA1": reflect.ValueOf(elf.EM_BA1), - "EM_BA2": reflect.ValueOf(elf.EM_BA2), - "EM_BLACKFIN": reflect.ValueOf(elf.EM_BLACKFIN), - "EM_BPF": reflect.ValueOf(elf.EM_BPF), - "EM_C166": reflect.ValueOf(elf.EM_C166), - "EM_CDP": reflect.ValueOf(elf.EM_CDP), - "EM_CE": reflect.ValueOf(elf.EM_CE), - "EM_CLOUDSHIELD": reflect.ValueOf(elf.EM_CLOUDSHIELD), - "EM_COGE": reflect.ValueOf(elf.EM_COGE), - "EM_COLDFIRE": reflect.ValueOf(elf.EM_COLDFIRE), - "EM_COOL": reflect.ValueOf(elf.EM_COOL), - "EM_COREA_1ST": reflect.ValueOf(elf.EM_COREA_1ST), - "EM_COREA_2ND": reflect.ValueOf(elf.EM_COREA_2ND), - "EM_CR": reflect.ValueOf(elf.EM_CR), - "EM_CR16": reflect.ValueOf(elf.EM_CR16), - "EM_CRAYNV2": reflect.ValueOf(elf.EM_CRAYNV2), - "EM_CRIS": reflect.ValueOf(elf.EM_CRIS), - "EM_CRX": reflect.ValueOf(elf.EM_CRX), - "EM_CSR_KALIMBA": reflect.ValueOf(elf.EM_CSR_KALIMBA), - "EM_CUDA": reflect.ValueOf(elf.EM_CUDA), - "EM_CYPRESS_M8C": reflect.ValueOf(elf.EM_CYPRESS_M8C), - "EM_D10V": reflect.ValueOf(elf.EM_D10V), - "EM_D30V": reflect.ValueOf(elf.EM_D30V), - "EM_DSP24": reflect.ValueOf(elf.EM_DSP24), - "EM_DSPIC30F": reflect.ValueOf(elf.EM_DSPIC30F), - "EM_DXP": reflect.ValueOf(elf.EM_DXP), - "EM_ECOG1": reflect.ValueOf(elf.EM_ECOG1), - "EM_ECOG16": reflect.ValueOf(elf.EM_ECOG16), - "EM_ECOG1X": reflect.ValueOf(elf.EM_ECOG1X), - "EM_ECOG2": reflect.ValueOf(elf.EM_ECOG2), - "EM_ETPU": reflect.ValueOf(elf.EM_ETPU), - "EM_EXCESS": reflect.ValueOf(elf.EM_EXCESS), - "EM_F2MC16": reflect.ValueOf(elf.EM_F2MC16), - "EM_FIREPATH": reflect.ValueOf(elf.EM_FIREPATH), - "EM_FR20": reflect.ValueOf(elf.EM_FR20), - "EM_FR30": reflect.ValueOf(elf.EM_FR30), - "EM_FT32": reflect.ValueOf(elf.EM_FT32), - "EM_FX66": reflect.ValueOf(elf.EM_FX66), - "EM_H8S": reflect.ValueOf(elf.EM_H8S), - "EM_H8_300": reflect.ValueOf(elf.EM_H8_300), - "EM_H8_300H": reflect.ValueOf(elf.EM_H8_300H), - "EM_H8_500": reflect.ValueOf(elf.EM_H8_500), - "EM_HUANY": reflect.ValueOf(elf.EM_HUANY), - "EM_IA_64": reflect.ValueOf(elf.EM_IA_64), - "EM_INTEL205": reflect.ValueOf(elf.EM_INTEL205), - "EM_INTEL206": reflect.ValueOf(elf.EM_INTEL206), - "EM_INTEL207": reflect.ValueOf(elf.EM_INTEL207), - "EM_INTEL208": reflect.ValueOf(elf.EM_INTEL208), - "EM_INTEL209": reflect.ValueOf(elf.EM_INTEL209), - "EM_IP2K": reflect.ValueOf(elf.EM_IP2K), - "EM_JAVELIN": reflect.ValueOf(elf.EM_JAVELIN), - "EM_K10M": reflect.ValueOf(elf.EM_K10M), - "EM_KM32": reflect.ValueOf(elf.EM_KM32), - "EM_KMX16": reflect.ValueOf(elf.EM_KMX16), - "EM_KMX32": reflect.ValueOf(elf.EM_KMX32), - "EM_KMX8": reflect.ValueOf(elf.EM_KMX8), - "EM_KVARC": reflect.ValueOf(elf.EM_KVARC), - "EM_L10M": reflect.ValueOf(elf.EM_L10M), - "EM_LANAI": reflect.ValueOf(elf.EM_LANAI), - "EM_LATTICEMICO32": reflect.ValueOf(elf.EM_LATTICEMICO32), - "EM_M16C": reflect.ValueOf(elf.EM_M16C), - "EM_M32": reflect.ValueOf(elf.EM_M32), - "EM_M32C": reflect.ValueOf(elf.EM_M32C), - "EM_M32R": reflect.ValueOf(elf.EM_M32R), - "EM_MANIK": reflect.ValueOf(elf.EM_MANIK), - "EM_MAX": reflect.ValueOf(elf.EM_MAX), - "EM_MAXQ30": reflect.ValueOf(elf.EM_MAXQ30), - "EM_MCHP_PIC": reflect.ValueOf(elf.EM_MCHP_PIC), - "EM_MCST_ELBRUS": reflect.ValueOf(elf.EM_MCST_ELBRUS), - "EM_ME16": reflect.ValueOf(elf.EM_ME16), - "EM_METAG": reflect.ValueOf(elf.EM_METAG), - "EM_MICROBLAZE": reflect.ValueOf(elf.EM_MICROBLAZE), - "EM_MIPS": reflect.ValueOf(elf.EM_MIPS), - "EM_MIPS_RS3_LE": reflect.ValueOf(elf.EM_MIPS_RS3_LE), - "EM_MIPS_RS4_BE": reflect.ValueOf(elf.EM_MIPS_RS4_BE), - "EM_MIPS_X": reflect.ValueOf(elf.EM_MIPS_X), - "EM_MMA": reflect.ValueOf(elf.EM_MMA), - "EM_MMDSP_PLUS": reflect.ValueOf(elf.EM_MMDSP_PLUS), - "EM_MMIX": reflect.ValueOf(elf.EM_MMIX), - "EM_MN10200": reflect.ValueOf(elf.EM_MN10200), - "EM_MN10300": reflect.ValueOf(elf.EM_MN10300), - "EM_MOXIE": reflect.ValueOf(elf.EM_MOXIE), - "EM_MSP430": reflect.ValueOf(elf.EM_MSP430), - "EM_NCPU": reflect.ValueOf(elf.EM_NCPU), - "EM_NDR1": reflect.ValueOf(elf.EM_NDR1), - "EM_NDS32": reflect.ValueOf(elf.EM_NDS32), - "EM_NONE": reflect.ValueOf(elf.EM_NONE), - "EM_NORC": reflect.ValueOf(elf.EM_NORC), - "EM_NS32K": reflect.ValueOf(elf.EM_NS32K), - "EM_OPEN8": reflect.ValueOf(elf.EM_OPEN8), - "EM_OPENRISC": reflect.ValueOf(elf.EM_OPENRISC), - "EM_PARISC": reflect.ValueOf(elf.EM_PARISC), - "EM_PCP": reflect.ValueOf(elf.EM_PCP), - "EM_PDP10": reflect.ValueOf(elf.EM_PDP10), - "EM_PDP11": reflect.ValueOf(elf.EM_PDP11), - "EM_PDSP": reflect.ValueOf(elf.EM_PDSP), - "EM_PJ": reflect.ValueOf(elf.EM_PJ), - "EM_PPC": reflect.ValueOf(elf.EM_PPC), - "EM_PPC64": reflect.ValueOf(elf.EM_PPC64), - "EM_PRISM": reflect.ValueOf(elf.EM_PRISM), - "EM_QDSP6": reflect.ValueOf(elf.EM_QDSP6), - "EM_R32C": reflect.ValueOf(elf.EM_R32C), - "EM_RCE": reflect.ValueOf(elf.EM_RCE), - "EM_RH32": reflect.ValueOf(elf.EM_RH32), - "EM_RISCV": reflect.ValueOf(elf.EM_RISCV), - "EM_RL78": reflect.ValueOf(elf.EM_RL78), - "EM_RS08": reflect.ValueOf(elf.EM_RS08), - "EM_RX": reflect.ValueOf(elf.EM_RX), - "EM_S370": reflect.ValueOf(elf.EM_S370), - "EM_S390": reflect.ValueOf(elf.EM_S390), - "EM_SCORE7": reflect.ValueOf(elf.EM_SCORE7), - "EM_SEP": reflect.ValueOf(elf.EM_SEP), - "EM_SE_C17": reflect.ValueOf(elf.EM_SE_C17), - "EM_SE_C33": reflect.ValueOf(elf.EM_SE_C33), - "EM_SH": reflect.ValueOf(elf.EM_SH), - "EM_SHARC": reflect.ValueOf(elf.EM_SHARC), - "EM_SLE9X": reflect.ValueOf(elf.EM_SLE9X), - "EM_SNP1K": reflect.ValueOf(elf.EM_SNP1K), - "EM_SPARC": reflect.ValueOf(elf.EM_SPARC), - "EM_SPARC32PLUS": reflect.ValueOf(elf.EM_SPARC32PLUS), - "EM_SPARCV9": reflect.ValueOf(elf.EM_SPARCV9), - "EM_ST100": reflect.ValueOf(elf.EM_ST100), - "EM_ST19": reflect.ValueOf(elf.EM_ST19), - "EM_ST200": reflect.ValueOf(elf.EM_ST200), - "EM_ST7": reflect.ValueOf(elf.EM_ST7), - "EM_ST9PLUS": reflect.ValueOf(elf.EM_ST9PLUS), - "EM_STARCORE": reflect.ValueOf(elf.EM_STARCORE), - "EM_STM8": reflect.ValueOf(elf.EM_STM8), - "EM_STXP7X": reflect.ValueOf(elf.EM_STXP7X), - "EM_SVX": reflect.ValueOf(elf.EM_SVX), - "EM_TILE64": reflect.ValueOf(elf.EM_TILE64), - "EM_TILEGX": reflect.ValueOf(elf.EM_TILEGX), - "EM_TILEPRO": reflect.ValueOf(elf.EM_TILEPRO), - "EM_TINYJ": reflect.ValueOf(elf.EM_TINYJ), - "EM_TI_ARP32": reflect.ValueOf(elf.EM_TI_ARP32), - "EM_TI_C2000": reflect.ValueOf(elf.EM_TI_C2000), - "EM_TI_C5500": reflect.ValueOf(elf.EM_TI_C5500), - "EM_TI_C6000": reflect.ValueOf(elf.EM_TI_C6000), - "EM_TI_PRU": reflect.ValueOf(elf.EM_TI_PRU), - "EM_TMM_GPP": reflect.ValueOf(elf.EM_TMM_GPP), - "EM_TPC": reflect.ValueOf(elf.EM_TPC), - "EM_TRICORE": reflect.ValueOf(elf.EM_TRICORE), - "EM_TRIMEDIA": reflect.ValueOf(elf.EM_TRIMEDIA), - "EM_TSK3000": reflect.ValueOf(elf.EM_TSK3000), - "EM_UNICORE": reflect.ValueOf(elf.EM_UNICORE), - "EM_V800": reflect.ValueOf(elf.EM_V800), - "EM_V850": reflect.ValueOf(elf.EM_V850), - "EM_VAX": reflect.ValueOf(elf.EM_VAX), - "EM_VIDEOCORE": reflect.ValueOf(elf.EM_VIDEOCORE), - "EM_VIDEOCORE3": reflect.ValueOf(elf.EM_VIDEOCORE3), - "EM_VIDEOCORE5": reflect.ValueOf(elf.EM_VIDEOCORE5), - "EM_VISIUM": reflect.ValueOf(elf.EM_VISIUM), - "EM_VPP500": reflect.ValueOf(elf.EM_VPP500), - "EM_X86_64": reflect.ValueOf(elf.EM_X86_64), - "EM_XCORE": reflect.ValueOf(elf.EM_XCORE), - "EM_XGATE": reflect.ValueOf(elf.EM_XGATE), - "EM_XIMO16": reflect.ValueOf(elf.EM_XIMO16), - "EM_XTENSA": reflect.ValueOf(elf.EM_XTENSA), - "EM_Z80": reflect.ValueOf(elf.EM_Z80), - "EM_ZSP": reflect.ValueOf(elf.EM_ZSP), - "ET_CORE": reflect.ValueOf(elf.ET_CORE), - "ET_DYN": reflect.ValueOf(elf.ET_DYN), - "ET_EXEC": reflect.ValueOf(elf.ET_EXEC), - "ET_HIOS": reflect.ValueOf(elf.ET_HIOS), - "ET_HIPROC": reflect.ValueOf(elf.ET_HIPROC), - "ET_LOOS": reflect.ValueOf(elf.ET_LOOS), - "ET_LOPROC": reflect.ValueOf(elf.ET_LOPROC), - "ET_NONE": reflect.ValueOf(elf.ET_NONE), - "ET_REL": reflect.ValueOf(elf.ET_REL), - "EV_CURRENT": reflect.ValueOf(elf.EV_CURRENT), - "EV_NONE": reflect.ValueOf(elf.EV_NONE), - "ErrNoSymbols": reflect.ValueOf(&elf.ErrNoSymbols).Elem(), - "NT_FPREGSET": reflect.ValueOf(elf.NT_FPREGSET), - "NT_PRPSINFO": reflect.ValueOf(elf.NT_PRPSINFO), - "NT_PRSTATUS": reflect.ValueOf(elf.NT_PRSTATUS), - "NewFile": reflect.ValueOf(elf.NewFile), - "Open": reflect.ValueOf(elf.Open), - "PF_MASKOS": reflect.ValueOf(elf.PF_MASKOS), - "PF_MASKPROC": reflect.ValueOf(elf.PF_MASKPROC), - "PF_R": reflect.ValueOf(elf.PF_R), - "PF_W": reflect.ValueOf(elf.PF_W), - "PF_X": reflect.ValueOf(elf.PF_X), - "PT_AARCH64_ARCHEXT": reflect.ValueOf(elf.PT_AARCH64_ARCHEXT), - "PT_AARCH64_UNWIND": reflect.ValueOf(elf.PT_AARCH64_UNWIND), - "PT_ARM_ARCHEXT": reflect.ValueOf(elf.PT_ARM_ARCHEXT), - "PT_ARM_EXIDX": reflect.ValueOf(elf.PT_ARM_EXIDX), - "PT_DYNAMIC": reflect.ValueOf(elf.PT_DYNAMIC), - "PT_GNU_EH_FRAME": reflect.ValueOf(elf.PT_GNU_EH_FRAME), - "PT_GNU_MBIND_HI": reflect.ValueOf(elf.PT_GNU_MBIND_HI), - "PT_GNU_MBIND_LO": reflect.ValueOf(elf.PT_GNU_MBIND_LO), - "PT_GNU_PROPERTY": reflect.ValueOf(elf.PT_GNU_PROPERTY), - "PT_GNU_RELRO": reflect.ValueOf(elf.PT_GNU_RELRO), - "PT_GNU_STACK": reflect.ValueOf(elf.PT_GNU_STACK), - "PT_HIOS": reflect.ValueOf(elf.PT_HIOS), - "PT_HIPROC": reflect.ValueOf(elf.PT_HIPROC), - "PT_INTERP": reflect.ValueOf(elf.PT_INTERP), - "PT_LOAD": reflect.ValueOf(elf.PT_LOAD), - "PT_LOOS": reflect.ValueOf(elf.PT_LOOS), - "PT_LOPROC": reflect.ValueOf(elf.PT_LOPROC), - "PT_MIPS_ABIFLAGS": reflect.ValueOf(elf.PT_MIPS_ABIFLAGS), - "PT_MIPS_OPTIONS": reflect.ValueOf(elf.PT_MIPS_OPTIONS), - "PT_MIPS_REGINFO": reflect.ValueOf(elf.PT_MIPS_REGINFO), - "PT_MIPS_RTPROC": reflect.ValueOf(elf.PT_MIPS_RTPROC), - "PT_NOTE": reflect.ValueOf(elf.PT_NOTE), - "PT_NULL": reflect.ValueOf(elf.PT_NULL), - "PT_OPENBSD_BOOTDATA": reflect.ValueOf(elf.PT_OPENBSD_BOOTDATA), - "PT_OPENBSD_RANDOMIZE": reflect.ValueOf(elf.PT_OPENBSD_RANDOMIZE), - "PT_OPENBSD_WXNEEDED": reflect.ValueOf(elf.PT_OPENBSD_WXNEEDED), - "PT_PAX_FLAGS": reflect.ValueOf(elf.PT_PAX_FLAGS), - "PT_PHDR": reflect.ValueOf(elf.PT_PHDR), - "PT_S390_PGSTE": reflect.ValueOf(elf.PT_S390_PGSTE), - "PT_SHLIB": reflect.ValueOf(elf.PT_SHLIB), - "PT_SUNWSTACK": reflect.ValueOf(elf.PT_SUNWSTACK), - "PT_SUNW_EH_FRAME": reflect.ValueOf(elf.PT_SUNW_EH_FRAME), - "PT_TLS": reflect.ValueOf(elf.PT_TLS), - "R_386_16": reflect.ValueOf(elf.R_386_16), - "R_386_32": reflect.ValueOf(elf.R_386_32), - "R_386_32PLT": reflect.ValueOf(elf.R_386_32PLT), - "R_386_8": reflect.ValueOf(elf.R_386_8), - "R_386_COPY": reflect.ValueOf(elf.R_386_COPY), - "R_386_GLOB_DAT": reflect.ValueOf(elf.R_386_GLOB_DAT), - "R_386_GOT32": reflect.ValueOf(elf.R_386_GOT32), - "R_386_GOT32X": reflect.ValueOf(elf.R_386_GOT32X), - "R_386_GOTOFF": reflect.ValueOf(elf.R_386_GOTOFF), - "R_386_GOTPC": reflect.ValueOf(elf.R_386_GOTPC), - "R_386_IRELATIVE": reflect.ValueOf(elf.R_386_IRELATIVE), - "R_386_JMP_SLOT": reflect.ValueOf(elf.R_386_JMP_SLOT), - "R_386_NONE": reflect.ValueOf(elf.R_386_NONE), - "R_386_PC16": reflect.ValueOf(elf.R_386_PC16), - "R_386_PC32": reflect.ValueOf(elf.R_386_PC32), - "R_386_PC8": reflect.ValueOf(elf.R_386_PC8), - "R_386_PLT32": reflect.ValueOf(elf.R_386_PLT32), - "R_386_RELATIVE": reflect.ValueOf(elf.R_386_RELATIVE), - "R_386_SIZE32": reflect.ValueOf(elf.R_386_SIZE32), - "R_386_TLS_DESC": reflect.ValueOf(elf.R_386_TLS_DESC), - "R_386_TLS_DESC_CALL": reflect.ValueOf(elf.R_386_TLS_DESC_CALL), - "R_386_TLS_DTPMOD32": reflect.ValueOf(elf.R_386_TLS_DTPMOD32), - "R_386_TLS_DTPOFF32": reflect.ValueOf(elf.R_386_TLS_DTPOFF32), - "R_386_TLS_GD": reflect.ValueOf(elf.R_386_TLS_GD), - "R_386_TLS_GD_32": reflect.ValueOf(elf.R_386_TLS_GD_32), - "R_386_TLS_GD_CALL": reflect.ValueOf(elf.R_386_TLS_GD_CALL), - "R_386_TLS_GD_POP": reflect.ValueOf(elf.R_386_TLS_GD_POP), - "R_386_TLS_GD_PUSH": reflect.ValueOf(elf.R_386_TLS_GD_PUSH), - "R_386_TLS_GOTDESC": reflect.ValueOf(elf.R_386_TLS_GOTDESC), - "R_386_TLS_GOTIE": reflect.ValueOf(elf.R_386_TLS_GOTIE), - "R_386_TLS_IE": reflect.ValueOf(elf.R_386_TLS_IE), - "R_386_TLS_IE_32": reflect.ValueOf(elf.R_386_TLS_IE_32), - "R_386_TLS_LDM": reflect.ValueOf(elf.R_386_TLS_LDM), - "R_386_TLS_LDM_32": reflect.ValueOf(elf.R_386_TLS_LDM_32), - "R_386_TLS_LDM_CALL": reflect.ValueOf(elf.R_386_TLS_LDM_CALL), - "R_386_TLS_LDM_POP": reflect.ValueOf(elf.R_386_TLS_LDM_POP), - "R_386_TLS_LDM_PUSH": reflect.ValueOf(elf.R_386_TLS_LDM_PUSH), - "R_386_TLS_LDO_32": reflect.ValueOf(elf.R_386_TLS_LDO_32), - "R_386_TLS_LE": reflect.ValueOf(elf.R_386_TLS_LE), - "R_386_TLS_LE_32": reflect.ValueOf(elf.R_386_TLS_LE_32), - "R_386_TLS_TPOFF": reflect.ValueOf(elf.R_386_TLS_TPOFF), - "R_386_TLS_TPOFF32": reflect.ValueOf(elf.R_386_TLS_TPOFF32), - "R_390_12": reflect.ValueOf(elf.R_390_12), - "R_390_16": reflect.ValueOf(elf.R_390_16), - "R_390_20": reflect.ValueOf(elf.R_390_20), - "R_390_32": reflect.ValueOf(elf.R_390_32), - "R_390_64": reflect.ValueOf(elf.R_390_64), - "R_390_8": reflect.ValueOf(elf.R_390_8), - "R_390_COPY": reflect.ValueOf(elf.R_390_COPY), - "R_390_GLOB_DAT": reflect.ValueOf(elf.R_390_GLOB_DAT), - "R_390_GOT12": reflect.ValueOf(elf.R_390_GOT12), - "R_390_GOT16": reflect.ValueOf(elf.R_390_GOT16), - "R_390_GOT20": reflect.ValueOf(elf.R_390_GOT20), - "R_390_GOT32": reflect.ValueOf(elf.R_390_GOT32), - "R_390_GOT64": reflect.ValueOf(elf.R_390_GOT64), - "R_390_GOTENT": reflect.ValueOf(elf.R_390_GOTENT), - "R_390_GOTOFF": reflect.ValueOf(elf.R_390_GOTOFF), - "R_390_GOTOFF16": reflect.ValueOf(elf.R_390_GOTOFF16), - "R_390_GOTOFF64": reflect.ValueOf(elf.R_390_GOTOFF64), - "R_390_GOTPC": reflect.ValueOf(elf.R_390_GOTPC), - "R_390_GOTPCDBL": reflect.ValueOf(elf.R_390_GOTPCDBL), - "R_390_GOTPLT12": reflect.ValueOf(elf.R_390_GOTPLT12), - "R_390_GOTPLT16": reflect.ValueOf(elf.R_390_GOTPLT16), - "R_390_GOTPLT20": reflect.ValueOf(elf.R_390_GOTPLT20), - "R_390_GOTPLT32": reflect.ValueOf(elf.R_390_GOTPLT32), - "R_390_GOTPLT64": reflect.ValueOf(elf.R_390_GOTPLT64), - "R_390_GOTPLTENT": reflect.ValueOf(elf.R_390_GOTPLTENT), - "R_390_GOTPLTOFF16": reflect.ValueOf(elf.R_390_GOTPLTOFF16), - "R_390_GOTPLTOFF32": reflect.ValueOf(elf.R_390_GOTPLTOFF32), - "R_390_GOTPLTOFF64": reflect.ValueOf(elf.R_390_GOTPLTOFF64), - "R_390_JMP_SLOT": reflect.ValueOf(elf.R_390_JMP_SLOT), - "R_390_NONE": reflect.ValueOf(elf.R_390_NONE), - "R_390_PC16": reflect.ValueOf(elf.R_390_PC16), - "R_390_PC16DBL": reflect.ValueOf(elf.R_390_PC16DBL), - "R_390_PC32": reflect.ValueOf(elf.R_390_PC32), - "R_390_PC32DBL": reflect.ValueOf(elf.R_390_PC32DBL), - "R_390_PC64": reflect.ValueOf(elf.R_390_PC64), - "R_390_PLT16DBL": reflect.ValueOf(elf.R_390_PLT16DBL), - "R_390_PLT32": reflect.ValueOf(elf.R_390_PLT32), - "R_390_PLT32DBL": reflect.ValueOf(elf.R_390_PLT32DBL), - "R_390_PLT64": reflect.ValueOf(elf.R_390_PLT64), - "R_390_RELATIVE": reflect.ValueOf(elf.R_390_RELATIVE), - "R_390_TLS_DTPMOD": reflect.ValueOf(elf.R_390_TLS_DTPMOD), - "R_390_TLS_DTPOFF": reflect.ValueOf(elf.R_390_TLS_DTPOFF), - "R_390_TLS_GD32": reflect.ValueOf(elf.R_390_TLS_GD32), - "R_390_TLS_GD64": reflect.ValueOf(elf.R_390_TLS_GD64), - "R_390_TLS_GDCALL": reflect.ValueOf(elf.R_390_TLS_GDCALL), - "R_390_TLS_GOTIE12": reflect.ValueOf(elf.R_390_TLS_GOTIE12), - "R_390_TLS_GOTIE20": reflect.ValueOf(elf.R_390_TLS_GOTIE20), - "R_390_TLS_GOTIE32": reflect.ValueOf(elf.R_390_TLS_GOTIE32), - "R_390_TLS_GOTIE64": reflect.ValueOf(elf.R_390_TLS_GOTIE64), - "R_390_TLS_IE32": reflect.ValueOf(elf.R_390_TLS_IE32), - "R_390_TLS_IE64": reflect.ValueOf(elf.R_390_TLS_IE64), - "R_390_TLS_IEENT": reflect.ValueOf(elf.R_390_TLS_IEENT), - "R_390_TLS_LDCALL": reflect.ValueOf(elf.R_390_TLS_LDCALL), - "R_390_TLS_LDM32": reflect.ValueOf(elf.R_390_TLS_LDM32), - "R_390_TLS_LDM64": reflect.ValueOf(elf.R_390_TLS_LDM64), - "R_390_TLS_LDO32": reflect.ValueOf(elf.R_390_TLS_LDO32), - "R_390_TLS_LDO64": reflect.ValueOf(elf.R_390_TLS_LDO64), - "R_390_TLS_LE32": reflect.ValueOf(elf.R_390_TLS_LE32), - "R_390_TLS_LE64": reflect.ValueOf(elf.R_390_TLS_LE64), - "R_390_TLS_LOAD": reflect.ValueOf(elf.R_390_TLS_LOAD), - "R_390_TLS_TPOFF": reflect.ValueOf(elf.R_390_TLS_TPOFF), - "R_AARCH64_ABS16": reflect.ValueOf(elf.R_AARCH64_ABS16), - "R_AARCH64_ABS32": reflect.ValueOf(elf.R_AARCH64_ABS32), - "R_AARCH64_ABS64": reflect.ValueOf(elf.R_AARCH64_ABS64), - "R_AARCH64_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_ADD_ABS_LO12_NC), - "R_AARCH64_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_ADR_GOT_PAGE), - "R_AARCH64_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_LO21), - "R_AARCH64_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21), - "R_AARCH64_ADR_PREL_PG_HI21_NC": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21_NC), - "R_AARCH64_CALL26": reflect.ValueOf(elf.R_AARCH64_CALL26), - "R_AARCH64_CONDBR19": reflect.ValueOf(elf.R_AARCH64_CONDBR19), - "R_AARCH64_COPY": reflect.ValueOf(elf.R_AARCH64_COPY), - "R_AARCH64_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_GLOB_DAT), - "R_AARCH64_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_GOT_LD_PREL19), - "R_AARCH64_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_IRELATIVE), - "R_AARCH64_JUMP26": reflect.ValueOf(elf.R_AARCH64_JUMP26), - "R_AARCH64_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_JUMP_SLOT), - "R_AARCH64_LD64_GOTOFF_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTOFF_LO15), - "R_AARCH64_LD64_GOTPAGE_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTPAGE_LO15), - "R_AARCH64_LD64_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LD64_GOT_LO12_NC), - "R_AARCH64_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST128_ABS_LO12_NC), - "R_AARCH64_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST16_ABS_LO12_NC), - "R_AARCH64_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST32_ABS_LO12_NC), - "R_AARCH64_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST64_ABS_LO12_NC), - "R_AARCH64_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST8_ABS_LO12_NC), - "R_AARCH64_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_LD_PREL_LO19), - "R_AARCH64_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G0), - "R_AARCH64_MOVW_SABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G1), - "R_AARCH64_MOVW_SABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G2), - "R_AARCH64_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0), - "R_AARCH64_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0_NC), - "R_AARCH64_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1), - "R_AARCH64_MOVW_UABS_G1_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1_NC), - "R_AARCH64_MOVW_UABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2), - "R_AARCH64_MOVW_UABS_G2_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2_NC), - "R_AARCH64_MOVW_UABS_G3": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G3), - "R_AARCH64_NONE": reflect.ValueOf(elf.R_AARCH64_NONE), - "R_AARCH64_NULL": reflect.ValueOf(elf.R_AARCH64_NULL), - "R_AARCH64_P32_ABS16": reflect.ValueOf(elf.R_AARCH64_P32_ABS16), - "R_AARCH64_P32_ABS32": reflect.ValueOf(elf.R_AARCH64_P32_ABS32), - "R_AARCH64_P32_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_ADD_ABS_LO12_NC), - "R_AARCH64_P32_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_P32_ADR_GOT_PAGE), - "R_AARCH64_P32_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_LO21), - "R_AARCH64_P32_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_PG_HI21), - "R_AARCH64_P32_CALL26": reflect.ValueOf(elf.R_AARCH64_P32_CALL26), - "R_AARCH64_P32_CONDBR19": reflect.ValueOf(elf.R_AARCH64_P32_CONDBR19), - "R_AARCH64_P32_COPY": reflect.ValueOf(elf.R_AARCH64_P32_COPY), - "R_AARCH64_P32_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_P32_GLOB_DAT), - "R_AARCH64_P32_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_GOT_LD_PREL19), - "R_AARCH64_P32_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_IRELATIVE), - "R_AARCH64_P32_JUMP26": reflect.ValueOf(elf.R_AARCH64_P32_JUMP26), - "R_AARCH64_P32_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_P32_JUMP_SLOT), - "R_AARCH64_P32_LD32_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LD32_GOT_LO12_NC), - "R_AARCH64_P32_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST128_ABS_LO12_NC), - "R_AARCH64_P32_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST16_ABS_LO12_NC), - "R_AARCH64_P32_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST32_ABS_LO12_NC), - "R_AARCH64_P32_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST64_ABS_LO12_NC), - "R_AARCH64_P32_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST8_ABS_LO12_NC), - "R_AARCH64_P32_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_P32_LD_PREL_LO19), - "R_AARCH64_P32_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_SABS_G0), - "R_AARCH64_P32_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0), - "R_AARCH64_P32_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0_NC), - "R_AARCH64_P32_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G1), - "R_AARCH64_P32_PREL16": reflect.ValueOf(elf.R_AARCH64_P32_PREL16), - "R_AARCH64_P32_PREL32": reflect.ValueOf(elf.R_AARCH64_P32_PREL32), - "R_AARCH64_P32_RELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_RELATIVE), - "R_AARCH64_P32_TLSDESC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC), - "R_AARCH64_P32_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADD_LO12_NC), - "R_AARCH64_P32_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PAGE21), - "R_AARCH64_P32_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PREL21), - "R_AARCH64_P32_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_CALL), - "R_AARCH64_P32_TLSDESC_LD32_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD32_LO12_NC), - "R_AARCH64_P32_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD_PREL19), - "R_AARCH64_P32_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADD_LO12_NC), - "R_AARCH64_P32_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADR_PAGE21), - "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21), - "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC), - "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19), - "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12), - "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12), - "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC), - "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0), - "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC), - "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1), - "R_AARCH64_P32_TLS_DTPMOD": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPMOD), - "R_AARCH64_P32_TLS_DTPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPREL), - "R_AARCH64_P32_TLS_TPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_TPREL), - "R_AARCH64_P32_TSTBR14": reflect.ValueOf(elf.R_AARCH64_P32_TSTBR14), - "R_AARCH64_PREL16": reflect.ValueOf(elf.R_AARCH64_PREL16), - "R_AARCH64_PREL32": reflect.ValueOf(elf.R_AARCH64_PREL32), - "R_AARCH64_PREL64": reflect.ValueOf(elf.R_AARCH64_PREL64), - "R_AARCH64_RELATIVE": reflect.ValueOf(elf.R_AARCH64_RELATIVE), - "R_AARCH64_TLSDESC": reflect.ValueOf(elf.R_AARCH64_TLSDESC), - "R_AARCH64_TLSDESC_ADD": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD), - "R_AARCH64_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD_LO12_NC), - "R_AARCH64_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PAGE21), - "R_AARCH64_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PREL21), - "R_AARCH64_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_TLSDESC_CALL), - "R_AARCH64_TLSDESC_LD64_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD64_LO12_NC), - "R_AARCH64_TLSDESC_LDR": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LDR), - "R_AARCH64_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD_PREL19), - "R_AARCH64_TLSDESC_OFF_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G0_NC), - "R_AARCH64_TLSDESC_OFF_G1": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G1), - "R_AARCH64_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADD_LO12_NC), - "R_AARCH64_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PAGE21), - "R_AARCH64_TLSGD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PREL21), - "R_AARCH64_TLSGD_MOVW_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G0_NC), - "R_AARCH64_TLSGD_MOVW_G1": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G1), - "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21), - "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC), - "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19), - "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC), - "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1), - "R_AARCH64_TLSLD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PAGE21), - "R_AARCH64_TLSLD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PREL21), - "R_AARCH64_TLSLD_LDST128_DTPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12), - "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC), - "R_AARCH64_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_HI12), - "R_AARCH64_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12), - "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC), - "R_AARCH64_TLSLE_LDST128_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12), - "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC), - "R_AARCH64_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0), - "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC), - "R_AARCH64_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1), - "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC), - "R_AARCH64_TLSLE_MOVW_TPREL_G2": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G2), - "R_AARCH64_TLS_DTPMOD64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPMOD64), - "R_AARCH64_TLS_DTPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPREL64), - "R_AARCH64_TLS_TPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_TPREL64), - "R_AARCH64_TSTBR14": reflect.ValueOf(elf.R_AARCH64_TSTBR14), - "R_ALPHA_BRADDR": reflect.ValueOf(elf.R_ALPHA_BRADDR), - "R_ALPHA_COPY": reflect.ValueOf(elf.R_ALPHA_COPY), - "R_ALPHA_GLOB_DAT": reflect.ValueOf(elf.R_ALPHA_GLOB_DAT), - "R_ALPHA_GPDISP": reflect.ValueOf(elf.R_ALPHA_GPDISP), - "R_ALPHA_GPREL32": reflect.ValueOf(elf.R_ALPHA_GPREL32), - "R_ALPHA_GPRELHIGH": reflect.ValueOf(elf.R_ALPHA_GPRELHIGH), - "R_ALPHA_GPRELLOW": reflect.ValueOf(elf.R_ALPHA_GPRELLOW), - "R_ALPHA_GPVALUE": reflect.ValueOf(elf.R_ALPHA_GPVALUE), - "R_ALPHA_HINT": reflect.ValueOf(elf.R_ALPHA_HINT), - "R_ALPHA_IMMED_BR_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_BR_HI32), - "R_ALPHA_IMMED_GP_16": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_16), - "R_ALPHA_IMMED_GP_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_HI32), - "R_ALPHA_IMMED_LO32": reflect.ValueOf(elf.R_ALPHA_IMMED_LO32), - "R_ALPHA_IMMED_SCN_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_SCN_HI32), - "R_ALPHA_JMP_SLOT": reflect.ValueOf(elf.R_ALPHA_JMP_SLOT), - "R_ALPHA_LITERAL": reflect.ValueOf(elf.R_ALPHA_LITERAL), - "R_ALPHA_LITUSE": reflect.ValueOf(elf.R_ALPHA_LITUSE), - "R_ALPHA_NONE": reflect.ValueOf(elf.R_ALPHA_NONE), - "R_ALPHA_OP_PRSHIFT": reflect.ValueOf(elf.R_ALPHA_OP_PRSHIFT), - "R_ALPHA_OP_PSUB": reflect.ValueOf(elf.R_ALPHA_OP_PSUB), - "R_ALPHA_OP_PUSH": reflect.ValueOf(elf.R_ALPHA_OP_PUSH), - "R_ALPHA_OP_STORE": reflect.ValueOf(elf.R_ALPHA_OP_STORE), - "R_ALPHA_REFLONG": reflect.ValueOf(elf.R_ALPHA_REFLONG), - "R_ALPHA_REFQUAD": reflect.ValueOf(elf.R_ALPHA_REFQUAD), - "R_ALPHA_RELATIVE": reflect.ValueOf(elf.R_ALPHA_RELATIVE), - "R_ALPHA_SREL16": reflect.ValueOf(elf.R_ALPHA_SREL16), - "R_ALPHA_SREL32": reflect.ValueOf(elf.R_ALPHA_SREL32), - "R_ALPHA_SREL64": reflect.ValueOf(elf.R_ALPHA_SREL64), - "R_ARM_ABS12": reflect.ValueOf(elf.R_ARM_ABS12), - "R_ARM_ABS16": reflect.ValueOf(elf.R_ARM_ABS16), - "R_ARM_ABS32": reflect.ValueOf(elf.R_ARM_ABS32), - "R_ARM_ABS32_NOI": reflect.ValueOf(elf.R_ARM_ABS32_NOI), - "R_ARM_ABS8": reflect.ValueOf(elf.R_ARM_ABS8), - "R_ARM_ALU_PCREL_15_8": reflect.ValueOf(elf.R_ARM_ALU_PCREL_15_8), - "R_ARM_ALU_PCREL_23_15": reflect.ValueOf(elf.R_ARM_ALU_PCREL_23_15), - "R_ARM_ALU_PCREL_7_0": reflect.ValueOf(elf.R_ARM_ALU_PCREL_7_0), - "R_ARM_ALU_PC_G0": reflect.ValueOf(elf.R_ARM_ALU_PC_G0), - "R_ARM_ALU_PC_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G0_NC), - "R_ARM_ALU_PC_G1": reflect.ValueOf(elf.R_ARM_ALU_PC_G1), - "R_ARM_ALU_PC_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G1_NC), - "R_ARM_ALU_PC_G2": reflect.ValueOf(elf.R_ARM_ALU_PC_G2), - "R_ARM_ALU_SBREL_19_12_NC": reflect.ValueOf(elf.R_ARM_ALU_SBREL_19_12_NC), - "R_ARM_ALU_SBREL_27_20_CK": reflect.ValueOf(elf.R_ARM_ALU_SBREL_27_20_CK), - "R_ARM_ALU_SB_G0": reflect.ValueOf(elf.R_ARM_ALU_SB_G0), - "R_ARM_ALU_SB_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G0_NC), - "R_ARM_ALU_SB_G1": reflect.ValueOf(elf.R_ARM_ALU_SB_G1), - "R_ARM_ALU_SB_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G1_NC), - "R_ARM_ALU_SB_G2": reflect.ValueOf(elf.R_ARM_ALU_SB_G2), - "R_ARM_AMP_VCALL9": reflect.ValueOf(elf.R_ARM_AMP_VCALL9), - "R_ARM_BASE_ABS": reflect.ValueOf(elf.R_ARM_BASE_ABS), - "R_ARM_CALL": reflect.ValueOf(elf.R_ARM_CALL), - "R_ARM_COPY": reflect.ValueOf(elf.R_ARM_COPY), - "R_ARM_GLOB_DAT": reflect.ValueOf(elf.R_ARM_GLOB_DAT), - "R_ARM_GNU_VTENTRY": reflect.ValueOf(elf.R_ARM_GNU_VTENTRY), - "R_ARM_GNU_VTINHERIT": reflect.ValueOf(elf.R_ARM_GNU_VTINHERIT), - "R_ARM_GOT32": reflect.ValueOf(elf.R_ARM_GOT32), - "R_ARM_GOTOFF": reflect.ValueOf(elf.R_ARM_GOTOFF), - "R_ARM_GOTOFF12": reflect.ValueOf(elf.R_ARM_GOTOFF12), - "R_ARM_GOTPC": reflect.ValueOf(elf.R_ARM_GOTPC), - "R_ARM_GOTRELAX": reflect.ValueOf(elf.R_ARM_GOTRELAX), - "R_ARM_GOT_ABS": reflect.ValueOf(elf.R_ARM_GOT_ABS), - "R_ARM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_GOT_BREL12), - "R_ARM_GOT_PREL": reflect.ValueOf(elf.R_ARM_GOT_PREL), - "R_ARM_IRELATIVE": reflect.ValueOf(elf.R_ARM_IRELATIVE), - "R_ARM_JUMP24": reflect.ValueOf(elf.R_ARM_JUMP24), - "R_ARM_JUMP_SLOT": reflect.ValueOf(elf.R_ARM_JUMP_SLOT), - "R_ARM_LDC_PC_G0": reflect.ValueOf(elf.R_ARM_LDC_PC_G0), - "R_ARM_LDC_PC_G1": reflect.ValueOf(elf.R_ARM_LDC_PC_G1), - "R_ARM_LDC_PC_G2": reflect.ValueOf(elf.R_ARM_LDC_PC_G2), - "R_ARM_LDC_SB_G0": reflect.ValueOf(elf.R_ARM_LDC_SB_G0), - "R_ARM_LDC_SB_G1": reflect.ValueOf(elf.R_ARM_LDC_SB_G1), - "R_ARM_LDC_SB_G2": reflect.ValueOf(elf.R_ARM_LDC_SB_G2), - "R_ARM_LDRS_PC_G0": reflect.ValueOf(elf.R_ARM_LDRS_PC_G0), - "R_ARM_LDRS_PC_G1": reflect.ValueOf(elf.R_ARM_LDRS_PC_G1), - "R_ARM_LDRS_PC_G2": reflect.ValueOf(elf.R_ARM_LDRS_PC_G2), - "R_ARM_LDRS_SB_G0": reflect.ValueOf(elf.R_ARM_LDRS_SB_G0), - "R_ARM_LDRS_SB_G1": reflect.ValueOf(elf.R_ARM_LDRS_SB_G1), - "R_ARM_LDRS_SB_G2": reflect.ValueOf(elf.R_ARM_LDRS_SB_G2), - "R_ARM_LDR_PC_G1": reflect.ValueOf(elf.R_ARM_LDR_PC_G1), - "R_ARM_LDR_PC_G2": reflect.ValueOf(elf.R_ARM_LDR_PC_G2), - "R_ARM_LDR_SBREL_11_10_NC": reflect.ValueOf(elf.R_ARM_LDR_SBREL_11_10_NC), - "R_ARM_LDR_SB_G0": reflect.ValueOf(elf.R_ARM_LDR_SB_G0), - "R_ARM_LDR_SB_G1": reflect.ValueOf(elf.R_ARM_LDR_SB_G1), - "R_ARM_LDR_SB_G2": reflect.ValueOf(elf.R_ARM_LDR_SB_G2), - "R_ARM_ME_TOO": reflect.ValueOf(elf.R_ARM_ME_TOO), - "R_ARM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_MOVT_ABS), - "R_ARM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_MOVT_BREL), - "R_ARM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_MOVT_PREL), - "R_ARM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_MOVW_ABS_NC), - "R_ARM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_MOVW_BREL), - "R_ARM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_BREL_NC), - "R_ARM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_PREL_NC), - "R_ARM_NONE": reflect.ValueOf(elf.R_ARM_NONE), - "R_ARM_PC13": reflect.ValueOf(elf.R_ARM_PC13), - "R_ARM_PC24": reflect.ValueOf(elf.R_ARM_PC24), - "R_ARM_PLT32": reflect.ValueOf(elf.R_ARM_PLT32), - "R_ARM_PLT32_ABS": reflect.ValueOf(elf.R_ARM_PLT32_ABS), - "R_ARM_PREL31": reflect.ValueOf(elf.R_ARM_PREL31), - "R_ARM_PRIVATE_0": reflect.ValueOf(elf.R_ARM_PRIVATE_0), - "R_ARM_PRIVATE_1": reflect.ValueOf(elf.R_ARM_PRIVATE_1), - "R_ARM_PRIVATE_10": reflect.ValueOf(elf.R_ARM_PRIVATE_10), - "R_ARM_PRIVATE_11": reflect.ValueOf(elf.R_ARM_PRIVATE_11), - "R_ARM_PRIVATE_12": reflect.ValueOf(elf.R_ARM_PRIVATE_12), - "R_ARM_PRIVATE_13": reflect.ValueOf(elf.R_ARM_PRIVATE_13), - "R_ARM_PRIVATE_14": reflect.ValueOf(elf.R_ARM_PRIVATE_14), - "R_ARM_PRIVATE_15": reflect.ValueOf(elf.R_ARM_PRIVATE_15), - "R_ARM_PRIVATE_2": reflect.ValueOf(elf.R_ARM_PRIVATE_2), - "R_ARM_PRIVATE_3": reflect.ValueOf(elf.R_ARM_PRIVATE_3), - "R_ARM_PRIVATE_4": reflect.ValueOf(elf.R_ARM_PRIVATE_4), - "R_ARM_PRIVATE_5": reflect.ValueOf(elf.R_ARM_PRIVATE_5), - "R_ARM_PRIVATE_6": reflect.ValueOf(elf.R_ARM_PRIVATE_6), - "R_ARM_PRIVATE_7": reflect.ValueOf(elf.R_ARM_PRIVATE_7), - "R_ARM_PRIVATE_8": reflect.ValueOf(elf.R_ARM_PRIVATE_8), - "R_ARM_PRIVATE_9": reflect.ValueOf(elf.R_ARM_PRIVATE_9), - "R_ARM_RABS32": reflect.ValueOf(elf.R_ARM_RABS32), - "R_ARM_RBASE": reflect.ValueOf(elf.R_ARM_RBASE), - "R_ARM_REL32": reflect.ValueOf(elf.R_ARM_REL32), - "R_ARM_REL32_NOI": reflect.ValueOf(elf.R_ARM_REL32_NOI), - "R_ARM_RELATIVE": reflect.ValueOf(elf.R_ARM_RELATIVE), - "R_ARM_RPC24": reflect.ValueOf(elf.R_ARM_RPC24), - "R_ARM_RREL32": reflect.ValueOf(elf.R_ARM_RREL32), - "R_ARM_RSBREL32": reflect.ValueOf(elf.R_ARM_RSBREL32), - "R_ARM_RXPC25": reflect.ValueOf(elf.R_ARM_RXPC25), - "R_ARM_SBREL31": reflect.ValueOf(elf.R_ARM_SBREL31), - "R_ARM_SBREL32": reflect.ValueOf(elf.R_ARM_SBREL32), - "R_ARM_SWI24": reflect.ValueOf(elf.R_ARM_SWI24), - "R_ARM_TARGET1": reflect.ValueOf(elf.R_ARM_TARGET1), - "R_ARM_TARGET2": reflect.ValueOf(elf.R_ARM_TARGET2), - "R_ARM_THM_ABS5": reflect.ValueOf(elf.R_ARM_THM_ABS5), - "R_ARM_THM_ALU_ABS_G0_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G0_NC), - "R_ARM_THM_ALU_ABS_G1_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G1_NC), - "R_ARM_THM_ALU_ABS_G2_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G2_NC), - "R_ARM_THM_ALU_ABS_G3": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G3), - "R_ARM_THM_ALU_PREL_11_0": reflect.ValueOf(elf.R_ARM_THM_ALU_PREL_11_0), - "R_ARM_THM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_THM_GOT_BREL12), - "R_ARM_THM_JUMP11": reflect.ValueOf(elf.R_ARM_THM_JUMP11), - "R_ARM_THM_JUMP19": reflect.ValueOf(elf.R_ARM_THM_JUMP19), - "R_ARM_THM_JUMP24": reflect.ValueOf(elf.R_ARM_THM_JUMP24), - "R_ARM_THM_JUMP6": reflect.ValueOf(elf.R_ARM_THM_JUMP6), - "R_ARM_THM_JUMP8": reflect.ValueOf(elf.R_ARM_THM_JUMP8), - "R_ARM_THM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_THM_MOVT_ABS), - "R_ARM_THM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_BREL), - "R_ARM_THM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_PREL), - "R_ARM_THM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_ABS_NC), - "R_ARM_THM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL), - "R_ARM_THM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL_NC), - "R_ARM_THM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_PREL_NC), - "R_ARM_THM_PC12": reflect.ValueOf(elf.R_ARM_THM_PC12), - "R_ARM_THM_PC22": reflect.ValueOf(elf.R_ARM_THM_PC22), - "R_ARM_THM_PC8": reflect.ValueOf(elf.R_ARM_THM_PC8), - "R_ARM_THM_RPC22": reflect.ValueOf(elf.R_ARM_THM_RPC22), - "R_ARM_THM_SWI8": reflect.ValueOf(elf.R_ARM_THM_SWI8), - "R_ARM_THM_TLS_CALL": reflect.ValueOf(elf.R_ARM_THM_TLS_CALL), - "R_ARM_THM_TLS_DESCSEQ16": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ16), - "R_ARM_THM_TLS_DESCSEQ32": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ32), - "R_ARM_THM_XPC22": reflect.ValueOf(elf.R_ARM_THM_XPC22), - "R_ARM_TLS_CALL": reflect.ValueOf(elf.R_ARM_TLS_CALL), - "R_ARM_TLS_DESCSEQ": reflect.ValueOf(elf.R_ARM_TLS_DESCSEQ), - "R_ARM_TLS_DTPMOD32": reflect.ValueOf(elf.R_ARM_TLS_DTPMOD32), - "R_ARM_TLS_DTPOFF32": reflect.ValueOf(elf.R_ARM_TLS_DTPOFF32), - "R_ARM_TLS_GD32": reflect.ValueOf(elf.R_ARM_TLS_GD32), - "R_ARM_TLS_GOTDESC": reflect.ValueOf(elf.R_ARM_TLS_GOTDESC), - "R_ARM_TLS_IE12GP": reflect.ValueOf(elf.R_ARM_TLS_IE12GP), - "R_ARM_TLS_IE32": reflect.ValueOf(elf.R_ARM_TLS_IE32), - "R_ARM_TLS_LDM32": reflect.ValueOf(elf.R_ARM_TLS_LDM32), - "R_ARM_TLS_LDO12": reflect.ValueOf(elf.R_ARM_TLS_LDO12), - "R_ARM_TLS_LDO32": reflect.ValueOf(elf.R_ARM_TLS_LDO32), - "R_ARM_TLS_LE12": reflect.ValueOf(elf.R_ARM_TLS_LE12), - "R_ARM_TLS_LE32": reflect.ValueOf(elf.R_ARM_TLS_LE32), - "R_ARM_TLS_TPOFF32": reflect.ValueOf(elf.R_ARM_TLS_TPOFF32), - "R_ARM_V4BX": reflect.ValueOf(elf.R_ARM_V4BX), - "R_ARM_XPC25": reflect.ValueOf(elf.R_ARM_XPC25), - "R_INFO": reflect.ValueOf(elf.R_INFO), - "R_INFO32": reflect.ValueOf(elf.R_INFO32), - "R_MIPS_16": reflect.ValueOf(elf.R_MIPS_16), - "R_MIPS_26": reflect.ValueOf(elf.R_MIPS_26), - "R_MIPS_32": reflect.ValueOf(elf.R_MIPS_32), - "R_MIPS_64": reflect.ValueOf(elf.R_MIPS_64), - "R_MIPS_ADD_IMMEDIATE": reflect.ValueOf(elf.R_MIPS_ADD_IMMEDIATE), - "R_MIPS_CALL16": reflect.ValueOf(elf.R_MIPS_CALL16), - "R_MIPS_CALL_HI16": reflect.ValueOf(elf.R_MIPS_CALL_HI16), - "R_MIPS_CALL_LO16": reflect.ValueOf(elf.R_MIPS_CALL_LO16), - "R_MIPS_DELETE": reflect.ValueOf(elf.R_MIPS_DELETE), - "R_MIPS_GOT16": reflect.ValueOf(elf.R_MIPS_GOT16), - "R_MIPS_GOT_DISP": reflect.ValueOf(elf.R_MIPS_GOT_DISP), - "R_MIPS_GOT_HI16": reflect.ValueOf(elf.R_MIPS_GOT_HI16), - "R_MIPS_GOT_LO16": reflect.ValueOf(elf.R_MIPS_GOT_LO16), - "R_MIPS_GOT_OFST": reflect.ValueOf(elf.R_MIPS_GOT_OFST), - "R_MIPS_GOT_PAGE": reflect.ValueOf(elf.R_MIPS_GOT_PAGE), - "R_MIPS_GPREL16": reflect.ValueOf(elf.R_MIPS_GPREL16), - "R_MIPS_GPREL32": reflect.ValueOf(elf.R_MIPS_GPREL32), - "R_MIPS_HI16": reflect.ValueOf(elf.R_MIPS_HI16), - "R_MIPS_HIGHER": reflect.ValueOf(elf.R_MIPS_HIGHER), - "R_MIPS_HIGHEST": reflect.ValueOf(elf.R_MIPS_HIGHEST), - "R_MIPS_INSERT_A": reflect.ValueOf(elf.R_MIPS_INSERT_A), - "R_MIPS_INSERT_B": reflect.ValueOf(elf.R_MIPS_INSERT_B), - "R_MIPS_JALR": reflect.ValueOf(elf.R_MIPS_JALR), - "R_MIPS_LITERAL": reflect.ValueOf(elf.R_MIPS_LITERAL), - "R_MIPS_LO16": reflect.ValueOf(elf.R_MIPS_LO16), - "R_MIPS_NONE": reflect.ValueOf(elf.R_MIPS_NONE), - "R_MIPS_PC16": reflect.ValueOf(elf.R_MIPS_PC16), - "R_MIPS_PJUMP": reflect.ValueOf(elf.R_MIPS_PJUMP), - "R_MIPS_REL16": reflect.ValueOf(elf.R_MIPS_REL16), - "R_MIPS_REL32": reflect.ValueOf(elf.R_MIPS_REL32), - "R_MIPS_RELGOT": reflect.ValueOf(elf.R_MIPS_RELGOT), - "R_MIPS_SCN_DISP": reflect.ValueOf(elf.R_MIPS_SCN_DISP), - "R_MIPS_SHIFT5": reflect.ValueOf(elf.R_MIPS_SHIFT5), - "R_MIPS_SHIFT6": reflect.ValueOf(elf.R_MIPS_SHIFT6), - "R_MIPS_SUB": reflect.ValueOf(elf.R_MIPS_SUB), - "R_MIPS_TLS_DTPMOD32": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD32), - "R_MIPS_TLS_DTPMOD64": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD64), - "R_MIPS_TLS_DTPREL32": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL32), - "R_MIPS_TLS_DTPREL64": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL64), - "R_MIPS_TLS_DTPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_HI16), - "R_MIPS_TLS_DTPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_LO16), - "R_MIPS_TLS_GD": reflect.ValueOf(elf.R_MIPS_TLS_GD), - "R_MIPS_TLS_GOTTPREL": reflect.ValueOf(elf.R_MIPS_TLS_GOTTPREL), - "R_MIPS_TLS_LDM": reflect.ValueOf(elf.R_MIPS_TLS_LDM), - "R_MIPS_TLS_TPREL32": reflect.ValueOf(elf.R_MIPS_TLS_TPREL32), - "R_MIPS_TLS_TPREL64": reflect.ValueOf(elf.R_MIPS_TLS_TPREL64), - "R_MIPS_TLS_TPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_HI16), - "R_MIPS_TLS_TPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_LO16), - "R_PPC64_ADDR14": reflect.ValueOf(elf.R_PPC64_ADDR14), - "R_PPC64_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRNTAKEN), - "R_PPC64_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRTAKEN), - "R_PPC64_ADDR16": reflect.ValueOf(elf.R_PPC64_ADDR16), - "R_PPC64_ADDR16_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_DS), - "R_PPC64_ADDR16_HA": reflect.ValueOf(elf.R_PPC64_ADDR16_HA), - "R_PPC64_ADDR16_HI": reflect.ValueOf(elf.R_PPC64_ADDR16_HI), - "R_PPC64_ADDR16_HIGH": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGH), - "R_PPC64_ADDR16_HIGHA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHA), - "R_PPC64_ADDR16_HIGHER": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER), - "R_PPC64_ADDR16_HIGHERA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA), - "R_PPC64_ADDR16_HIGHEST": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST), - "R_PPC64_ADDR16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA), - "R_PPC64_ADDR16_LO": reflect.ValueOf(elf.R_PPC64_ADDR16_LO), - "R_PPC64_ADDR16_LO_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_LO_DS), - "R_PPC64_ADDR24": reflect.ValueOf(elf.R_PPC64_ADDR24), - "R_PPC64_ADDR32": reflect.ValueOf(elf.R_PPC64_ADDR32), - "R_PPC64_ADDR64": reflect.ValueOf(elf.R_PPC64_ADDR64), - "R_PPC64_ADDR64_LOCAL": reflect.ValueOf(elf.R_PPC64_ADDR64_LOCAL), - "R_PPC64_DTPMOD64": reflect.ValueOf(elf.R_PPC64_DTPMOD64), - "R_PPC64_DTPREL16": reflect.ValueOf(elf.R_PPC64_DTPREL16), - "R_PPC64_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_DS), - "R_PPC64_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HA), - "R_PPC64_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_DTPREL16_HI), - "R_PPC64_DTPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGH), - "R_PPC64_DTPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHA), - "R_PPC64_DTPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHER), - "R_PPC64_DTPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHERA), - "R_PPC64_DTPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHEST), - "R_PPC64_DTPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHESTA), - "R_PPC64_DTPREL16_LO": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO), - "R_PPC64_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO_DS), - "R_PPC64_DTPREL64": reflect.ValueOf(elf.R_PPC64_DTPREL64), - "R_PPC64_ENTRY": reflect.ValueOf(elf.R_PPC64_ENTRY), - "R_PPC64_GOT16": reflect.ValueOf(elf.R_PPC64_GOT16), - "R_PPC64_GOT16_DS": reflect.ValueOf(elf.R_PPC64_GOT16_DS), - "R_PPC64_GOT16_HA": reflect.ValueOf(elf.R_PPC64_GOT16_HA), - "R_PPC64_GOT16_HI": reflect.ValueOf(elf.R_PPC64_GOT16_HI), - "R_PPC64_GOT16_LO": reflect.ValueOf(elf.R_PPC64_GOT16_LO), - "R_PPC64_GOT16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT16_LO_DS), - "R_PPC64_GOT_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_DS), - "R_PPC64_GOT_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HA), - "R_PPC64_GOT_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HI), - "R_PPC64_GOT_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_LO_DS), - "R_PPC64_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16), - "R_PPC64_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HA), - "R_PPC64_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HI), - "R_PPC64_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_LO), - "R_PPC64_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16), - "R_PPC64_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HA), - "R_PPC64_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HI), - "R_PPC64_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_LO), - "R_PPC64_GOT_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_DS), - "R_PPC64_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HA), - "R_PPC64_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HI), - "R_PPC64_GOT_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_LO_DS), - "R_PPC64_IRELATIVE": reflect.ValueOf(elf.R_PPC64_IRELATIVE), - "R_PPC64_JMP_IREL": reflect.ValueOf(elf.R_PPC64_JMP_IREL), - "R_PPC64_JMP_SLOT": reflect.ValueOf(elf.R_PPC64_JMP_SLOT), - "R_PPC64_NONE": reflect.ValueOf(elf.R_PPC64_NONE), - "R_PPC64_PLT16_LO_DS": reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS), - "R_PPC64_PLTGOT16": reflect.ValueOf(elf.R_PPC64_PLTGOT16), - "R_PPC64_PLTGOT16_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT16_DS), - "R_PPC64_PLTGOT16_HA": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HA), - "R_PPC64_PLTGOT16_HI": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HI), - "R_PPC64_PLTGOT16_LO": reflect.ValueOf(elf.R_PPC64_PLTGOT16_LO), - "R_PPC64_PLTGOT_LO_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT_LO_DS), - "R_PPC64_REL14": reflect.ValueOf(elf.R_PPC64_REL14), - "R_PPC64_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRNTAKEN), - "R_PPC64_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRTAKEN), - "R_PPC64_REL16": reflect.ValueOf(elf.R_PPC64_REL16), - "R_PPC64_REL16DX_HA": reflect.ValueOf(elf.R_PPC64_REL16DX_HA), - "R_PPC64_REL16_HA": reflect.ValueOf(elf.R_PPC64_REL16_HA), - "R_PPC64_REL16_HI": reflect.ValueOf(elf.R_PPC64_REL16_HI), - "R_PPC64_REL16_LO": reflect.ValueOf(elf.R_PPC64_REL16_LO), - "R_PPC64_REL24": reflect.ValueOf(elf.R_PPC64_REL24), - "R_PPC64_REL24_NOTOC": reflect.ValueOf(elf.R_PPC64_REL24_NOTOC), - "R_PPC64_REL32": reflect.ValueOf(elf.R_PPC64_REL32), - "R_PPC64_REL64": reflect.ValueOf(elf.R_PPC64_REL64), - "R_PPC64_SECTOFF_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_DS), - "R_PPC64_SECTOFF_LO_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_LO_DS), - "R_PPC64_TLS": reflect.ValueOf(elf.R_PPC64_TLS), - "R_PPC64_TLSGD": reflect.ValueOf(elf.R_PPC64_TLSGD), - "R_PPC64_TLSLD": reflect.ValueOf(elf.R_PPC64_TLSLD), - "R_PPC64_TOC": reflect.ValueOf(elf.R_PPC64_TOC), - "R_PPC64_TOC16": reflect.ValueOf(elf.R_PPC64_TOC16), - "R_PPC64_TOC16_DS": reflect.ValueOf(elf.R_PPC64_TOC16_DS), - "R_PPC64_TOC16_HA": reflect.ValueOf(elf.R_PPC64_TOC16_HA), - "R_PPC64_TOC16_HI": reflect.ValueOf(elf.R_PPC64_TOC16_HI), - "R_PPC64_TOC16_LO": reflect.ValueOf(elf.R_PPC64_TOC16_LO), - "R_PPC64_TOC16_LO_DS": reflect.ValueOf(elf.R_PPC64_TOC16_LO_DS), - "R_PPC64_TOCSAVE": reflect.ValueOf(elf.R_PPC64_TOCSAVE), - "R_PPC64_TPREL16": reflect.ValueOf(elf.R_PPC64_TPREL16), - "R_PPC64_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_DS), - "R_PPC64_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_TPREL16_HA), - "R_PPC64_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_TPREL16_HI), - "R_PPC64_TPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGH), - "R_PPC64_TPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHA), - "R_PPC64_TPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHER), - "R_PPC64_TPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHERA), - "R_PPC64_TPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHEST), - "R_PPC64_TPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHESTA), - "R_PPC64_TPREL16_LO": reflect.ValueOf(elf.R_PPC64_TPREL16_LO), - "R_PPC64_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_LO_DS), - "R_PPC64_TPREL64": reflect.ValueOf(elf.R_PPC64_TPREL64), - "R_PPC_ADDR14": reflect.ValueOf(elf.R_PPC_ADDR14), - "R_PPC_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRNTAKEN), - "R_PPC_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRTAKEN), - "R_PPC_ADDR16": reflect.ValueOf(elf.R_PPC_ADDR16), - "R_PPC_ADDR16_HA": reflect.ValueOf(elf.R_PPC_ADDR16_HA), - "R_PPC_ADDR16_HI": reflect.ValueOf(elf.R_PPC_ADDR16_HI), - "R_PPC_ADDR16_LO": reflect.ValueOf(elf.R_PPC_ADDR16_LO), - "R_PPC_ADDR24": reflect.ValueOf(elf.R_PPC_ADDR24), - "R_PPC_ADDR32": reflect.ValueOf(elf.R_PPC_ADDR32), - "R_PPC_COPY": reflect.ValueOf(elf.R_PPC_COPY), - "R_PPC_DTPMOD32": reflect.ValueOf(elf.R_PPC_DTPMOD32), - "R_PPC_DTPREL16": reflect.ValueOf(elf.R_PPC_DTPREL16), - "R_PPC_DTPREL16_HA": reflect.ValueOf(elf.R_PPC_DTPREL16_HA), - "R_PPC_DTPREL16_HI": reflect.ValueOf(elf.R_PPC_DTPREL16_HI), - "R_PPC_DTPREL16_LO": reflect.ValueOf(elf.R_PPC_DTPREL16_LO), - "R_PPC_DTPREL32": reflect.ValueOf(elf.R_PPC_DTPREL32), - "R_PPC_EMB_BIT_FLD": reflect.ValueOf(elf.R_PPC_EMB_BIT_FLD), - "R_PPC_EMB_MRKREF": reflect.ValueOf(elf.R_PPC_EMB_MRKREF), - "R_PPC_EMB_NADDR16": reflect.ValueOf(elf.R_PPC_EMB_NADDR16), - "R_PPC_EMB_NADDR16_HA": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HA), - "R_PPC_EMB_NADDR16_HI": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HI), - "R_PPC_EMB_NADDR16_LO": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_LO), - "R_PPC_EMB_NADDR32": reflect.ValueOf(elf.R_PPC_EMB_NADDR32), - "R_PPC_EMB_RELSDA": reflect.ValueOf(elf.R_PPC_EMB_RELSDA), - "R_PPC_EMB_RELSEC16": reflect.ValueOf(elf.R_PPC_EMB_RELSEC16), - "R_PPC_EMB_RELST_HA": reflect.ValueOf(elf.R_PPC_EMB_RELST_HA), - "R_PPC_EMB_RELST_HI": reflect.ValueOf(elf.R_PPC_EMB_RELST_HI), - "R_PPC_EMB_RELST_LO": reflect.ValueOf(elf.R_PPC_EMB_RELST_LO), - "R_PPC_EMB_SDA21": reflect.ValueOf(elf.R_PPC_EMB_SDA21), - "R_PPC_EMB_SDA2I16": reflect.ValueOf(elf.R_PPC_EMB_SDA2I16), - "R_PPC_EMB_SDA2REL": reflect.ValueOf(elf.R_PPC_EMB_SDA2REL), - "R_PPC_EMB_SDAI16": reflect.ValueOf(elf.R_PPC_EMB_SDAI16), - "R_PPC_GLOB_DAT": reflect.ValueOf(elf.R_PPC_GLOB_DAT), - "R_PPC_GOT16": reflect.ValueOf(elf.R_PPC_GOT16), - "R_PPC_GOT16_HA": reflect.ValueOf(elf.R_PPC_GOT16_HA), - "R_PPC_GOT16_HI": reflect.ValueOf(elf.R_PPC_GOT16_HI), - "R_PPC_GOT16_LO": reflect.ValueOf(elf.R_PPC_GOT16_LO), - "R_PPC_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16), - "R_PPC_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HA), - "R_PPC_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HI), - "R_PPC_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_LO), - "R_PPC_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16), - "R_PPC_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HA), - "R_PPC_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HI), - "R_PPC_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_LO), - "R_PPC_GOT_TPREL16": reflect.ValueOf(elf.R_PPC_GOT_TPREL16), - "R_PPC_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HA), - "R_PPC_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HI), - "R_PPC_GOT_TPREL16_LO": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_LO), - "R_PPC_JMP_SLOT": reflect.ValueOf(elf.R_PPC_JMP_SLOT), - "R_PPC_LOCAL24PC": reflect.ValueOf(elf.R_PPC_LOCAL24PC), - "R_PPC_NONE": reflect.ValueOf(elf.R_PPC_NONE), - "R_PPC_PLT16_HA": reflect.ValueOf(elf.R_PPC_PLT16_HA), - "R_PPC_PLT16_HI": reflect.ValueOf(elf.R_PPC_PLT16_HI), - "R_PPC_PLT16_LO": reflect.ValueOf(elf.R_PPC_PLT16_LO), - "R_PPC_PLT32": reflect.ValueOf(elf.R_PPC_PLT32), - "R_PPC_PLTREL24": reflect.ValueOf(elf.R_PPC_PLTREL24), - "R_PPC_PLTREL32": reflect.ValueOf(elf.R_PPC_PLTREL32), - "R_PPC_REL14": reflect.ValueOf(elf.R_PPC_REL14), - "R_PPC_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRNTAKEN), - "R_PPC_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRTAKEN), - "R_PPC_REL24": reflect.ValueOf(elf.R_PPC_REL24), - "R_PPC_REL32": reflect.ValueOf(elf.R_PPC_REL32), - "R_PPC_RELATIVE": reflect.ValueOf(elf.R_PPC_RELATIVE), - "R_PPC_SDAREL16": reflect.ValueOf(elf.R_PPC_SDAREL16), - "R_PPC_SECTOFF": reflect.ValueOf(elf.R_PPC_SECTOFF), - "R_PPC_SECTOFF_HA": reflect.ValueOf(elf.R_PPC_SECTOFF_HA), - "R_PPC_SECTOFF_HI": reflect.ValueOf(elf.R_PPC_SECTOFF_HI), - "R_PPC_SECTOFF_LO": reflect.ValueOf(elf.R_PPC_SECTOFF_LO), - "R_PPC_TLS": reflect.ValueOf(elf.R_PPC_TLS), - "R_PPC_TPREL16": reflect.ValueOf(elf.R_PPC_TPREL16), - "R_PPC_TPREL16_HA": reflect.ValueOf(elf.R_PPC_TPREL16_HA), - "R_PPC_TPREL16_HI": reflect.ValueOf(elf.R_PPC_TPREL16_HI), - "R_PPC_TPREL16_LO": reflect.ValueOf(elf.R_PPC_TPREL16_LO), - "R_PPC_TPREL32": reflect.ValueOf(elf.R_PPC_TPREL32), - "R_PPC_UADDR16": reflect.ValueOf(elf.R_PPC_UADDR16), - "R_PPC_UADDR32": reflect.ValueOf(elf.R_PPC_UADDR32), - "R_RISCV_32": reflect.ValueOf(elf.R_RISCV_32), - "R_RISCV_32_PCREL": reflect.ValueOf(elf.R_RISCV_32_PCREL), - "R_RISCV_64": reflect.ValueOf(elf.R_RISCV_64), - "R_RISCV_ADD16": reflect.ValueOf(elf.R_RISCV_ADD16), - "R_RISCV_ADD32": reflect.ValueOf(elf.R_RISCV_ADD32), - "R_RISCV_ADD64": reflect.ValueOf(elf.R_RISCV_ADD64), - "R_RISCV_ADD8": reflect.ValueOf(elf.R_RISCV_ADD8), - "R_RISCV_ALIGN": reflect.ValueOf(elf.R_RISCV_ALIGN), - "R_RISCV_BRANCH": reflect.ValueOf(elf.R_RISCV_BRANCH), - "R_RISCV_CALL": reflect.ValueOf(elf.R_RISCV_CALL), - "R_RISCV_CALL_PLT": reflect.ValueOf(elf.R_RISCV_CALL_PLT), - "R_RISCV_COPY": reflect.ValueOf(elf.R_RISCV_COPY), - "R_RISCV_GNU_VTENTRY": reflect.ValueOf(elf.R_RISCV_GNU_VTENTRY), - "R_RISCV_GNU_VTINHERIT": reflect.ValueOf(elf.R_RISCV_GNU_VTINHERIT), - "R_RISCV_GOT_HI20": reflect.ValueOf(elf.R_RISCV_GOT_HI20), - "R_RISCV_GPREL_I": reflect.ValueOf(elf.R_RISCV_GPREL_I), - "R_RISCV_GPREL_S": reflect.ValueOf(elf.R_RISCV_GPREL_S), - "R_RISCV_HI20": reflect.ValueOf(elf.R_RISCV_HI20), - "R_RISCV_JAL": reflect.ValueOf(elf.R_RISCV_JAL), - "R_RISCV_JUMP_SLOT": reflect.ValueOf(elf.R_RISCV_JUMP_SLOT), - "R_RISCV_LO12_I": reflect.ValueOf(elf.R_RISCV_LO12_I), - "R_RISCV_LO12_S": reflect.ValueOf(elf.R_RISCV_LO12_S), - "R_RISCV_NONE": reflect.ValueOf(elf.R_RISCV_NONE), - "R_RISCV_PCREL_HI20": reflect.ValueOf(elf.R_RISCV_PCREL_HI20), - "R_RISCV_PCREL_LO12_I": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_I), - "R_RISCV_PCREL_LO12_S": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_S), - "R_RISCV_RELATIVE": reflect.ValueOf(elf.R_RISCV_RELATIVE), - "R_RISCV_RELAX": reflect.ValueOf(elf.R_RISCV_RELAX), - "R_RISCV_RVC_BRANCH": reflect.ValueOf(elf.R_RISCV_RVC_BRANCH), - "R_RISCV_RVC_JUMP": reflect.ValueOf(elf.R_RISCV_RVC_JUMP), - "R_RISCV_RVC_LUI": reflect.ValueOf(elf.R_RISCV_RVC_LUI), - "R_RISCV_SET16": reflect.ValueOf(elf.R_RISCV_SET16), - "R_RISCV_SET32": reflect.ValueOf(elf.R_RISCV_SET32), - "R_RISCV_SET6": reflect.ValueOf(elf.R_RISCV_SET6), - "R_RISCV_SET8": reflect.ValueOf(elf.R_RISCV_SET8), - "R_RISCV_SUB16": reflect.ValueOf(elf.R_RISCV_SUB16), - "R_RISCV_SUB32": reflect.ValueOf(elf.R_RISCV_SUB32), - "R_RISCV_SUB6": reflect.ValueOf(elf.R_RISCV_SUB6), - "R_RISCV_SUB64": reflect.ValueOf(elf.R_RISCV_SUB64), - "R_RISCV_SUB8": reflect.ValueOf(elf.R_RISCV_SUB8), - "R_RISCV_TLS_DTPMOD32": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD32), - "R_RISCV_TLS_DTPMOD64": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD64), - "R_RISCV_TLS_DTPREL32": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL32), - "R_RISCV_TLS_DTPREL64": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL64), - "R_RISCV_TLS_GD_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GD_HI20), - "R_RISCV_TLS_GOT_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GOT_HI20), - "R_RISCV_TLS_TPREL32": reflect.ValueOf(elf.R_RISCV_TLS_TPREL32), - "R_RISCV_TLS_TPREL64": reflect.ValueOf(elf.R_RISCV_TLS_TPREL64), - "R_RISCV_TPREL_ADD": reflect.ValueOf(elf.R_RISCV_TPREL_ADD), - "R_RISCV_TPREL_HI20": reflect.ValueOf(elf.R_RISCV_TPREL_HI20), - "R_RISCV_TPREL_I": reflect.ValueOf(elf.R_RISCV_TPREL_I), - "R_RISCV_TPREL_LO12_I": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_I), - "R_RISCV_TPREL_LO12_S": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_S), - "R_RISCV_TPREL_S": reflect.ValueOf(elf.R_RISCV_TPREL_S), - "R_SPARC_10": reflect.ValueOf(elf.R_SPARC_10), - "R_SPARC_11": reflect.ValueOf(elf.R_SPARC_11), - "R_SPARC_13": reflect.ValueOf(elf.R_SPARC_13), - "R_SPARC_16": reflect.ValueOf(elf.R_SPARC_16), - "R_SPARC_22": reflect.ValueOf(elf.R_SPARC_22), - "R_SPARC_32": reflect.ValueOf(elf.R_SPARC_32), - "R_SPARC_5": reflect.ValueOf(elf.R_SPARC_5), - "R_SPARC_6": reflect.ValueOf(elf.R_SPARC_6), - "R_SPARC_64": reflect.ValueOf(elf.R_SPARC_64), - "R_SPARC_7": reflect.ValueOf(elf.R_SPARC_7), - "R_SPARC_8": reflect.ValueOf(elf.R_SPARC_8), - "R_SPARC_COPY": reflect.ValueOf(elf.R_SPARC_COPY), - "R_SPARC_DISP16": reflect.ValueOf(elf.R_SPARC_DISP16), - "R_SPARC_DISP32": reflect.ValueOf(elf.R_SPARC_DISP32), - "R_SPARC_DISP64": reflect.ValueOf(elf.R_SPARC_DISP64), - "R_SPARC_DISP8": reflect.ValueOf(elf.R_SPARC_DISP8), - "R_SPARC_GLOB_DAT": reflect.ValueOf(elf.R_SPARC_GLOB_DAT), - "R_SPARC_GLOB_JMP": reflect.ValueOf(elf.R_SPARC_GLOB_JMP), - "R_SPARC_GOT10": reflect.ValueOf(elf.R_SPARC_GOT10), - "R_SPARC_GOT13": reflect.ValueOf(elf.R_SPARC_GOT13), - "R_SPARC_GOT22": reflect.ValueOf(elf.R_SPARC_GOT22), - "R_SPARC_H44": reflect.ValueOf(elf.R_SPARC_H44), - "R_SPARC_HH22": reflect.ValueOf(elf.R_SPARC_HH22), - "R_SPARC_HI22": reflect.ValueOf(elf.R_SPARC_HI22), - "R_SPARC_HIPLT22": reflect.ValueOf(elf.R_SPARC_HIPLT22), - "R_SPARC_HIX22": reflect.ValueOf(elf.R_SPARC_HIX22), - "R_SPARC_HM10": reflect.ValueOf(elf.R_SPARC_HM10), - "R_SPARC_JMP_SLOT": reflect.ValueOf(elf.R_SPARC_JMP_SLOT), - "R_SPARC_L44": reflect.ValueOf(elf.R_SPARC_L44), - "R_SPARC_LM22": reflect.ValueOf(elf.R_SPARC_LM22), - "R_SPARC_LO10": reflect.ValueOf(elf.R_SPARC_LO10), - "R_SPARC_LOPLT10": reflect.ValueOf(elf.R_SPARC_LOPLT10), - "R_SPARC_LOX10": reflect.ValueOf(elf.R_SPARC_LOX10), - "R_SPARC_M44": reflect.ValueOf(elf.R_SPARC_M44), - "R_SPARC_NONE": reflect.ValueOf(elf.R_SPARC_NONE), - "R_SPARC_OLO10": reflect.ValueOf(elf.R_SPARC_OLO10), - "R_SPARC_PC10": reflect.ValueOf(elf.R_SPARC_PC10), - "R_SPARC_PC22": reflect.ValueOf(elf.R_SPARC_PC22), - "R_SPARC_PCPLT10": reflect.ValueOf(elf.R_SPARC_PCPLT10), - "R_SPARC_PCPLT22": reflect.ValueOf(elf.R_SPARC_PCPLT22), - "R_SPARC_PCPLT32": reflect.ValueOf(elf.R_SPARC_PCPLT32), - "R_SPARC_PC_HH22": reflect.ValueOf(elf.R_SPARC_PC_HH22), - "R_SPARC_PC_HM10": reflect.ValueOf(elf.R_SPARC_PC_HM10), - "R_SPARC_PC_LM22": reflect.ValueOf(elf.R_SPARC_PC_LM22), - "R_SPARC_PLT32": reflect.ValueOf(elf.R_SPARC_PLT32), - "R_SPARC_PLT64": reflect.ValueOf(elf.R_SPARC_PLT64), - "R_SPARC_REGISTER": reflect.ValueOf(elf.R_SPARC_REGISTER), - "R_SPARC_RELATIVE": reflect.ValueOf(elf.R_SPARC_RELATIVE), - "R_SPARC_UA16": reflect.ValueOf(elf.R_SPARC_UA16), - "R_SPARC_UA32": reflect.ValueOf(elf.R_SPARC_UA32), - "R_SPARC_UA64": reflect.ValueOf(elf.R_SPARC_UA64), - "R_SPARC_WDISP16": reflect.ValueOf(elf.R_SPARC_WDISP16), - "R_SPARC_WDISP19": reflect.ValueOf(elf.R_SPARC_WDISP19), - "R_SPARC_WDISP22": reflect.ValueOf(elf.R_SPARC_WDISP22), - "R_SPARC_WDISP30": reflect.ValueOf(elf.R_SPARC_WDISP30), - "R_SPARC_WPLT30": reflect.ValueOf(elf.R_SPARC_WPLT30), - "R_SYM32": reflect.ValueOf(elf.R_SYM32), - "R_SYM64": reflect.ValueOf(elf.R_SYM64), - "R_TYPE32": reflect.ValueOf(elf.R_TYPE32), - "R_TYPE64": reflect.ValueOf(elf.R_TYPE64), - "R_X86_64_16": reflect.ValueOf(elf.R_X86_64_16), - "R_X86_64_32": reflect.ValueOf(elf.R_X86_64_32), - "R_X86_64_32S": reflect.ValueOf(elf.R_X86_64_32S), - "R_X86_64_64": reflect.ValueOf(elf.R_X86_64_64), - "R_X86_64_8": reflect.ValueOf(elf.R_X86_64_8), - "R_X86_64_COPY": reflect.ValueOf(elf.R_X86_64_COPY), - "R_X86_64_DTPMOD64": reflect.ValueOf(elf.R_X86_64_DTPMOD64), - "R_X86_64_DTPOFF32": reflect.ValueOf(elf.R_X86_64_DTPOFF32), - "R_X86_64_DTPOFF64": reflect.ValueOf(elf.R_X86_64_DTPOFF64), - "R_X86_64_GLOB_DAT": reflect.ValueOf(elf.R_X86_64_GLOB_DAT), - "R_X86_64_GOT32": reflect.ValueOf(elf.R_X86_64_GOT32), - "R_X86_64_GOT64": reflect.ValueOf(elf.R_X86_64_GOT64), - "R_X86_64_GOTOFF64": reflect.ValueOf(elf.R_X86_64_GOTOFF64), - "R_X86_64_GOTPC32": reflect.ValueOf(elf.R_X86_64_GOTPC32), - "R_X86_64_GOTPC32_TLSDESC": reflect.ValueOf(elf.R_X86_64_GOTPC32_TLSDESC), - "R_X86_64_GOTPC64": reflect.ValueOf(elf.R_X86_64_GOTPC64), - "R_X86_64_GOTPCREL": reflect.ValueOf(elf.R_X86_64_GOTPCREL), - "R_X86_64_GOTPCREL64": reflect.ValueOf(elf.R_X86_64_GOTPCREL64), - "R_X86_64_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_GOTPCRELX), - "R_X86_64_GOTPLT64": reflect.ValueOf(elf.R_X86_64_GOTPLT64), - "R_X86_64_GOTTPOFF": reflect.ValueOf(elf.R_X86_64_GOTTPOFF), - "R_X86_64_IRELATIVE": reflect.ValueOf(elf.R_X86_64_IRELATIVE), - "R_X86_64_JMP_SLOT": reflect.ValueOf(elf.R_X86_64_JMP_SLOT), - "R_X86_64_NONE": reflect.ValueOf(elf.R_X86_64_NONE), - "R_X86_64_PC16": reflect.ValueOf(elf.R_X86_64_PC16), - "R_X86_64_PC32": reflect.ValueOf(elf.R_X86_64_PC32), - "R_X86_64_PC32_BND": reflect.ValueOf(elf.R_X86_64_PC32_BND), - "R_X86_64_PC64": reflect.ValueOf(elf.R_X86_64_PC64), - "R_X86_64_PC8": reflect.ValueOf(elf.R_X86_64_PC8), - "R_X86_64_PLT32": reflect.ValueOf(elf.R_X86_64_PLT32), - "R_X86_64_PLT32_BND": reflect.ValueOf(elf.R_X86_64_PLT32_BND), - "R_X86_64_PLTOFF64": reflect.ValueOf(elf.R_X86_64_PLTOFF64), - "R_X86_64_RELATIVE": reflect.ValueOf(elf.R_X86_64_RELATIVE), - "R_X86_64_RELATIVE64": reflect.ValueOf(elf.R_X86_64_RELATIVE64), - "R_X86_64_REX_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_REX_GOTPCRELX), - "R_X86_64_SIZE32": reflect.ValueOf(elf.R_X86_64_SIZE32), - "R_X86_64_SIZE64": reflect.ValueOf(elf.R_X86_64_SIZE64), - "R_X86_64_TLSDESC": reflect.ValueOf(elf.R_X86_64_TLSDESC), - "R_X86_64_TLSDESC_CALL": reflect.ValueOf(elf.R_X86_64_TLSDESC_CALL), - "R_X86_64_TLSGD": reflect.ValueOf(elf.R_X86_64_TLSGD), - "R_X86_64_TLSLD": reflect.ValueOf(elf.R_X86_64_TLSLD), - "R_X86_64_TPOFF32": reflect.ValueOf(elf.R_X86_64_TPOFF32), - "R_X86_64_TPOFF64": reflect.ValueOf(elf.R_X86_64_TPOFF64), - "SHF_ALLOC": reflect.ValueOf(elf.SHF_ALLOC), - "SHF_COMPRESSED": reflect.ValueOf(elf.SHF_COMPRESSED), - "SHF_EXECINSTR": reflect.ValueOf(elf.SHF_EXECINSTR), - "SHF_GROUP": reflect.ValueOf(elf.SHF_GROUP), - "SHF_INFO_LINK": reflect.ValueOf(elf.SHF_INFO_LINK), - "SHF_LINK_ORDER": reflect.ValueOf(elf.SHF_LINK_ORDER), - "SHF_MASKOS": reflect.ValueOf(elf.SHF_MASKOS), - "SHF_MASKPROC": reflect.ValueOf(elf.SHF_MASKPROC), - "SHF_MERGE": reflect.ValueOf(elf.SHF_MERGE), - "SHF_OS_NONCONFORMING": reflect.ValueOf(elf.SHF_OS_NONCONFORMING), - "SHF_STRINGS": reflect.ValueOf(elf.SHF_STRINGS), - "SHF_TLS": reflect.ValueOf(elf.SHF_TLS), - "SHF_WRITE": reflect.ValueOf(elf.SHF_WRITE), - "SHN_ABS": reflect.ValueOf(elf.SHN_ABS), - "SHN_COMMON": reflect.ValueOf(elf.SHN_COMMON), - "SHN_HIOS": reflect.ValueOf(elf.SHN_HIOS), - "SHN_HIPROC": reflect.ValueOf(elf.SHN_HIPROC), - "SHN_HIRESERVE": reflect.ValueOf(elf.SHN_HIRESERVE), - "SHN_LOOS": reflect.ValueOf(elf.SHN_LOOS), - "SHN_LOPROC": reflect.ValueOf(elf.SHN_LOPROC), - "SHN_LORESERVE": reflect.ValueOf(elf.SHN_LORESERVE), - "SHN_UNDEF": reflect.ValueOf(elf.SHN_UNDEF), - "SHN_XINDEX": reflect.ValueOf(elf.SHN_XINDEX), - "SHT_DYNAMIC": reflect.ValueOf(elf.SHT_DYNAMIC), - "SHT_DYNSYM": reflect.ValueOf(elf.SHT_DYNSYM), - "SHT_FINI_ARRAY": reflect.ValueOf(elf.SHT_FINI_ARRAY), - "SHT_GNU_ATTRIBUTES": reflect.ValueOf(elf.SHT_GNU_ATTRIBUTES), - "SHT_GNU_HASH": reflect.ValueOf(elf.SHT_GNU_HASH), - "SHT_GNU_LIBLIST": reflect.ValueOf(elf.SHT_GNU_LIBLIST), - "SHT_GNU_VERDEF": reflect.ValueOf(elf.SHT_GNU_VERDEF), - "SHT_GNU_VERNEED": reflect.ValueOf(elf.SHT_GNU_VERNEED), - "SHT_GNU_VERSYM": reflect.ValueOf(elf.SHT_GNU_VERSYM), - "SHT_GROUP": reflect.ValueOf(elf.SHT_GROUP), - "SHT_HASH": reflect.ValueOf(elf.SHT_HASH), - "SHT_HIOS": reflect.ValueOf(elf.SHT_HIOS), - "SHT_HIPROC": reflect.ValueOf(elf.SHT_HIPROC), - "SHT_HIUSER": reflect.ValueOf(elf.SHT_HIUSER), - "SHT_INIT_ARRAY": reflect.ValueOf(elf.SHT_INIT_ARRAY), - "SHT_LOOS": reflect.ValueOf(elf.SHT_LOOS), - "SHT_LOPROC": reflect.ValueOf(elf.SHT_LOPROC), - "SHT_LOUSER": reflect.ValueOf(elf.SHT_LOUSER), - "SHT_NOBITS": reflect.ValueOf(elf.SHT_NOBITS), - "SHT_NOTE": reflect.ValueOf(elf.SHT_NOTE), - "SHT_NULL": reflect.ValueOf(elf.SHT_NULL), - "SHT_PREINIT_ARRAY": reflect.ValueOf(elf.SHT_PREINIT_ARRAY), - "SHT_PROGBITS": reflect.ValueOf(elf.SHT_PROGBITS), - "SHT_REL": reflect.ValueOf(elf.SHT_REL), - "SHT_RELA": reflect.ValueOf(elf.SHT_RELA), - "SHT_SHLIB": reflect.ValueOf(elf.SHT_SHLIB), - "SHT_STRTAB": reflect.ValueOf(elf.SHT_STRTAB), - "SHT_SYMTAB": reflect.ValueOf(elf.SHT_SYMTAB), - "SHT_SYMTAB_SHNDX": reflect.ValueOf(elf.SHT_SYMTAB_SHNDX), - "STB_GLOBAL": reflect.ValueOf(elf.STB_GLOBAL), - "STB_HIOS": reflect.ValueOf(elf.STB_HIOS), - "STB_HIPROC": reflect.ValueOf(elf.STB_HIPROC), - "STB_LOCAL": reflect.ValueOf(elf.STB_LOCAL), - "STB_LOOS": reflect.ValueOf(elf.STB_LOOS), - "STB_LOPROC": reflect.ValueOf(elf.STB_LOPROC), - "STB_WEAK": reflect.ValueOf(elf.STB_WEAK), - "STT_COMMON": reflect.ValueOf(elf.STT_COMMON), - "STT_FILE": reflect.ValueOf(elf.STT_FILE), - "STT_FUNC": reflect.ValueOf(elf.STT_FUNC), - "STT_HIOS": reflect.ValueOf(elf.STT_HIOS), - "STT_HIPROC": reflect.ValueOf(elf.STT_HIPROC), - "STT_LOOS": reflect.ValueOf(elf.STT_LOOS), - "STT_LOPROC": reflect.ValueOf(elf.STT_LOPROC), - "STT_NOTYPE": reflect.ValueOf(elf.STT_NOTYPE), - "STT_OBJECT": reflect.ValueOf(elf.STT_OBJECT), - "STT_SECTION": reflect.ValueOf(elf.STT_SECTION), - "STT_TLS": reflect.ValueOf(elf.STT_TLS), - "STV_DEFAULT": reflect.ValueOf(elf.STV_DEFAULT), - "STV_HIDDEN": reflect.ValueOf(elf.STV_HIDDEN), - "STV_INTERNAL": reflect.ValueOf(elf.STV_INTERNAL), - "STV_PROTECTED": reflect.ValueOf(elf.STV_PROTECTED), - "ST_BIND": reflect.ValueOf(elf.ST_BIND), - "ST_INFO": reflect.ValueOf(elf.ST_INFO), - "ST_TYPE": reflect.ValueOf(elf.ST_TYPE), - "ST_VISIBILITY": reflect.ValueOf(elf.ST_VISIBILITY), - "Sym32Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Sym64Size": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - - // type definitions - "Chdr32": reflect.ValueOf((*elf.Chdr32)(nil)), - "Chdr64": reflect.ValueOf((*elf.Chdr64)(nil)), - "Class": reflect.ValueOf((*elf.Class)(nil)), - "CompressionType": reflect.ValueOf((*elf.CompressionType)(nil)), - "Data": reflect.ValueOf((*elf.Data)(nil)), - "Dyn32": reflect.ValueOf((*elf.Dyn32)(nil)), - "Dyn64": reflect.ValueOf((*elf.Dyn64)(nil)), - "DynFlag": reflect.ValueOf((*elf.DynFlag)(nil)), - "DynTag": reflect.ValueOf((*elf.DynTag)(nil)), - "File": reflect.ValueOf((*elf.File)(nil)), - "FileHeader": reflect.ValueOf((*elf.FileHeader)(nil)), - "FormatError": reflect.ValueOf((*elf.FormatError)(nil)), - "Header32": reflect.ValueOf((*elf.Header32)(nil)), - "Header64": reflect.ValueOf((*elf.Header64)(nil)), - "ImportedSymbol": reflect.ValueOf((*elf.ImportedSymbol)(nil)), - "Machine": reflect.ValueOf((*elf.Machine)(nil)), - "NType": reflect.ValueOf((*elf.NType)(nil)), - "OSABI": reflect.ValueOf((*elf.OSABI)(nil)), - "Prog": reflect.ValueOf((*elf.Prog)(nil)), - "Prog32": reflect.ValueOf((*elf.Prog32)(nil)), - "Prog64": reflect.ValueOf((*elf.Prog64)(nil)), - "ProgFlag": reflect.ValueOf((*elf.ProgFlag)(nil)), - "ProgHeader": reflect.ValueOf((*elf.ProgHeader)(nil)), - "ProgType": reflect.ValueOf((*elf.ProgType)(nil)), - "R_386": reflect.ValueOf((*elf.R_386)(nil)), - "R_390": reflect.ValueOf((*elf.R_390)(nil)), - "R_AARCH64": reflect.ValueOf((*elf.R_AARCH64)(nil)), - "R_ALPHA": reflect.ValueOf((*elf.R_ALPHA)(nil)), - "R_ARM": reflect.ValueOf((*elf.R_ARM)(nil)), - "R_MIPS": reflect.ValueOf((*elf.R_MIPS)(nil)), - "R_PPC": reflect.ValueOf((*elf.R_PPC)(nil)), - "R_PPC64": reflect.ValueOf((*elf.R_PPC64)(nil)), - "R_RISCV": reflect.ValueOf((*elf.R_RISCV)(nil)), - "R_SPARC": reflect.ValueOf((*elf.R_SPARC)(nil)), - "R_X86_64": reflect.ValueOf((*elf.R_X86_64)(nil)), - "Rel32": reflect.ValueOf((*elf.Rel32)(nil)), - "Rel64": reflect.ValueOf((*elf.Rel64)(nil)), - "Rela32": reflect.ValueOf((*elf.Rela32)(nil)), - "Rela64": reflect.ValueOf((*elf.Rela64)(nil)), - "Section": reflect.ValueOf((*elf.Section)(nil)), - "Section32": reflect.ValueOf((*elf.Section32)(nil)), - "Section64": reflect.ValueOf((*elf.Section64)(nil)), - "SectionFlag": reflect.ValueOf((*elf.SectionFlag)(nil)), - "SectionHeader": reflect.ValueOf((*elf.SectionHeader)(nil)), - "SectionIndex": reflect.ValueOf((*elf.SectionIndex)(nil)), - "SectionType": reflect.ValueOf((*elf.SectionType)(nil)), - "Sym32": reflect.ValueOf((*elf.Sym32)(nil)), - "Sym64": reflect.ValueOf((*elf.Sym64)(nil)), - "SymBind": reflect.ValueOf((*elf.SymBind)(nil)), - "SymType": reflect.ValueOf((*elf.SymType)(nil)), - "SymVis": reflect.ValueOf((*elf.SymVis)(nil)), - "Symbol": reflect.ValueOf((*elf.Symbol)(nil)), - "Type": reflect.ValueOf((*elf.Type)(nil)), - "Version": reflect.ValueOf((*elf.Version)(nil)), - } -} diff --git a/stdlib/go1_16_debug_gosym.go b/stdlib/go1_16_debug_gosym.go deleted file mode 100644 index 82cbcc047..000000000 --- a/stdlib/go1_16_debug_gosym.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "debug/gosym" - "reflect" -) - -func init() { - Symbols["debug/gosym/gosym"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewLineTable": reflect.ValueOf(gosym.NewLineTable), - "NewTable": reflect.ValueOf(gosym.NewTable), - - // type definitions - "DecodingError": reflect.ValueOf((*gosym.DecodingError)(nil)), - "Func": reflect.ValueOf((*gosym.Func)(nil)), - "LineTable": reflect.ValueOf((*gosym.LineTable)(nil)), - "Obj": reflect.ValueOf((*gosym.Obj)(nil)), - "Sym": reflect.ValueOf((*gosym.Sym)(nil)), - "Table": reflect.ValueOf((*gosym.Table)(nil)), - "UnknownFileError": reflect.ValueOf((*gosym.UnknownFileError)(nil)), - "UnknownLineError": reflect.ValueOf((*gosym.UnknownLineError)(nil)), - } -} diff --git a/stdlib/go1_16_debug_macho.go b/stdlib/go1_16_debug_macho.go deleted file mode 100644 index d75206a75..000000000 --- a/stdlib/go1_16_debug_macho.go +++ /dev/null @@ -1,159 +0,0 @@ -// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "debug/macho" - "reflect" -) - -func init() { - Symbols["debug/macho/macho"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ARM64_RELOC_ADDEND": reflect.ValueOf(macho.ARM64_RELOC_ADDEND), - "ARM64_RELOC_BRANCH26": reflect.ValueOf(macho.ARM64_RELOC_BRANCH26), - "ARM64_RELOC_GOT_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGE21), - "ARM64_RELOC_GOT_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGEOFF12), - "ARM64_RELOC_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_PAGE21), - "ARM64_RELOC_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_PAGEOFF12), - "ARM64_RELOC_POINTER_TO_GOT": reflect.ValueOf(macho.ARM64_RELOC_POINTER_TO_GOT), - "ARM64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.ARM64_RELOC_SUBTRACTOR), - "ARM64_RELOC_TLVP_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGE21), - "ARM64_RELOC_TLVP_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGEOFF12), - "ARM64_RELOC_UNSIGNED": reflect.ValueOf(macho.ARM64_RELOC_UNSIGNED), - "ARM_RELOC_BR24": reflect.ValueOf(macho.ARM_RELOC_BR24), - "ARM_RELOC_HALF": reflect.ValueOf(macho.ARM_RELOC_HALF), - "ARM_RELOC_HALF_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_HALF_SECTDIFF), - "ARM_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_LOCAL_SECTDIFF), - "ARM_RELOC_PAIR": reflect.ValueOf(macho.ARM_RELOC_PAIR), - "ARM_RELOC_PB_LA_PTR": reflect.ValueOf(macho.ARM_RELOC_PB_LA_PTR), - "ARM_RELOC_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_SECTDIFF), - "ARM_RELOC_VANILLA": reflect.ValueOf(macho.ARM_RELOC_VANILLA), - "ARM_THUMB_32BIT_BRANCH": reflect.ValueOf(macho.ARM_THUMB_32BIT_BRANCH), - "ARM_THUMB_RELOC_BR22": reflect.ValueOf(macho.ARM_THUMB_RELOC_BR22), - "Cpu386": reflect.ValueOf(macho.Cpu386), - "CpuAmd64": reflect.ValueOf(macho.CpuAmd64), - "CpuArm": reflect.ValueOf(macho.CpuArm), - "CpuArm64": reflect.ValueOf(macho.CpuArm64), - "CpuPpc": reflect.ValueOf(macho.CpuPpc), - "CpuPpc64": reflect.ValueOf(macho.CpuPpc64), - "ErrNotFat": reflect.ValueOf(&macho.ErrNotFat).Elem(), - "FlagAllModsBound": reflect.ValueOf(macho.FlagAllModsBound), - "FlagAllowStackExecution": reflect.ValueOf(macho.FlagAllowStackExecution), - "FlagAppExtensionSafe": reflect.ValueOf(macho.FlagAppExtensionSafe), - "FlagBindAtLoad": reflect.ValueOf(macho.FlagBindAtLoad), - "FlagBindsToWeak": reflect.ValueOf(macho.FlagBindsToWeak), - "FlagCanonical": reflect.ValueOf(macho.FlagCanonical), - "FlagDeadStrippableDylib": reflect.ValueOf(macho.FlagDeadStrippableDylib), - "FlagDyldLink": reflect.ValueOf(macho.FlagDyldLink), - "FlagForceFlat": reflect.ValueOf(macho.FlagForceFlat), - "FlagHasTLVDescriptors": reflect.ValueOf(macho.FlagHasTLVDescriptors), - "FlagIncrLink": reflect.ValueOf(macho.FlagIncrLink), - "FlagLazyInit": reflect.ValueOf(macho.FlagLazyInit), - "FlagNoFixPrebinding": reflect.ValueOf(macho.FlagNoFixPrebinding), - "FlagNoHeapExecution": reflect.ValueOf(macho.FlagNoHeapExecution), - "FlagNoMultiDefs": reflect.ValueOf(macho.FlagNoMultiDefs), - "FlagNoReexportedDylibs": reflect.ValueOf(macho.FlagNoReexportedDylibs), - "FlagNoUndefs": reflect.ValueOf(macho.FlagNoUndefs), - "FlagPIE": reflect.ValueOf(macho.FlagPIE), - "FlagPrebindable": reflect.ValueOf(macho.FlagPrebindable), - "FlagPrebound": reflect.ValueOf(macho.FlagPrebound), - "FlagRootSafe": reflect.ValueOf(macho.FlagRootSafe), - "FlagSetuidSafe": reflect.ValueOf(macho.FlagSetuidSafe), - "FlagSplitSegs": reflect.ValueOf(macho.FlagSplitSegs), - "FlagSubsectionsViaSymbols": reflect.ValueOf(macho.FlagSubsectionsViaSymbols), - "FlagTwoLevel": reflect.ValueOf(macho.FlagTwoLevel), - "FlagWeakDefines": reflect.ValueOf(macho.FlagWeakDefines), - "GENERIC_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_LOCAL_SECTDIFF), - "GENERIC_RELOC_PAIR": reflect.ValueOf(macho.GENERIC_RELOC_PAIR), - "GENERIC_RELOC_PB_LA_PTR": reflect.ValueOf(macho.GENERIC_RELOC_PB_LA_PTR), - "GENERIC_RELOC_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_SECTDIFF), - "GENERIC_RELOC_TLV": reflect.ValueOf(macho.GENERIC_RELOC_TLV), - "GENERIC_RELOC_VANILLA": reflect.ValueOf(macho.GENERIC_RELOC_VANILLA), - "LoadCmdDylib": reflect.ValueOf(macho.LoadCmdDylib), - "LoadCmdDylinker": reflect.ValueOf(macho.LoadCmdDylinker), - "LoadCmdDysymtab": reflect.ValueOf(macho.LoadCmdDysymtab), - "LoadCmdRpath": reflect.ValueOf(macho.LoadCmdRpath), - "LoadCmdSegment": reflect.ValueOf(macho.LoadCmdSegment), - "LoadCmdSegment64": reflect.ValueOf(macho.LoadCmdSegment64), - "LoadCmdSymtab": reflect.ValueOf(macho.LoadCmdSymtab), - "LoadCmdThread": reflect.ValueOf(macho.LoadCmdThread), - "LoadCmdUnixThread": reflect.ValueOf(macho.LoadCmdUnixThread), - "Magic32": reflect.ValueOf(macho.Magic32), - "Magic64": reflect.ValueOf(macho.Magic64), - "MagicFat": reflect.ValueOf(macho.MagicFat), - "NewFatFile": reflect.ValueOf(macho.NewFatFile), - "NewFile": reflect.ValueOf(macho.NewFile), - "Open": reflect.ValueOf(macho.Open), - "OpenFat": reflect.ValueOf(macho.OpenFat), - "TypeBundle": reflect.ValueOf(macho.TypeBundle), - "TypeDylib": reflect.ValueOf(macho.TypeDylib), - "TypeExec": reflect.ValueOf(macho.TypeExec), - "TypeObj": reflect.ValueOf(macho.TypeObj), - "X86_64_RELOC_BRANCH": reflect.ValueOf(macho.X86_64_RELOC_BRANCH), - "X86_64_RELOC_GOT": reflect.ValueOf(macho.X86_64_RELOC_GOT), - "X86_64_RELOC_GOT_LOAD": reflect.ValueOf(macho.X86_64_RELOC_GOT_LOAD), - "X86_64_RELOC_SIGNED": reflect.ValueOf(macho.X86_64_RELOC_SIGNED), - "X86_64_RELOC_SIGNED_1": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_1), - "X86_64_RELOC_SIGNED_2": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_2), - "X86_64_RELOC_SIGNED_4": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_4), - "X86_64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.X86_64_RELOC_SUBTRACTOR), - "X86_64_RELOC_TLV": reflect.ValueOf(macho.X86_64_RELOC_TLV), - "X86_64_RELOC_UNSIGNED": reflect.ValueOf(macho.X86_64_RELOC_UNSIGNED), - - // type definitions - "Cpu": reflect.ValueOf((*macho.Cpu)(nil)), - "Dylib": reflect.ValueOf((*macho.Dylib)(nil)), - "DylibCmd": reflect.ValueOf((*macho.DylibCmd)(nil)), - "Dysymtab": reflect.ValueOf((*macho.Dysymtab)(nil)), - "DysymtabCmd": reflect.ValueOf((*macho.DysymtabCmd)(nil)), - "FatArch": reflect.ValueOf((*macho.FatArch)(nil)), - "FatArchHeader": reflect.ValueOf((*macho.FatArchHeader)(nil)), - "FatFile": reflect.ValueOf((*macho.FatFile)(nil)), - "File": reflect.ValueOf((*macho.File)(nil)), - "FileHeader": reflect.ValueOf((*macho.FileHeader)(nil)), - "FormatError": reflect.ValueOf((*macho.FormatError)(nil)), - "Load": reflect.ValueOf((*macho.Load)(nil)), - "LoadBytes": reflect.ValueOf((*macho.LoadBytes)(nil)), - "LoadCmd": reflect.ValueOf((*macho.LoadCmd)(nil)), - "Nlist32": reflect.ValueOf((*macho.Nlist32)(nil)), - "Nlist64": reflect.ValueOf((*macho.Nlist64)(nil)), - "Regs386": reflect.ValueOf((*macho.Regs386)(nil)), - "RegsAMD64": reflect.ValueOf((*macho.RegsAMD64)(nil)), - "Reloc": reflect.ValueOf((*macho.Reloc)(nil)), - "RelocTypeARM": reflect.ValueOf((*macho.RelocTypeARM)(nil)), - "RelocTypeARM64": reflect.ValueOf((*macho.RelocTypeARM64)(nil)), - "RelocTypeGeneric": reflect.ValueOf((*macho.RelocTypeGeneric)(nil)), - "RelocTypeX86_64": reflect.ValueOf((*macho.RelocTypeX86_64)(nil)), - "Rpath": reflect.ValueOf((*macho.Rpath)(nil)), - "RpathCmd": reflect.ValueOf((*macho.RpathCmd)(nil)), - "Section": reflect.ValueOf((*macho.Section)(nil)), - "Section32": reflect.ValueOf((*macho.Section32)(nil)), - "Section64": reflect.ValueOf((*macho.Section64)(nil)), - "SectionHeader": reflect.ValueOf((*macho.SectionHeader)(nil)), - "Segment": reflect.ValueOf((*macho.Segment)(nil)), - "Segment32": reflect.ValueOf((*macho.Segment32)(nil)), - "Segment64": reflect.ValueOf((*macho.Segment64)(nil)), - "SegmentHeader": reflect.ValueOf((*macho.SegmentHeader)(nil)), - "Symbol": reflect.ValueOf((*macho.Symbol)(nil)), - "Symtab": reflect.ValueOf((*macho.Symtab)(nil)), - "SymtabCmd": reflect.ValueOf((*macho.SymtabCmd)(nil)), - "Thread": reflect.ValueOf((*macho.Thread)(nil)), - "Type": reflect.ValueOf((*macho.Type)(nil)), - - // interface wrapper definitions - "_Load": reflect.ValueOf((*_debug_macho_Load)(nil)), - } -} - -// _debug_macho_Load is an interface wrapper for Load type -type _debug_macho_Load struct { - IValue interface{} - WRaw func() []byte -} - -func (W _debug_macho_Load) Raw() []byte { - return W.WRaw() -} diff --git a/stdlib/go1_16_debug_pe.go b/stdlib/go1_16_debug_pe.go deleted file mode 100644 index 3b75beefa..000000000 --- a/stdlib/go1_16_debug_pe.go +++ /dev/null @@ -1,114 +0,0 @@ -// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "debug/pe" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["debug/pe/pe"] = map[string]reflect.Value{ - // function, constant and variable definitions - "COFFSymbolSize": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_ARCHITECTURE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_BASERELOC": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_EXCEPTION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_EXPORT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_GLOBALPTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_IAT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_RESOURCE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_TLS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_APPCONTAINER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_GUARD_CF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NO_BIND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NO_SEH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NX_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_WDM_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IMAGE_FILE_32BIT_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IMAGE_FILE_AGGRESIVE_WS_TRIM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IMAGE_FILE_BYTES_REVERSED_HI": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IMAGE_FILE_BYTES_REVERSED_LO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IMAGE_FILE_DEBUG_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IMAGE_FILE_DLL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IMAGE_FILE_EXECUTABLE_IMAGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IMAGE_FILE_LARGE_ADDRESS_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IMAGE_FILE_LINE_NUMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAGE_FILE_LOCAL_SYMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IMAGE_FILE_MACHINE_AM33": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "IMAGE_FILE_MACHINE_AMD64": reflect.ValueOf(constant.MakeFromLiteral("34404", token.INT, 0)), - "IMAGE_FILE_MACHINE_ARM": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "IMAGE_FILE_MACHINE_ARM64": reflect.ValueOf(constant.MakeFromLiteral("43620", token.INT, 0)), - "IMAGE_FILE_MACHINE_ARMNT": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "IMAGE_FILE_MACHINE_EBC": reflect.ValueOf(constant.MakeFromLiteral("3772", token.INT, 0)), - "IMAGE_FILE_MACHINE_I386": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "IMAGE_FILE_MACHINE_IA64": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IMAGE_FILE_MACHINE_M32R": reflect.ValueOf(constant.MakeFromLiteral("36929", token.INT, 0)), - "IMAGE_FILE_MACHINE_MIPS16": reflect.ValueOf(constant.MakeFromLiteral("614", token.INT, 0)), - "IMAGE_FILE_MACHINE_MIPSFPU": reflect.ValueOf(constant.MakeFromLiteral("870", token.INT, 0)), - "IMAGE_FILE_MACHINE_MIPSFPU16": reflect.ValueOf(constant.MakeFromLiteral("1126", token.INT, 0)), - "IMAGE_FILE_MACHINE_POWERPC": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "IMAGE_FILE_MACHINE_POWERPCFP": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "IMAGE_FILE_MACHINE_R4000": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH3": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH3DSP": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH4": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH5": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "IMAGE_FILE_MACHINE_THUMB": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "IMAGE_FILE_MACHINE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IMAGE_FILE_MACHINE_WCEMIPSV2": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "IMAGE_FILE_NET_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IMAGE_FILE_RELOCS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IMAGE_FILE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IMAGE_FILE_UP_SYSTEM_ONLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_ROM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IMAGE_SUBSYSTEM_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IMAGE_SUBSYSTEM_NATIVE_WINDOWS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IMAGE_SUBSYSTEM_OS2_CUI": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IMAGE_SUBSYSTEM_POSIX_CUI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IMAGE_SUBSYSTEM_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_CE_GUI": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_CUI": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_GUI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IMAGE_SUBSYSTEM_XBOX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NewFile": reflect.ValueOf(pe.NewFile), - "Open": reflect.ValueOf(pe.Open), - - // type definitions - "COFFSymbol": reflect.ValueOf((*pe.COFFSymbol)(nil)), - "DataDirectory": reflect.ValueOf((*pe.DataDirectory)(nil)), - "File": reflect.ValueOf((*pe.File)(nil)), - "FileHeader": reflect.ValueOf((*pe.FileHeader)(nil)), - "FormatError": reflect.ValueOf((*pe.FormatError)(nil)), - "ImportDirectory": reflect.ValueOf((*pe.ImportDirectory)(nil)), - "OptionalHeader32": reflect.ValueOf((*pe.OptionalHeader32)(nil)), - "OptionalHeader64": reflect.ValueOf((*pe.OptionalHeader64)(nil)), - "Reloc": reflect.ValueOf((*pe.Reloc)(nil)), - "Section": reflect.ValueOf((*pe.Section)(nil)), - "SectionHeader": reflect.ValueOf((*pe.SectionHeader)(nil)), - "SectionHeader32": reflect.ValueOf((*pe.SectionHeader32)(nil)), - "StringTable": reflect.ValueOf((*pe.StringTable)(nil)), - "Symbol": reflect.ValueOf((*pe.Symbol)(nil)), - } -} diff --git a/stdlib/go1_16_debug_plan9obj.go b/stdlib/go1_16_debug_plan9obj.go deleted file mode 100644 index fe7306ea6..000000000 --- a/stdlib/go1_16_debug_plan9obj.go +++ /dev/null @@ -1,31 +0,0 @@ -// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "debug/plan9obj" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["debug/plan9obj/plan9obj"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Magic386": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "Magic64": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MagicAMD64": reflect.ValueOf(constant.MakeFromLiteral("35479", token.INT, 0)), - "MagicARM": reflect.ValueOf(constant.MakeFromLiteral("1607", token.INT, 0)), - "NewFile": reflect.ValueOf(plan9obj.NewFile), - "Open": reflect.ValueOf(plan9obj.Open), - - // type definitions - "File": reflect.ValueOf((*plan9obj.File)(nil)), - "FileHeader": reflect.ValueOf((*plan9obj.FileHeader)(nil)), - "Section": reflect.ValueOf((*plan9obj.Section)(nil)), - "SectionHeader": reflect.ValueOf((*plan9obj.SectionHeader)(nil)), - "Sym": reflect.ValueOf((*plan9obj.Sym)(nil)), - } -} diff --git a/stdlib/go1_16_embed.go b/stdlib/go1_16_embed.go deleted file mode 100644 index 2cadc15ff..000000000 --- a/stdlib/go1_16_embed.go +++ /dev/null @@ -1,17 +0,0 @@ -// Code generated by 'yaegi extract embed'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "embed" - "reflect" -) - -func init() { - Symbols["embed/embed"] = map[string]reflect.Value{ - // type definitions - "FS": reflect.ValueOf((*embed.FS)(nil)), - } -} diff --git a/stdlib/go1_16_encoding.go b/stdlib/go1_16_encoding.go deleted file mode 100644 index f606e8dda..000000000 --- a/stdlib/go1_16_encoding.go +++ /dev/null @@ -1,66 +0,0 @@ -// Code generated by 'yaegi extract encoding'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding" - "reflect" -) - -func init() { - Symbols["encoding/encoding"] = map[string]reflect.Value{ - // type definitions - "BinaryMarshaler": reflect.ValueOf((*encoding.BinaryMarshaler)(nil)), - "BinaryUnmarshaler": reflect.ValueOf((*encoding.BinaryUnmarshaler)(nil)), - "TextMarshaler": reflect.ValueOf((*encoding.TextMarshaler)(nil)), - "TextUnmarshaler": reflect.ValueOf((*encoding.TextUnmarshaler)(nil)), - - // interface wrapper definitions - "_BinaryMarshaler": reflect.ValueOf((*_encoding_BinaryMarshaler)(nil)), - "_BinaryUnmarshaler": reflect.ValueOf((*_encoding_BinaryUnmarshaler)(nil)), - "_TextMarshaler": reflect.ValueOf((*_encoding_TextMarshaler)(nil)), - "_TextUnmarshaler": reflect.ValueOf((*_encoding_TextUnmarshaler)(nil)), - } -} - -// _encoding_BinaryMarshaler is an interface wrapper for BinaryMarshaler type -type _encoding_BinaryMarshaler struct { - IValue interface{} - WMarshalBinary func() (data []byte, err error) -} - -func (W _encoding_BinaryMarshaler) MarshalBinary() (data []byte, err error) { - return W.WMarshalBinary() -} - -// _encoding_BinaryUnmarshaler is an interface wrapper for BinaryUnmarshaler type -type _encoding_BinaryUnmarshaler struct { - IValue interface{} - WUnmarshalBinary func(data []byte) error -} - -func (W _encoding_BinaryUnmarshaler) UnmarshalBinary(data []byte) error { - return W.WUnmarshalBinary(data) -} - -// _encoding_TextMarshaler is an interface wrapper for TextMarshaler type -type _encoding_TextMarshaler struct { - IValue interface{} - WMarshalText func() (text []byte, err error) -} - -func (W _encoding_TextMarshaler) MarshalText() (text []byte, err error) { - return W.WMarshalText() -} - -// _encoding_TextUnmarshaler is an interface wrapper for TextUnmarshaler type -type _encoding_TextUnmarshaler struct { - IValue interface{} - WUnmarshalText func(text []byte) error -} - -func (W _encoding_TextUnmarshaler) UnmarshalText(text []byte) error { - return W.WUnmarshalText(text) -} diff --git a/stdlib/go1_16_encoding_ascii85.go b/stdlib/go1_16_encoding_ascii85.go deleted file mode 100644 index 084e01391..000000000 --- a/stdlib/go1_16_encoding_ascii85.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/ascii85" - "reflect" -) - -func init() { - Symbols["encoding/ascii85/ascii85"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(ascii85.Decode), - "Encode": reflect.ValueOf(ascii85.Encode), - "MaxEncodedLen": reflect.ValueOf(ascii85.MaxEncodedLen), - "NewDecoder": reflect.ValueOf(ascii85.NewDecoder), - "NewEncoder": reflect.ValueOf(ascii85.NewEncoder), - - // type definitions - "CorruptInputError": reflect.ValueOf((*ascii85.CorruptInputError)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_asn1.go b/stdlib/go1_16_encoding_asn1.go deleted file mode 100644 index 4887882ad..000000000 --- a/stdlib/go1_16_encoding_asn1.go +++ /dev/null @@ -1,56 +0,0 @@ -// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/asn1" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["encoding/asn1/asn1"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ClassApplication": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ClassContextSpecific": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ClassPrivate": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ClassUniversal": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Marshal": reflect.ValueOf(asn1.Marshal), - "MarshalWithParams": reflect.ValueOf(asn1.MarshalWithParams), - "NullBytes": reflect.ValueOf(&asn1.NullBytes).Elem(), - "NullRawValue": reflect.ValueOf(&asn1.NullRawValue).Elem(), - "TagBMPString": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "TagBitString": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TagBoolean": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TagEnum": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TagGeneralString": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TagGeneralizedTime": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TagIA5String": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TagInteger": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TagNull": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TagNumericString": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TagOID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TagOctetString": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TagPrintableString": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TagSequence": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TagSet": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TagT61String": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TagUTCTime": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TagUTF8String": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "Unmarshal": reflect.ValueOf(asn1.Unmarshal), - "UnmarshalWithParams": reflect.ValueOf(asn1.UnmarshalWithParams), - - // type definitions - "BitString": reflect.ValueOf((*asn1.BitString)(nil)), - "Enumerated": reflect.ValueOf((*asn1.Enumerated)(nil)), - "Flag": reflect.ValueOf((*asn1.Flag)(nil)), - "ObjectIdentifier": reflect.ValueOf((*asn1.ObjectIdentifier)(nil)), - "RawContent": reflect.ValueOf((*asn1.RawContent)(nil)), - "RawValue": reflect.ValueOf((*asn1.RawValue)(nil)), - "StructuralError": reflect.ValueOf((*asn1.StructuralError)(nil)), - "SyntaxError": reflect.ValueOf((*asn1.SyntaxError)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_base32.go b/stdlib/go1_16_encoding_base32.go deleted file mode 100644 index be4592104..000000000 --- a/stdlib/go1_16_encoding_base32.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/base32" - "reflect" -) - -func init() { - Symbols["encoding/base32/base32"] = map[string]reflect.Value{ - // function, constant and variable definitions - "HexEncoding": reflect.ValueOf(&base32.HexEncoding).Elem(), - "NewDecoder": reflect.ValueOf(base32.NewDecoder), - "NewEncoder": reflect.ValueOf(base32.NewEncoder), - "NewEncoding": reflect.ValueOf(base32.NewEncoding), - "NoPadding": reflect.ValueOf(base32.NoPadding), - "StdEncoding": reflect.ValueOf(&base32.StdEncoding).Elem(), - "StdPadding": reflect.ValueOf(base32.StdPadding), - - // type definitions - "CorruptInputError": reflect.ValueOf((*base32.CorruptInputError)(nil)), - "Encoding": reflect.ValueOf((*base32.Encoding)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_base64.go b/stdlib/go1_16_encoding_base64.go deleted file mode 100644 index b719e5342..000000000 --- a/stdlib/go1_16_encoding_base64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/base64" - "reflect" -) - -func init() { - Symbols["encoding/base64/base64"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewDecoder": reflect.ValueOf(base64.NewDecoder), - "NewEncoder": reflect.ValueOf(base64.NewEncoder), - "NewEncoding": reflect.ValueOf(base64.NewEncoding), - "NoPadding": reflect.ValueOf(base64.NoPadding), - "RawStdEncoding": reflect.ValueOf(&base64.RawStdEncoding).Elem(), - "RawURLEncoding": reflect.ValueOf(&base64.RawURLEncoding).Elem(), - "StdEncoding": reflect.ValueOf(&base64.StdEncoding).Elem(), - "StdPadding": reflect.ValueOf(base64.StdPadding), - "URLEncoding": reflect.ValueOf(&base64.URLEncoding).Elem(), - - // type definitions - "CorruptInputError": reflect.ValueOf((*base64.CorruptInputError)(nil)), - "Encoding": reflect.ValueOf((*base64.Encoding)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_binary.go b/stdlib/go1_16_encoding_binary.go deleted file mode 100644 index 608e0ddec..000000000 --- a/stdlib/go1_16_encoding_binary.go +++ /dev/null @@ -1,75 +0,0 @@ -// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/binary" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["encoding/binary/binary"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BigEndian": reflect.ValueOf(&binary.BigEndian).Elem(), - "LittleEndian": reflect.ValueOf(&binary.LittleEndian).Elem(), - "MaxVarintLen16": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MaxVarintLen32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MaxVarintLen64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PutUvarint": reflect.ValueOf(binary.PutUvarint), - "PutVarint": reflect.ValueOf(binary.PutVarint), - "Read": reflect.ValueOf(binary.Read), - "ReadUvarint": reflect.ValueOf(binary.ReadUvarint), - "ReadVarint": reflect.ValueOf(binary.ReadVarint), - "Size": reflect.ValueOf(binary.Size), - "Uvarint": reflect.ValueOf(binary.Uvarint), - "Varint": reflect.ValueOf(binary.Varint), - "Write": reflect.ValueOf(binary.Write), - - // type definitions - "ByteOrder": reflect.ValueOf((*binary.ByteOrder)(nil)), - - // interface wrapper definitions - "_ByteOrder": reflect.ValueOf((*_encoding_binary_ByteOrder)(nil)), - } -} - -// _encoding_binary_ByteOrder is an interface wrapper for ByteOrder type -type _encoding_binary_ByteOrder struct { - IValue interface{} - WPutUint16 func(a0 []byte, a1 uint16) - WPutUint32 func(a0 []byte, a1 uint32) - WPutUint64 func(a0 []byte, a1 uint64) - WString func() string - WUint16 func(a0 []byte) uint16 - WUint32 func(a0 []byte) uint32 - WUint64 func(a0 []byte) uint64 -} - -func (W _encoding_binary_ByteOrder) PutUint16(a0 []byte, a1 uint16) { - W.WPutUint16(a0, a1) -} -func (W _encoding_binary_ByteOrder) PutUint32(a0 []byte, a1 uint32) { - W.WPutUint32(a0, a1) -} -func (W _encoding_binary_ByteOrder) PutUint64(a0 []byte, a1 uint64) { - W.WPutUint64(a0, a1) -} -func (W _encoding_binary_ByteOrder) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _encoding_binary_ByteOrder) Uint16(a0 []byte) uint16 { - return W.WUint16(a0) -} -func (W _encoding_binary_ByteOrder) Uint32(a0 []byte) uint32 { - return W.WUint32(a0) -} -func (W _encoding_binary_ByteOrder) Uint64(a0 []byte) uint64 { - return W.WUint64(a0) -} diff --git a/stdlib/go1_16_encoding_csv.go b/stdlib/go1_16_encoding_csv.go deleted file mode 100644 index 61b38b783..000000000 --- a/stdlib/go1_16_encoding_csv.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/csv" - "reflect" -) - -func init() { - Symbols["encoding/csv/csv"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrBareQuote": reflect.ValueOf(&csv.ErrBareQuote).Elem(), - "ErrFieldCount": reflect.ValueOf(&csv.ErrFieldCount).Elem(), - "ErrQuote": reflect.ValueOf(&csv.ErrQuote).Elem(), - "ErrTrailingComma": reflect.ValueOf(&csv.ErrTrailingComma).Elem(), - "NewReader": reflect.ValueOf(csv.NewReader), - "NewWriter": reflect.ValueOf(csv.NewWriter), - - // type definitions - "ParseError": reflect.ValueOf((*csv.ParseError)(nil)), - "Reader": reflect.ValueOf((*csv.Reader)(nil)), - "Writer": reflect.ValueOf((*csv.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_gob.go b/stdlib/go1_16_encoding_gob.go deleted file mode 100644 index 234ec3c11..000000000 --- a/stdlib/go1_16_encoding_gob.go +++ /dev/null @@ -1,51 +0,0 @@ -// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/gob" - "reflect" -) - -func init() { - Symbols["encoding/gob/gob"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewDecoder": reflect.ValueOf(gob.NewDecoder), - "NewEncoder": reflect.ValueOf(gob.NewEncoder), - "Register": reflect.ValueOf(gob.Register), - "RegisterName": reflect.ValueOf(gob.RegisterName), - - // type definitions - "CommonType": reflect.ValueOf((*gob.CommonType)(nil)), - "Decoder": reflect.ValueOf((*gob.Decoder)(nil)), - "Encoder": reflect.ValueOf((*gob.Encoder)(nil)), - "GobDecoder": reflect.ValueOf((*gob.GobDecoder)(nil)), - "GobEncoder": reflect.ValueOf((*gob.GobEncoder)(nil)), - - // interface wrapper definitions - "_GobDecoder": reflect.ValueOf((*_encoding_gob_GobDecoder)(nil)), - "_GobEncoder": reflect.ValueOf((*_encoding_gob_GobEncoder)(nil)), - } -} - -// _encoding_gob_GobDecoder is an interface wrapper for GobDecoder type -type _encoding_gob_GobDecoder struct { - IValue interface{} - WGobDecode func(a0 []byte) error -} - -func (W _encoding_gob_GobDecoder) GobDecode(a0 []byte) error { - return W.WGobDecode(a0) -} - -// _encoding_gob_GobEncoder is an interface wrapper for GobEncoder type -type _encoding_gob_GobEncoder struct { - IValue interface{} - WGobEncode func() ([]byte, error) -} - -func (W _encoding_gob_GobEncoder) GobEncode() ([]byte, error) { - return W.WGobEncode() -} diff --git a/stdlib/go1_16_encoding_hex.go b/stdlib/go1_16_encoding_hex.go deleted file mode 100644 index 10a5a39f1..000000000 --- a/stdlib/go1_16_encoding_hex.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/hex" - "reflect" -) - -func init() { - Symbols["encoding/hex/hex"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(hex.Decode), - "DecodeString": reflect.ValueOf(hex.DecodeString), - "DecodedLen": reflect.ValueOf(hex.DecodedLen), - "Dump": reflect.ValueOf(hex.Dump), - "Dumper": reflect.ValueOf(hex.Dumper), - "Encode": reflect.ValueOf(hex.Encode), - "EncodeToString": reflect.ValueOf(hex.EncodeToString), - "EncodedLen": reflect.ValueOf(hex.EncodedLen), - "ErrLength": reflect.ValueOf(&hex.ErrLength).Elem(), - "NewDecoder": reflect.ValueOf(hex.NewDecoder), - "NewEncoder": reflect.ValueOf(hex.NewEncoder), - - // type definitions - "InvalidByteError": reflect.ValueOf((*hex.InvalidByteError)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_json.go b/stdlib/go1_16_encoding_json.go deleted file mode 100644 index e7312d165..000000000 --- a/stdlib/go1_16_encoding_json.go +++ /dev/null @@ -1,73 +0,0 @@ -// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/json" - "reflect" -) - -func init() { - Symbols["encoding/json/json"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compact": reflect.ValueOf(json.Compact), - "HTMLEscape": reflect.ValueOf(json.HTMLEscape), - "Indent": reflect.ValueOf(json.Indent), - "Marshal": reflect.ValueOf(json.Marshal), - "MarshalIndent": reflect.ValueOf(json.MarshalIndent), - "NewDecoder": reflect.ValueOf(json.NewDecoder), - "NewEncoder": reflect.ValueOf(json.NewEncoder), - "Unmarshal": reflect.ValueOf(json.Unmarshal), - "Valid": reflect.ValueOf(json.Valid), - - // type definitions - "Decoder": reflect.ValueOf((*json.Decoder)(nil)), - "Delim": reflect.ValueOf((*json.Delim)(nil)), - "Encoder": reflect.ValueOf((*json.Encoder)(nil)), - "InvalidUTF8Error": reflect.ValueOf((*json.InvalidUTF8Error)(nil)), - "InvalidUnmarshalError": reflect.ValueOf((*json.InvalidUnmarshalError)(nil)), - "Marshaler": reflect.ValueOf((*json.Marshaler)(nil)), - "MarshalerError": reflect.ValueOf((*json.MarshalerError)(nil)), - "Number": reflect.ValueOf((*json.Number)(nil)), - "RawMessage": reflect.ValueOf((*json.RawMessage)(nil)), - "SyntaxError": reflect.ValueOf((*json.SyntaxError)(nil)), - "Token": reflect.ValueOf((*json.Token)(nil)), - "UnmarshalFieldError": reflect.ValueOf((*json.UnmarshalFieldError)(nil)), - "UnmarshalTypeError": reflect.ValueOf((*json.UnmarshalTypeError)(nil)), - "Unmarshaler": reflect.ValueOf((*json.Unmarshaler)(nil)), - "UnsupportedTypeError": reflect.ValueOf((*json.UnsupportedTypeError)(nil)), - "UnsupportedValueError": reflect.ValueOf((*json.UnsupportedValueError)(nil)), - - // interface wrapper definitions - "_Marshaler": reflect.ValueOf((*_encoding_json_Marshaler)(nil)), - "_Token": reflect.ValueOf((*_encoding_json_Token)(nil)), - "_Unmarshaler": reflect.ValueOf((*_encoding_json_Unmarshaler)(nil)), - } -} - -// _encoding_json_Marshaler is an interface wrapper for Marshaler type -type _encoding_json_Marshaler struct { - IValue interface{} - WMarshalJSON func() ([]byte, error) -} - -func (W _encoding_json_Marshaler) MarshalJSON() ([]byte, error) { - return W.WMarshalJSON() -} - -// _encoding_json_Token is an interface wrapper for Token type -type _encoding_json_Token struct { - IValue interface{} -} - -// _encoding_json_Unmarshaler is an interface wrapper for Unmarshaler type -type _encoding_json_Unmarshaler struct { - IValue interface{} - WUnmarshalJSON func(a0 []byte) error -} - -func (W _encoding_json_Unmarshaler) UnmarshalJSON(a0 []byte) error { - return W.WUnmarshalJSON(a0) -} diff --git a/stdlib/go1_16_encoding_pem.go b/stdlib/go1_16_encoding_pem.go deleted file mode 100644 index c07b9f4c6..000000000 --- a/stdlib/go1_16_encoding_pem.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/pem" - "reflect" -) - -func init() { - Symbols["encoding/pem/pem"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(pem.Decode), - "Encode": reflect.ValueOf(pem.Encode), - "EncodeToMemory": reflect.ValueOf(pem.EncodeToMemory), - - // type definitions - "Block": reflect.ValueOf((*pem.Block)(nil)), - } -} diff --git a/stdlib/go1_16_encoding_xml.go b/stdlib/go1_16_encoding_xml.go deleted file mode 100644 index 3b7c17ec7..000000000 --- a/stdlib/go1_16_encoding_xml.go +++ /dev/null @@ -1,115 +0,0 @@ -// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "encoding/xml" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["encoding/xml/xml"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CopyToken": reflect.ValueOf(xml.CopyToken), - "Escape": reflect.ValueOf(xml.Escape), - "EscapeText": reflect.ValueOf(xml.EscapeText), - "HTMLAutoClose": reflect.ValueOf(&xml.HTMLAutoClose).Elem(), - "HTMLEntity": reflect.ValueOf(&xml.HTMLEntity).Elem(), - "Header": reflect.ValueOf(constant.MakeFromLiteral("\"\\n\"", token.STRING, 0)), - "Marshal": reflect.ValueOf(xml.Marshal), - "MarshalIndent": reflect.ValueOf(xml.MarshalIndent), - "NewDecoder": reflect.ValueOf(xml.NewDecoder), - "NewEncoder": reflect.ValueOf(xml.NewEncoder), - "NewTokenDecoder": reflect.ValueOf(xml.NewTokenDecoder), - "Unmarshal": reflect.ValueOf(xml.Unmarshal), - - // type definitions - "Attr": reflect.ValueOf((*xml.Attr)(nil)), - "CharData": reflect.ValueOf((*xml.CharData)(nil)), - "Comment": reflect.ValueOf((*xml.Comment)(nil)), - "Decoder": reflect.ValueOf((*xml.Decoder)(nil)), - "Directive": reflect.ValueOf((*xml.Directive)(nil)), - "Encoder": reflect.ValueOf((*xml.Encoder)(nil)), - "EndElement": reflect.ValueOf((*xml.EndElement)(nil)), - "Marshaler": reflect.ValueOf((*xml.Marshaler)(nil)), - "MarshalerAttr": reflect.ValueOf((*xml.MarshalerAttr)(nil)), - "Name": reflect.ValueOf((*xml.Name)(nil)), - "ProcInst": reflect.ValueOf((*xml.ProcInst)(nil)), - "StartElement": reflect.ValueOf((*xml.StartElement)(nil)), - "SyntaxError": reflect.ValueOf((*xml.SyntaxError)(nil)), - "TagPathError": reflect.ValueOf((*xml.TagPathError)(nil)), - "Token": reflect.ValueOf((*xml.Token)(nil)), - "TokenReader": reflect.ValueOf((*xml.TokenReader)(nil)), - "UnmarshalError": reflect.ValueOf((*xml.UnmarshalError)(nil)), - "Unmarshaler": reflect.ValueOf((*xml.Unmarshaler)(nil)), - "UnmarshalerAttr": reflect.ValueOf((*xml.UnmarshalerAttr)(nil)), - "UnsupportedTypeError": reflect.ValueOf((*xml.UnsupportedTypeError)(nil)), - - // interface wrapper definitions - "_Marshaler": reflect.ValueOf((*_encoding_xml_Marshaler)(nil)), - "_MarshalerAttr": reflect.ValueOf((*_encoding_xml_MarshalerAttr)(nil)), - "_Token": reflect.ValueOf((*_encoding_xml_Token)(nil)), - "_TokenReader": reflect.ValueOf((*_encoding_xml_TokenReader)(nil)), - "_Unmarshaler": reflect.ValueOf((*_encoding_xml_Unmarshaler)(nil)), - "_UnmarshalerAttr": reflect.ValueOf((*_encoding_xml_UnmarshalerAttr)(nil)), - } -} - -// _encoding_xml_Marshaler is an interface wrapper for Marshaler type -type _encoding_xml_Marshaler struct { - IValue interface{} - WMarshalXML func(e *xml.Encoder, start xml.StartElement) error -} - -func (W _encoding_xml_Marshaler) MarshalXML(e *xml.Encoder, start xml.StartElement) error { - return W.WMarshalXML(e, start) -} - -// _encoding_xml_MarshalerAttr is an interface wrapper for MarshalerAttr type -type _encoding_xml_MarshalerAttr struct { - IValue interface{} - WMarshalXMLAttr func(name xml.Name) (xml.Attr, error) -} - -func (W _encoding_xml_MarshalerAttr) MarshalXMLAttr(name xml.Name) (xml.Attr, error) { - return W.WMarshalXMLAttr(name) -} - -// _encoding_xml_Token is an interface wrapper for Token type -type _encoding_xml_Token struct { - IValue interface{} -} - -// _encoding_xml_TokenReader is an interface wrapper for TokenReader type -type _encoding_xml_TokenReader struct { - IValue interface{} - WToken func() (xml.Token, error) -} - -func (W _encoding_xml_TokenReader) Token() (xml.Token, error) { - return W.WToken() -} - -// _encoding_xml_Unmarshaler is an interface wrapper for Unmarshaler type -type _encoding_xml_Unmarshaler struct { - IValue interface{} - WUnmarshalXML func(d *xml.Decoder, start xml.StartElement) error -} - -func (W _encoding_xml_Unmarshaler) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { - return W.WUnmarshalXML(d, start) -} - -// _encoding_xml_UnmarshalerAttr is an interface wrapper for UnmarshalerAttr type -type _encoding_xml_UnmarshalerAttr struct { - IValue interface{} - WUnmarshalXMLAttr func(attr xml.Attr) error -} - -func (W _encoding_xml_UnmarshalerAttr) UnmarshalXMLAttr(attr xml.Attr) error { - return W.WUnmarshalXMLAttr(attr) -} diff --git a/stdlib/go1_16_errors.go b/stdlib/go1_16_errors.go deleted file mode 100644 index 9f0d45a2d..000000000 --- a/stdlib/go1_16_errors.go +++ /dev/null @@ -1,20 +0,0 @@ -// Code generated by 'yaegi extract errors'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "errors" - "reflect" -) - -func init() { - Symbols["errors/errors"] = map[string]reflect.Value{ - // function, constant and variable definitions - "As": reflect.ValueOf(errors.As), - "Is": reflect.ValueOf(errors.Is), - "New": reflect.ValueOf(errors.New), - "Unwrap": reflect.ValueOf(errors.Unwrap), - } -} diff --git a/stdlib/go1_16_expvar.go b/stdlib/go1_16_expvar.go deleted file mode 100644 index fd151cdb4..000000000 --- a/stdlib/go1_16_expvar.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract expvar'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "expvar" - "reflect" -) - -func init() { - Symbols["expvar/expvar"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Do": reflect.ValueOf(expvar.Do), - "Get": reflect.ValueOf(expvar.Get), - "Handler": reflect.ValueOf(expvar.Handler), - "NewFloat": reflect.ValueOf(expvar.NewFloat), - "NewInt": reflect.ValueOf(expvar.NewInt), - "NewMap": reflect.ValueOf(expvar.NewMap), - "NewString": reflect.ValueOf(expvar.NewString), - "Publish": reflect.ValueOf(expvar.Publish), - - // type definitions - "Float": reflect.ValueOf((*expvar.Float)(nil)), - "Func": reflect.ValueOf((*expvar.Func)(nil)), - "Int": reflect.ValueOf((*expvar.Int)(nil)), - "KeyValue": reflect.ValueOf((*expvar.KeyValue)(nil)), - "Map": reflect.ValueOf((*expvar.Map)(nil)), - "String": reflect.ValueOf((*expvar.String)(nil)), - "Var": reflect.ValueOf((*expvar.Var)(nil)), - - // interface wrapper definitions - "_Var": reflect.ValueOf((*_expvar_Var)(nil)), - } -} - -// _expvar_Var is an interface wrapper for Var type -type _expvar_Var struct { - IValue interface{} - WString func() string -} - -func (W _expvar_Var) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_flag.go b/stdlib/go1_16_flag.go deleted file mode 100644 index 00772e974..000000000 --- a/stdlib/go1_16_flag.go +++ /dev/null @@ -1,102 +0,0 @@ -// Code generated by 'yaegi extract flag'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "flag" - "reflect" -) - -func init() { - Symbols["flag/flag"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Arg": reflect.ValueOf(flag.Arg), - "Args": reflect.ValueOf(flag.Args), - "Bool": reflect.ValueOf(flag.Bool), - "BoolVar": reflect.ValueOf(flag.BoolVar), - "CommandLine": reflect.ValueOf(&flag.CommandLine).Elem(), - "ContinueOnError": reflect.ValueOf(flag.ContinueOnError), - "Duration": reflect.ValueOf(flag.Duration), - "DurationVar": reflect.ValueOf(flag.DurationVar), - "ErrHelp": reflect.ValueOf(&flag.ErrHelp).Elem(), - "ExitOnError": reflect.ValueOf(flag.ExitOnError), - "Float64": reflect.ValueOf(flag.Float64), - "Float64Var": reflect.ValueOf(flag.Float64Var), - "Func": reflect.ValueOf(flag.Func), - "Int": reflect.ValueOf(flag.Int), - "Int64": reflect.ValueOf(flag.Int64), - "Int64Var": reflect.ValueOf(flag.Int64Var), - "IntVar": reflect.ValueOf(flag.IntVar), - "Lookup": reflect.ValueOf(flag.Lookup), - "NArg": reflect.ValueOf(flag.NArg), - "NFlag": reflect.ValueOf(flag.NFlag), - "NewFlagSet": reflect.ValueOf(flag.NewFlagSet), - "PanicOnError": reflect.ValueOf(flag.PanicOnError), - "Parse": reflect.ValueOf(flag.Parse), - "Parsed": reflect.ValueOf(flag.Parsed), - "PrintDefaults": reflect.ValueOf(flag.PrintDefaults), - "Set": reflect.ValueOf(flag.Set), - "String": reflect.ValueOf(flag.String), - "StringVar": reflect.ValueOf(flag.StringVar), - "Uint": reflect.ValueOf(flag.Uint), - "Uint64": reflect.ValueOf(flag.Uint64), - "Uint64Var": reflect.ValueOf(flag.Uint64Var), - "UintVar": reflect.ValueOf(flag.UintVar), - "UnquoteUsage": reflect.ValueOf(flag.UnquoteUsage), - "Usage": reflect.ValueOf(&flag.Usage).Elem(), - "Var": reflect.ValueOf(flag.Var), - "Visit": reflect.ValueOf(flag.Visit), - "VisitAll": reflect.ValueOf(flag.VisitAll), - - // type definitions - "ErrorHandling": reflect.ValueOf((*flag.ErrorHandling)(nil)), - "Flag": reflect.ValueOf((*flag.Flag)(nil)), - "FlagSet": reflect.ValueOf((*flag.FlagSet)(nil)), - "Getter": reflect.ValueOf((*flag.Getter)(nil)), - "Value": reflect.ValueOf((*flag.Value)(nil)), - - // interface wrapper definitions - "_Getter": reflect.ValueOf((*_flag_Getter)(nil)), - "_Value": reflect.ValueOf((*_flag_Value)(nil)), - } -} - -// _flag_Getter is an interface wrapper for Getter type -type _flag_Getter struct { - IValue interface{} - WGet func() interface{} - WSet func(a0 string) error - WString func() string -} - -func (W _flag_Getter) Get() interface{} { - return W.WGet() -} -func (W _flag_Getter) Set(a0 string) error { - return W.WSet(a0) -} -func (W _flag_Getter) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} - -// _flag_Value is an interface wrapper for Value type -type _flag_Value struct { - IValue interface{} - WSet func(a0 string) error - WString func() string -} - -func (W _flag_Value) Set(a0 string) error { - return W.WSet(a0) -} -func (W _flag_Value) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_fmt.go b/stdlib/go1_16_fmt.go deleted file mode 100644 index 43969b606..000000000 --- a/stdlib/go1_16_fmt.go +++ /dev/null @@ -1,146 +0,0 @@ -// Code generated by 'yaegi extract fmt'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "fmt" - "reflect" -) - -func init() { - Symbols["fmt/fmt"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Errorf": reflect.ValueOf(fmt.Errorf), - "Fprint": reflect.ValueOf(fmt.Fprint), - "Fprintf": reflect.ValueOf(fmt.Fprintf), - "Fprintln": reflect.ValueOf(fmt.Fprintln), - "Fscan": reflect.ValueOf(fmt.Fscan), - "Fscanf": reflect.ValueOf(fmt.Fscanf), - "Fscanln": reflect.ValueOf(fmt.Fscanln), - "Print": reflect.ValueOf(fmt.Print), - "Printf": reflect.ValueOf(fmt.Printf), - "Println": reflect.ValueOf(fmt.Println), - "Scan": reflect.ValueOf(fmt.Scan), - "Scanf": reflect.ValueOf(fmt.Scanf), - "Scanln": reflect.ValueOf(fmt.Scanln), - "Sprint": reflect.ValueOf(fmt.Sprint), - "Sprintf": reflect.ValueOf(fmt.Sprintf), - "Sprintln": reflect.ValueOf(fmt.Sprintln), - "Sscan": reflect.ValueOf(fmt.Sscan), - "Sscanf": reflect.ValueOf(fmt.Sscanf), - "Sscanln": reflect.ValueOf(fmt.Sscanln), - - // type definitions - "Formatter": reflect.ValueOf((*fmt.Formatter)(nil)), - "GoStringer": reflect.ValueOf((*fmt.GoStringer)(nil)), - "ScanState": reflect.ValueOf((*fmt.ScanState)(nil)), - "Scanner": reflect.ValueOf((*fmt.Scanner)(nil)), - "State": reflect.ValueOf((*fmt.State)(nil)), - "Stringer": reflect.ValueOf((*fmt.Stringer)(nil)), - - // interface wrapper definitions - "_Formatter": reflect.ValueOf((*_fmt_Formatter)(nil)), - "_GoStringer": reflect.ValueOf((*_fmt_GoStringer)(nil)), - "_ScanState": reflect.ValueOf((*_fmt_ScanState)(nil)), - "_Scanner": reflect.ValueOf((*_fmt_Scanner)(nil)), - "_State": reflect.ValueOf((*_fmt_State)(nil)), - "_Stringer": reflect.ValueOf((*_fmt_Stringer)(nil)), - } -} - -// _fmt_Formatter is an interface wrapper for Formatter type -type _fmt_Formatter struct { - IValue interface{} - WFormat func(f fmt.State, verb rune) -} - -func (W _fmt_Formatter) Format(f fmt.State, verb rune) { - W.WFormat(f, verb) -} - -// _fmt_GoStringer is an interface wrapper for GoStringer type -type _fmt_GoStringer struct { - IValue interface{} - WGoString func() string -} - -func (W _fmt_GoStringer) GoString() string { - return W.WGoString() -} - -// _fmt_ScanState is an interface wrapper for ScanState type -type _fmt_ScanState struct { - IValue interface{} - WRead func(buf []byte) (n int, err error) - WReadRune func() (r rune, size int, err error) - WSkipSpace func() - WToken func(skipSpace bool, f func(rune) bool) (token []byte, err error) - WUnreadRune func() error - WWidth func() (wid int, ok bool) -} - -func (W _fmt_ScanState) Read(buf []byte) (n int, err error) { - return W.WRead(buf) -} -func (W _fmt_ScanState) ReadRune() (r rune, size int, err error) { - return W.WReadRune() -} -func (W _fmt_ScanState) SkipSpace() { - W.WSkipSpace() -} -func (W _fmt_ScanState) Token(skipSpace bool, f func(rune) bool) (token []byte, err error) { - return W.WToken(skipSpace, f) -} -func (W _fmt_ScanState) UnreadRune() error { - return W.WUnreadRune() -} -func (W _fmt_ScanState) Width() (wid int, ok bool) { - return W.WWidth() -} - -// _fmt_Scanner is an interface wrapper for Scanner type -type _fmt_Scanner struct { - IValue interface{} - WScan func(state fmt.ScanState, verb rune) error -} - -func (W _fmt_Scanner) Scan(state fmt.ScanState, verb rune) error { - return W.WScan(state, verb) -} - -// _fmt_State is an interface wrapper for State type -type _fmt_State struct { - IValue interface{} - WFlag func(c int) bool - WPrecision func() (prec int, ok bool) - WWidth func() (wid int, ok bool) - WWrite func(b []byte) (n int, err error) -} - -func (W _fmt_State) Flag(c int) bool { - return W.WFlag(c) -} -func (W _fmt_State) Precision() (prec int, ok bool) { - return W.WPrecision() -} -func (W _fmt_State) Width() (wid int, ok bool) { - return W.WWidth() -} -func (W _fmt_State) Write(b []byte) (n int, err error) { - return W.WWrite(b) -} - -// _fmt_Stringer is an interface wrapper for Stringer type -type _fmt_Stringer struct { - IValue interface{} - WString func() string -} - -func (W _fmt_Stringer) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_go_ast.go b/stdlib/go1_16_go_ast.go deleted file mode 100644 index 1029787bd..000000000 --- a/stdlib/go1_16_go_ast.go +++ /dev/null @@ -1,207 +0,0 @@ -// Code generated by 'yaegi extract go/ast'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/ast" - "go/token" - "reflect" -) - -func init() { - Symbols["go/ast/ast"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Bad": reflect.ValueOf(ast.Bad), - "Con": reflect.ValueOf(ast.Con), - "FileExports": reflect.ValueOf(ast.FileExports), - "FilterDecl": reflect.ValueOf(ast.FilterDecl), - "FilterFile": reflect.ValueOf(ast.FilterFile), - "FilterFuncDuplicates": reflect.ValueOf(ast.FilterFuncDuplicates), - "FilterImportDuplicates": reflect.ValueOf(ast.FilterImportDuplicates), - "FilterPackage": reflect.ValueOf(ast.FilterPackage), - "FilterUnassociatedComments": reflect.ValueOf(ast.FilterUnassociatedComments), - "Fprint": reflect.ValueOf(ast.Fprint), - "Fun": reflect.ValueOf(ast.Fun), - "Inspect": reflect.ValueOf(ast.Inspect), - "IsExported": reflect.ValueOf(ast.IsExported), - "Lbl": reflect.ValueOf(ast.Lbl), - "MergePackageFiles": reflect.ValueOf(ast.MergePackageFiles), - "NewCommentMap": reflect.ValueOf(ast.NewCommentMap), - "NewIdent": reflect.ValueOf(ast.NewIdent), - "NewObj": reflect.ValueOf(ast.NewObj), - "NewPackage": reflect.ValueOf(ast.NewPackage), - "NewScope": reflect.ValueOf(ast.NewScope), - "NotNilFilter": reflect.ValueOf(ast.NotNilFilter), - "PackageExports": reflect.ValueOf(ast.PackageExports), - "Pkg": reflect.ValueOf(ast.Pkg), - "Print": reflect.ValueOf(ast.Print), - "RECV": reflect.ValueOf(ast.RECV), - "SEND": reflect.ValueOf(ast.SEND), - "SortImports": reflect.ValueOf(ast.SortImports), - "Typ": reflect.ValueOf(ast.Typ), - "Var": reflect.ValueOf(ast.Var), - "Walk": reflect.ValueOf(ast.Walk), - - // type definitions - "ArrayType": reflect.ValueOf((*ast.ArrayType)(nil)), - "AssignStmt": reflect.ValueOf((*ast.AssignStmt)(nil)), - "BadDecl": reflect.ValueOf((*ast.BadDecl)(nil)), - "BadExpr": reflect.ValueOf((*ast.BadExpr)(nil)), - "BadStmt": reflect.ValueOf((*ast.BadStmt)(nil)), - "BasicLit": reflect.ValueOf((*ast.BasicLit)(nil)), - "BinaryExpr": reflect.ValueOf((*ast.BinaryExpr)(nil)), - "BlockStmt": reflect.ValueOf((*ast.BlockStmt)(nil)), - "BranchStmt": reflect.ValueOf((*ast.BranchStmt)(nil)), - "CallExpr": reflect.ValueOf((*ast.CallExpr)(nil)), - "CaseClause": reflect.ValueOf((*ast.CaseClause)(nil)), - "ChanDir": reflect.ValueOf((*ast.ChanDir)(nil)), - "ChanType": reflect.ValueOf((*ast.ChanType)(nil)), - "CommClause": reflect.ValueOf((*ast.CommClause)(nil)), - "Comment": reflect.ValueOf((*ast.Comment)(nil)), - "CommentGroup": reflect.ValueOf((*ast.CommentGroup)(nil)), - "CommentMap": reflect.ValueOf((*ast.CommentMap)(nil)), - "CompositeLit": reflect.ValueOf((*ast.CompositeLit)(nil)), - "Decl": reflect.ValueOf((*ast.Decl)(nil)), - "DeclStmt": reflect.ValueOf((*ast.DeclStmt)(nil)), - "DeferStmt": reflect.ValueOf((*ast.DeferStmt)(nil)), - "Ellipsis": reflect.ValueOf((*ast.Ellipsis)(nil)), - "EmptyStmt": reflect.ValueOf((*ast.EmptyStmt)(nil)), - "Expr": reflect.ValueOf((*ast.Expr)(nil)), - "ExprStmt": reflect.ValueOf((*ast.ExprStmt)(nil)), - "Field": reflect.ValueOf((*ast.Field)(nil)), - "FieldFilter": reflect.ValueOf((*ast.FieldFilter)(nil)), - "FieldList": reflect.ValueOf((*ast.FieldList)(nil)), - "File": reflect.ValueOf((*ast.File)(nil)), - "Filter": reflect.ValueOf((*ast.Filter)(nil)), - "ForStmt": reflect.ValueOf((*ast.ForStmt)(nil)), - "FuncDecl": reflect.ValueOf((*ast.FuncDecl)(nil)), - "FuncLit": reflect.ValueOf((*ast.FuncLit)(nil)), - "FuncType": reflect.ValueOf((*ast.FuncType)(nil)), - "GenDecl": reflect.ValueOf((*ast.GenDecl)(nil)), - "GoStmt": reflect.ValueOf((*ast.GoStmt)(nil)), - "Ident": reflect.ValueOf((*ast.Ident)(nil)), - "IfStmt": reflect.ValueOf((*ast.IfStmt)(nil)), - "ImportSpec": reflect.ValueOf((*ast.ImportSpec)(nil)), - "Importer": reflect.ValueOf((*ast.Importer)(nil)), - "IncDecStmt": reflect.ValueOf((*ast.IncDecStmt)(nil)), - "IndexExpr": reflect.ValueOf((*ast.IndexExpr)(nil)), - "InterfaceType": reflect.ValueOf((*ast.InterfaceType)(nil)), - "KeyValueExpr": reflect.ValueOf((*ast.KeyValueExpr)(nil)), - "LabeledStmt": reflect.ValueOf((*ast.LabeledStmt)(nil)), - "MapType": reflect.ValueOf((*ast.MapType)(nil)), - "MergeMode": reflect.ValueOf((*ast.MergeMode)(nil)), - "Node": reflect.ValueOf((*ast.Node)(nil)), - "ObjKind": reflect.ValueOf((*ast.ObjKind)(nil)), - "Object": reflect.ValueOf((*ast.Object)(nil)), - "Package": reflect.ValueOf((*ast.Package)(nil)), - "ParenExpr": reflect.ValueOf((*ast.ParenExpr)(nil)), - "RangeStmt": reflect.ValueOf((*ast.RangeStmt)(nil)), - "ReturnStmt": reflect.ValueOf((*ast.ReturnStmt)(nil)), - "Scope": reflect.ValueOf((*ast.Scope)(nil)), - "SelectStmt": reflect.ValueOf((*ast.SelectStmt)(nil)), - "SelectorExpr": reflect.ValueOf((*ast.SelectorExpr)(nil)), - "SendStmt": reflect.ValueOf((*ast.SendStmt)(nil)), - "SliceExpr": reflect.ValueOf((*ast.SliceExpr)(nil)), - "Spec": reflect.ValueOf((*ast.Spec)(nil)), - "StarExpr": reflect.ValueOf((*ast.StarExpr)(nil)), - "Stmt": reflect.ValueOf((*ast.Stmt)(nil)), - "StructType": reflect.ValueOf((*ast.StructType)(nil)), - "SwitchStmt": reflect.ValueOf((*ast.SwitchStmt)(nil)), - "TypeAssertExpr": reflect.ValueOf((*ast.TypeAssertExpr)(nil)), - "TypeSpec": reflect.ValueOf((*ast.TypeSpec)(nil)), - "TypeSwitchStmt": reflect.ValueOf((*ast.TypeSwitchStmt)(nil)), - "UnaryExpr": reflect.ValueOf((*ast.UnaryExpr)(nil)), - "ValueSpec": reflect.ValueOf((*ast.ValueSpec)(nil)), - "Visitor": reflect.ValueOf((*ast.Visitor)(nil)), - - // interface wrapper definitions - "_Decl": reflect.ValueOf((*_go_ast_Decl)(nil)), - "_Expr": reflect.ValueOf((*_go_ast_Expr)(nil)), - "_Node": reflect.ValueOf((*_go_ast_Node)(nil)), - "_Spec": reflect.ValueOf((*_go_ast_Spec)(nil)), - "_Stmt": reflect.ValueOf((*_go_ast_Stmt)(nil)), - "_Visitor": reflect.ValueOf((*_go_ast_Visitor)(nil)), - } -} - -// _go_ast_Decl is an interface wrapper for Decl type -type _go_ast_Decl struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Decl) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Decl) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Expr is an interface wrapper for Expr type -type _go_ast_Expr struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Expr) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Expr) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Node is an interface wrapper for Node type -type _go_ast_Node struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Node) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Node) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Spec is an interface wrapper for Spec type -type _go_ast_Spec struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Spec) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Spec) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Stmt is an interface wrapper for Stmt type -type _go_ast_Stmt struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Stmt) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Stmt) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Visitor is an interface wrapper for Visitor type -type _go_ast_Visitor struct { - IValue interface{} - WVisit func(node ast.Node) (w ast.Visitor) -} - -func (W _go_ast_Visitor) Visit(node ast.Node) (w ast.Visitor) { - return W.WVisit(node) -} diff --git a/stdlib/go1_16_go_build.go b/stdlib/go1_16_go_build.go deleted file mode 100644 index ce55ad42e..000000000 --- a/stdlib/go1_16_go_build.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract go/build'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/build" - "reflect" -) - -func init() { - Symbols["go/build/build"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllowBinary": reflect.ValueOf(build.AllowBinary), - "ArchChar": reflect.ValueOf(build.ArchChar), - "Default": reflect.ValueOf(&build.Default).Elem(), - "FindOnly": reflect.ValueOf(build.FindOnly), - "IgnoreVendor": reflect.ValueOf(build.IgnoreVendor), - "Import": reflect.ValueOf(build.Import), - "ImportComment": reflect.ValueOf(build.ImportComment), - "ImportDir": reflect.ValueOf(build.ImportDir), - "IsLocalImport": reflect.ValueOf(build.IsLocalImport), - "ToolDir": reflect.ValueOf(&build.ToolDir).Elem(), - - // type definitions - "Context": reflect.ValueOf((*build.Context)(nil)), - "ImportMode": reflect.ValueOf((*build.ImportMode)(nil)), - "MultiplePackageError": reflect.ValueOf((*build.MultiplePackageError)(nil)), - "NoGoError": reflect.ValueOf((*build.NoGoError)(nil)), - "Package": reflect.ValueOf((*build.Package)(nil)), - } -} diff --git a/stdlib/go1_16_go_build_constraint.go b/stdlib/go1_16_go_build_constraint.go deleted file mode 100644 index 810eda758..000000000 --- a/stdlib/go1_16_go_build_constraint.go +++ /dev/null @@ -1,48 +0,0 @@ -// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/build/constraint" - "reflect" -) - -func init() { - Symbols["go/build/constraint/constraint"] = map[string]reflect.Value{ - // function, constant and variable definitions - "IsGoBuild": reflect.ValueOf(constraint.IsGoBuild), - "IsPlusBuild": reflect.ValueOf(constraint.IsPlusBuild), - "Parse": reflect.ValueOf(constraint.Parse), - "PlusBuildLines": reflect.ValueOf(constraint.PlusBuildLines), - - // type definitions - "AndExpr": reflect.ValueOf((*constraint.AndExpr)(nil)), - "Expr": reflect.ValueOf((*constraint.Expr)(nil)), - "NotExpr": reflect.ValueOf((*constraint.NotExpr)(nil)), - "OrExpr": reflect.ValueOf((*constraint.OrExpr)(nil)), - "SyntaxError": reflect.ValueOf((*constraint.SyntaxError)(nil)), - "TagExpr": reflect.ValueOf((*constraint.TagExpr)(nil)), - - // interface wrapper definitions - "_Expr": reflect.ValueOf((*_go_build_constraint_Expr)(nil)), - } -} - -// _go_build_constraint_Expr is an interface wrapper for Expr type -type _go_build_constraint_Expr struct { - IValue interface{} - WEval func(ok func(tag string) bool) bool - WString func() string -} - -func (W _go_build_constraint_Expr) Eval(ok func(tag string) bool) bool { - return W.WEval(ok) -} -func (W _go_build_constraint_Expr) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_go_constant.go b/stdlib/go1_16_go_constant.go deleted file mode 100644 index a340d96a3..000000000 --- a/stdlib/go1_16_go_constant.go +++ /dev/null @@ -1,81 +0,0 @@ -// Code generated by 'yaegi extract go/constant'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "reflect" -) - -func init() { - Symbols["go/constant/constant"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BinaryOp": reflect.ValueOf(constant.BinaryOp), - "BitLen": reflect.ValueOf(constant.BitLen), - "Bool": reflect.ValueOf(constant.Bool), - "BoolVal": reflect.ValueOf(constant.BoolVal), - "Bytes": reflect.ValueOf(constant.Bytes), - "Compare": reflect.ValueOf(constant.Compare), - "Complex": reflect.ValueOf(constant.Complex), - "Denom": reflect.ValueOf(constant.Denom), - "Float": reflect.ValueOf(constant.Float), - "Float32Val": reflect.ValueOf(constant.Float32Val), - "Float64Val": reflect.ValueOf(constant.Float64Val), - "Imag": reflect.ValueOf(constant.Imag), - "Int": reflect.ValueOf(constant.Int), - "Int64Val": reflect.ValueOf(constant.Int64Val), - "Make": reflect.ValueOf(constant.Make), - "MakeBool": reflect.ValueOf(constant.MakeBool), - "MakeFloat64": reflect.ValueOf(constant.MakeFloat64), - "MakeFromBytes": reflect.ValueOf(constant.MakeFromBytes), - "MakeFromLiteral": reflect.ValueOf(constant.MakeFromLiteral), - "MakeImag": reflect.ValueOf(constant.MakeImag), - "MakeInt64": reflect.ValueOf(constant.MakeInt64), - "MakeString": reflect.ValueOf(constant.MakeString), - "MakeUint64": reflect.ValueOf(constant.MakeUint64), - "MakeUnknown": reflect.ValueOf(constant.MakeUnknown), - "Num": reflect.ValueOf(constant.Num), - "Real": reflect.ValueOf(constant.Real), - "Shift": reflect.ValueOf(constant.Shift), - "Sign": reflect.ValueOf(constant.Sign), - "String": reflect.ValueOf(constant.String), - "StringVal": reflect.ValueOf(constant.StringVal), - "ToComplex": reflect.ValueOf(constant.ToComplex), - "ToFloat": reflect.ValueOf(constant.ToFloat), - "ToInt": reflect.ValueOf(constant.ToInt), - "Uint64Val": reflect.ValueOf(constant.Uint64Val), - "UnaryOp": reflect.ValueOf(constant.UnaryOp), - "Unknown": reflect.ValueOf(constant.Unknown), - "Val": reflect.ValueOf(constant.Val), - - // type definitions - "Kind": reflect.ValueOf((*constant.Kind)(nil)), - "Value": reflect.ValueOf((*constant.Value)(nil)), - - // interface wrapper definitions - "_Value": reflect.ValueOf((*_go_constant_Value)(nil)), - } -} - -// _go_constant_Value is an interface wrapper for Value type -type _go_constant_Value struct { - IValue interface{} - WExactString func() string - WKind func() constant.Kind - WString func() string -} - -func (W _go_constant_Value) ExactString() string { - return W.WExactString() -} -func (W _go_constant_Value) Kind() constant.Kind { - return W.WKind() -} -func (W _go_constant_Value) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_go_doc.go b/stdlib/go1_16_go_doc.go deleted file mode 100644 index b41ef76be..000000000 --- a/stdlib/go1_16_go_doc.go +++ /dev/null @@ -1,37 +0,0 @@ -// Code generated by 'yaegi extract go/doc'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/doc" - "reflect" -) - -func init() { - Symbols["go/doc/doc"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllDecls": reflect.ValueOf(doc.AllDecls), - "AllMethods": reflect.ValueOf(doc.AllMethods), - "Examples": reflect.ValueOf(doc.Examples), - "IllegalPrefixes": reflect.ValueOf(&doc.IllegalPrefixes).Elem(), - "IsPredeclared": reflect.ValueOf(doc.IsPredeclared), - "New": reflect.ValueOf(doc.New), - "NewFromFiles": reflect.ValueOf(doc.NewFromFiles), - "PreserveAST": reflect.ValueOf(doc.PreserveAST), - "Synopsis": reflect.ValueOf(doc.Synopsis), - "ToHTML": reflect.ValueOf(doc.ToHTML), - "ToText": reflect.ValueOf(doc.ToText), - - // type definitions - "Example": reflect.ValueOf((*doc.Example)(nil)), - "Filter": reflect.ValueOf((*doc.Filter)(nil)), - "Func": reflect.ValueOf((*doc.Func)(nil)), - "Mode": reflect.ValueOf((*doc.Mode)(nil)), - "Note": reflect.ValueOf((*doc.Note)(nil)), - "Package": reflect.ValueOf((*doc.Package)(nil)), - "Type": reflect.ValueOf((*doc.Type)(nil)), - "Value": reflect.ValueOf((*doc.Value)(nil)), - } -} diff --git a/stdlib/go1_16_go_format.go b/stdlib/go1_16_go_format.go deleted file mode 100644 index d40f66ec4..000000000 --- a/stdlib/go1_16_go_format.go +++ /dev/null @@ -1,18 +0,0 @@ -// Code generated by 'yaegi extract go/format'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/format" - "reflect" -) - -func init() { - Symbols["go/format/format"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Node": reflect.ValueOf(format.Node), - "Source": reflect.ValueOf(format.Source), - } -} diff --git a/stdlib/go1_16_go_importer.go b/stdlib/go1_16_go_importer.go deleted file mode 100644 index bfdd998ef..000000000 --- a/stdlib/go1_16_go_importer.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract go/importer'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/importer" - "reflect" -) - -func init() { - Symbols["go/importer/importer"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Default": reflect.ValueOf(importer.Default), - "For": reflect.ValueOf(importer.For), - "ForCompiler": reflect.ValueOf(importer.ForCompiler), - - // type definitions - "Lookup": reflect.ValueOf((*importer.Lookup)(nil)), - } -} diff --git a/stdlib/go1_16_go_parser.go b/stdlib/go1_16_go_parser.go deleted file mode 100644 index bda811db6..000000000 --- a/stdlib/go1_16_go_parser.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract go/parser'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/parser" - "reflect" -) - -func init() { - Symbols["go/parser/parser"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllErrors": reflect.ValueOf(parser.AllErrors), - "DeclarationErrors": reflect.ValueOf(parser.DeclarationErrors), - "ImportsOnly": reflect.ValueOf(parser.ImportsOnly), - "PackageClauseOnly": reflect.ValueOf(parser.PackageClauseOnly), - "ParseComments": reflect.ValueOf(parser.ParseComments), - "ParseDir": reflect.ValueOf(parser.ParseDir), - "ParseExpr": reflect.ValueOf(parser.ParseExpr), - "ParseExprFrom": reflect.ValueOf(parser.ParseExprFrom), - "ParseFile": reflect.ValueOf(parser.ParseFile), - "SpuriousErrors": reflect.ValueOf(parser.SpuriousErrors), - "Trace": reflect.ValueOf(parser.Trace), - - // type definitions - "Mode": reflect.ValueOf((*parser.Mode)(nil)), - } -} diff --git a/stdlib/go1_16_go_printer.go b/stdlib/go1_16_go_printer.go deleted file mode 100644 index a3fe16bdb..000000000 --- a/stdlib/go1_16_go_printer.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract go/printer'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/printer" - "reflect" -) - -func init() { - Symbols["go/printer/printer"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Fprint": reflect.ValueOf(printer.Fprint), - "RawFormat": reflect.ValueOf(printer.RawFormat), - "SourcePos": reflect.ValueOf(printer.SourcePos), - "TabIndent": reflect.ValueOf(printer.TabIndent), - "UseSpaces": reflect.ValueOf(printer.UseSpaces), - - // type definitions - "CommentedNode": reflect.ValueOf((*printer.CommentedNode)(nil)), - "Config": reflect.ValueOf((*printer.Config)(nil)), - "Mode": reflect.ValueOf((*printer.Mode)(nil)), - } -} diff --git a/stdlib/go1_16_go_scanner.go b/stdlib/go1_16_go_scanner.go deleted file mode 100644 index f27505c38..000000000 --- a/stdlib/go1_16_go_scanner.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/scanner" - "reflect" -) - -func init() { - Symbols["go/scanner/scanner"] = map[string]reflect.Value{ - // function, constant and variable definitions - "PrintError": reflect.ValueOf(scanner.PrintError), - "ScanComments": reflect.ValueOf(scanner.ScanComments), - - // type definitions - "Error": reflect.ValueOf((*scanner.Error)(nil)), - "ErrorHandler": reflect.ValueOf((*scanner.ErrorHandler)(nil)), - "ErrorList": reflect.ValueOf((*scanner.ErrorList)(nil)), - "Mode": reflect.ValueOf((*scanner.Mode)(nil)), - "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), - } -} diff --git a/stdlib/go1_16_go_token.go b/stdlib/go1_16_go_token.go deleted file mode 100644 index 862c08b10..000000000 --- a/stdlib/go1_16_go_token.go +++ /dev/null @@ -1,114 +0,0 @@ -// Code generated by 'yaegi extract go/token'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["go/token/token"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ADD": reflect.ValueOf(token.ADD), - "ADD_ASSIGN": reflect.ValueOf(token.ADD_ASSIGN), - "AND": reflect.ValueOf(token.AND), - "AND_ASSIGN": reflect.ValueOf(token.AND_ASSIGN), - "AND_NOT": reflect.ValueOf(token.AND_NOT), - "AND_NOT_ASSIGN": reflect.ValueOf(token.AND_NOT_ASSIGN), - "ARROW": reflect.ValueOf(token.ARROW), - "ASSIGN": reflect.ValueOf(token.ASSIGN), - "BREAK": reflect.ValueOf(token.BREAK), - "CASE": reflect.ValueOf(token.CASE), - "CHAN": reflect.ValueOf(token.CHAN), - "CHAR": reflect.ValueOf(token.CHAR), - "COLON": reflect.ValueOf(token.COLON), - "COMMA": reflect.ValueOf(token.COMMA), - "COMMENT": reflect.ValueOf(token.COMMENT), - "CONST": reflect.ValueOf(token.CONST), - "CONTINUE": reflect.ValueOf(token.CONTINUE), - "DEC": reflect.ValueOf(token.DEC), - "DEFAULT": reflect.ValueOf(token.DEFAULT), - "DEFER": reflect.ValueOf(token.DEFER), - "DEFINE": reflect.ValueOf(token.DEFINE), - "ELLIPSIS": reflect.ValueOf(token.ELLIPSIS), - "ELSE": reflect.ValueOf(token.ELSE), - "EOF": reflect.ValueOf(token.EOF), - "EQL": reflect.ValueOf(token.EQL), - "FALLTHROUGH": reflect.ValueOf(token.FALLTHROUGH), - "FLOAT": reflect.ValueOf(token.FLOAT), - "FOR": reflect.ValueOf(token.FOR), - "FUNC": reflect.ValueOf(token.FUNC), - "GEQ": reflect.ValueOf(token.GEQ), - "GO": reflect.ValueOf(token.GO), - "GOTO": reflect.ValueOf(token.GOTO), - "GTR": reflect.ValueOf(token.GTR), - "HighestPrec": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IDENT": reflect.ValueOf(token.IDENT), - "IF": reflect.ValueOf(token.IF), - "ILLEGAL": reflect.ValueOf(token.ILLEGAL), - "IMAG": reflect.ValueOf(token.IMAG), - "IMPORT": reflect.ValueOf(token.IMPORT), - "INC": reflect.ValueOf(token.INC), - "INT": reflect.ValueOf(token.INT), - "INTERFACE": reflect.ValueOf(token.INTERFACE), - "IsExported": reflect.ValueOf(token.IsExported), - "IsIdentifier": reflect.ValueOf(token.IsIdentifier), - "IsKeyword": reflect.ValueOf(token.IsKeyword), - "LAND": reflect.ValueOf(token.LAND), - "LBRACE": reflect.ValueOf(token.LBRACE), - "LBRACK": reflect.ValueOf(token.LBRACK), - "LEQ": reflect.ValueOf(token.LEQ), - "LOR": reflect.ValueOf(token.LOR), - "LPAREN": reflect.ValueOf(token.LPAREN), - "LSS": reflect.ValueOf(token.LSS), - "Lookup": reflect.ValueOf(token.Lookup), - "LowestPrec": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP": reflect.ValueOf(token.MAP), - "MUL": reflect.ValueOf(token.MUL), - "MUL_ASSIGN": reflect.ValueOf(token.MUL_ASSIGN), - "NEQ": reflect.ValueOf(token.NEQ), - "NOT": reflect.ValueOf(token.NOT), - "NewFileSet": reflect.ValueOf(token.NewFileSet), - "NoPos": reflect.ValueOf(token.NoPos), - "OR": reflect.ValueOf(token.OR), - "OR_ASSIGN": reflect.ValueOf(token.OR_ASSIGN), - "PACKAGE": reflect.ValueOf(token.PACKAGE), - "PERIOD": reflect.ValueOf(token.PERIOD), - "QUO": reflect.ValueOf(token.QUO), - "QUO_ASSIGN": reflect.ValueOf(token.QUO_ASSIGN), - "RANGE": reflect.ValueOf(token.RANGE), - "RBRACE": reflect.ValueOf(token.RBRACE), - "RBRACK": reflect.ValueOf(token.RBRACK), - "REM": reflect.ValueOf(token.REM), - "REM_ASSIGN": reflect.ValueOf(token.REM_ASSIGN), - "RETURN": reflect.ValueOf(token.RETURN), - "RPAREN": reflect.ValueOf(token.RPAREN), - "SELECT": reflect.ValueOf(token.SELECT), - "SEMICOLON": reflect.ValueOf(token.SEMICOLON), - "SHL": reflect.ValueOf(token.SHL), - "SHL_ASSIGN": reflect.ValueOf(token.SHL_ASSIGN), - "SHR": reflect.ValueOf(token.SHR), - "SHR_ASSIGN": reflect.ValueOf(token.SHR_ASSIGN), - "STRING": reflect.ValueOf(token.STRING), - "STRUCT": reflect.ValueOf(token.STRUCT), - "SUB": reflect.ValueOf(token.SUB), - "SUB_ASSIGN": reflect.ValueOf(token.SUB_ASSIGN), - "SWITCH": reflect.ValueOf(token.SWITCH), - "TYPE": reflect.ValueOf(token.TYPE), - "UnaryPrec": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VAR": reflect.ValueOf(token.VAR), - "XOR": reflect.ValueOf(token.XOR), - "XOR_ASSIGN": reflect.ValueOf(token.XOR_ASSIGN), - - // type definitions - "File": reflect.ValueOf((*token.File)(nil)), - "FileSet": reflect.ValueOf((*token.FileSet)(nil)), - "Pos": reflect.ValueOf((*token.Pos)(nil)), - "Position": reflect.ValueOf((*token.Position)(nil)), - "Token": reflect.ValueOf((*token.Token)(nil)), - } -} diff --git a/stdlib/go1_16_go_types.go b/stdlib/go1_16_go_types.go deleted file mode 100644 index 2ebe4b3e0..000000000 --- a/stdlib/go1_16_go_types.go +++ /dev/null @@ -1,261 +0,0 @@ -// Code generated by 'yaegi extract go/types'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/token" - "go/types" - "reflect" -) - -func init() { - Symbols["go/types/types"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AssertableTo": reflect.ValueOf(types.AssertableTo), - "AssignableTo": reflect.ValueOf(types.AssignableTo), - "Bool": reflect.ValueOf(types.Bool), - "Byte": reflect.ValueOf(types.Byte), - "CheckExpr": reflect.ValueOf(types.CheckExpr), - "Comparable": reflect.ValueOf(types.Comparable), - "Complex128": reflect.ValueOf(types.Complex128), - "Complex64": reflect.ValueOf(types.Complex64), - "ConvertibleTo": reflect.ValueOf(types.ConvertibleTo), - "DefPredeclaredTestFuncs": reflect.ValueOf(types.DefPredeclaredTestFuncs), - "Default": reflect.ValueOf(types.Default), - "Eval": reflect.ValueOf(types.Eval), - "ExprString": reflect.ValueOf(types.ExprString), - "FieldVal": reflect.ValueOf(types.FieldVal), - "Float32": reflect.ValueOf(types.Float32), - "Float64": reflect.ValueOf(types.Float64), - "Id": reflect.ValueOf(types.Id), - "Identical": reflect.ValueOf(types.Identical), - "IdenticalIgnoreTags": reflect.ValueOf(types.IdenticalIgnoreTags), - "Implements": reflect.ValueOf(types.Implements), - "Int": reflect.ValueOf(types.Int), - "Int16": reflect.ValueOf(types.Int16), - "Int32": reflect.ValueOf(types.Int32), - "Int64": reflect.ValueOf(types.Int64), - "Int8": reflect.ValueOf(types.Int8), - "Invalid": reflect.ValueOf(types.Invalid), - "IsBoolean": reflect.ValueOf(types.IsBoolean), - "IsComplex": reflect.ValueOf(types.IsComplex), - "IsConstType": reflect.ValueOf(types.IsConstType), - "IsFloat": reflect.ValueOf(types.IsFloat), - "IsInteger": reflect.ValueOf(types.IsInteger), - "IsInterface": reflect.ValueOf(types.IsInterface), - "IsNumeric": reflect.ValueOf(types.IsNumeric), - "IsOrdered": reflect.ValueOf(types.IsOrdered), - "IsString": reflect.ValueOf(types.IsString), - "IsUnsigned": reflect.ValueOf(types.IsUnsigned), - "IsUntyped": reflect.ValueOf(types.IsUntyped), - "LookupFieldOrMethod": reflect.ValueOf(types.LookupFieldOrMethod), - "MethodExpr": reflect.ValueOf(types.MethodExpr), - "MethodVal": reflect.ValueOf(types.MethodVal), - "MissingMethod": reflect.ValueOf(types.MissingMethod), - "NewArray": reflect.ValueOf(types.NewArray), - "NewChan": reflect.ValueOf(types.NewChan), - "NewChecker": reflect.ValueOf(types.NewChecker), - "NewConst": reflect.ValueOf(types.NewConst), - "NewField": reflect.ValueOf(types.NewField), - "NewFunc": reflect.ValueOf(types.NewFunc), - "NewInterface": reflect.ValueOf(types.NewInterface), - "NewInterfaceType": reflect.ValueOf(types.NewInterfaceType), - "NewLabel": reflect.ValueOf(types.NewLabel), - "NewMap": reflect.ValueOf(types.NewMap), - "NewMethodSet": reflect.ValueOf(types.NewMethodSet), - "NewNamed": reflect.ValueOf(types.NewNamed), - "NewPackage": reflect.ValueOf(types.NewPackage), - "NewParam": reflect.ValueOf(types.NewParam), - "NewPkgName": reflect.ValueOf(types.NewPkgName), - "NewPointer": reflect.ValueOf(types.NewPointer), - "NewScope": reflect.ValueOf(types.NewScope), - "NewSignature": reflect.ValueOf(types.NewSignature), - "NewSlice": reflect.ValueOf(types.NewSlice), - "NewStruct": reflect.ValueOf(types.NewStruct), - "NewTuple": reflect.ValueOf(types.NewTuple), - "NewTypeName": reflect.ValueOf(types.NewTypeName), - "NewVar": reflect.ValueOf(types.NewVar), - "ObjectString": reflect.ValueOf(types.ObjectString), - "RecvOnly": reflect.ValueOf(types.RecvOnly), - "RelativeTo": reflect.ValueOf(types.RelativeTo), - "Rune": reflect.ValueOf(types.Rune), - "SelectionString": reflect.ValueOf(types.SelectionString), - "SendOnly": reflect.ValueOf(types.SendOnly), - "SendRecv": reflect.ValueOf(types.SendRecv), - "SizesFor": reflect.ValueOf(types.SizesFor), - "String": reflect.ValueOf(types.String), - "Typ": reflect.ValueOf(&types.Typ).Elem(), - "TypeString": reflect.ValueOf(types.TypeString), - "Uint": reflect.ValueOf(types.Uint), - "Uint16": reflect.ValueOf(types.Uint16), - "Uint32": reflect.ValueOf(types.Uint32), - "Uint64": reflect.ValueOf(types.Uint64), - "Uint8": reflect.ValueOf(types.Uint8), - "Uintptr": reflect.ValueOf(types.Uintptr), - "Universe": reflect.ValueOf(&types.Universe).Elem(), - "Unsafe": reflect.ValueOf(&types.Unsafe).Elem(), - "UnsafePointer": reflect.ValueOf(types.UnsafePointer), - "UntypedBool": reflect.ValueOf(types.UntypedBool), - "UntypedComplex": reflect.ValueOf(types.UntypedComplex), - "UntypedFloat": reflect.ValueOf(types.UntypedFloat), - "UntypedInt": reflect.ValueOf(types.UntypedInt), - "UntypedNil": reflect.ValueOf(types.UntypedNil), - "UntypedRune": reflect.ValueOf(types.UntypedRune), - "UntypedString": reflect.ValueOf(types.UntypedString), - "WriteExpr": reflect.ValueOf(types.WriteExpr), - "WriteSignature": reflect.ValueOf(types.WriteSignature), - "WriteType": reflect.ValueOf(types.WriteType), - - // type definitions - "Array": reflect.ValueOf((*types.Array)(nil)), - "Basic": reflect.ValueOf((*types.Basic)(nil)), - "BasicInfo": reflect.ValueOf((*types.BasicInfo)(nil)), - "BasicKind": reflect.ValueOf((*types.BasicKind)(nil)), - "Builtin": reflect.ValueOf((*types.Builtin)(nil)), - "Chan": reflect.ValueOf((*types.Chan)(nil)), - "ChanDir": reflect.ValueOf((*types.ChanDir)(nil)), - "Checker": reflect.ValueOf((*types.Checker)(nil)), - "Config": reflect.ValueOf((*types.Config)(nil)), - "Const": reflect.ValueOf((*types.Const)(nil)), - "Error": reflect.ValueOf((*types.Error)(nil)), - "Func": reflect.ValueOf((*types.Func)(nil)), - "ImportMode": reflect.ValueOf((*types.ImportMode)(nil)), - "Importer": reflect.ValueOf((*types.Importer)(nil)), - "ImporterFrom": reflect.ValueOf((*types.ImporterFrom)(nil)), - "Info": reflect.ValueOf((*types.Info)(nil)), - "Initializer": reflect.ValueOf((*types.Initializer)(nil)), - "Interface": reflect.ValueOf((*types.Interface)(nil)), - "Label": reflect.ValueOf((*types.Label)(nil)), - "Map": reflect.ValueOf((*types.Map)(nil)), - "MethodSet": reflect.ValueOf((*types.MethodSet)(nil)), - "Named": reflect.ValueOf((*types.Named)(nil)), - "Nil": reflect.ValueOf((*types.Nil)(nil)), - "Object": reflect.ValueOf((*types.Object)(nil)), - "Package": reflect.ValueOf((*types.Package)(nil)), - "PkgName": reflect.ValueOf((*types.PkgName)(nil)), - "Pointer": reflect.ValueOf((*types.Pointer)(nil)), - "Qualifier": reflect.ValueOf((*types.Qualifier)(nil)), - "Scope": reflect.ValueOf((*types.Scope)(nil)), - "Selection": reflect.ValueOf((*types.Selection)(nil)), - "SelectionKind": reflect.ValueOf((*types.SelectionKind)(nil)), - "Signature": reflect.ValueOf((*types.Signature)(nil)), - "Sizes": reflect.ValueOf((*types.Sizes)(nil)), - "Slice": reflect.ValueOf((*types.Slice)(nil)), - "StdSizes": reflect.ValueOf((*types.StdSizes)(nil)), - "Struct": reflect.ValueOf((*types.Struct)(nil)), - "Tuple": reflect.ValueOf((*types.Tuple)(nil)), - "Type": reflect.ValueOf((*types.Type)(nil)), - "TypeAndValue": reflect.ValueOf((*types.TypeAndValue)(nil)), - "TypeName": reflect.ValueOf((*types.TypeName)(nil)), - "Var": reflect.ValueOf((*types.Var)(nil)), - - // interface wrapper definitions - "_Importer": reflect.ValueOf((*_go_types_Importer)(nil)), - "_ImporterFrom": reflect.ValueOf((*_go_types_ImporterFrom)(nil)), - "_Object": reflect.ValueOf((*_go_types_Object)(nil)), - "_Sizes": reflect.ValueOf((*_go_types_Sizes)(nil)), - "_Type": reflect.ValueOf((*_go_types_Type)(nil)), - } -} - -// _go_types_Importer is an interface wrapper for Importer type -type _go_types_Importer struct { - IValue interface{} - WImport func(path string) (*types.Package, error) -} - -func (W _go_types_Importer) Import(path string) (*types.Package, error) { - return W.WImport(path) -} - -// _go_types_ImporterFrom is an interface wrapper for ImporterFrom type -type _go_types_ImporterFrom struct { - IValue interface{} - WImport func(path string) (*types.Package, error) - WImportFrom func(path string, dir string, mode types.ImportMode) (*types.Package, error) -} - -func (W _go_types_ImporterFrom) Import(path string) (*types.Package, error) { - return W.WImport(path) -} -func (W _go_types_ImporterFrom) ImportFrom(path string, dir string, mode types.ImportMode) (*types.Package, error) { - return W.WImportFrom(path, dir, mode) -} - -// _go_types_Object is an interface wrapper for Object type -type _go_types_Object struct { - IValue interface{} - WExported func() bool - WId func() string - WName func() string - WParent func() *types.Scope - WPkg func() *types.Package - WPos func() token.Pos - WString func() string - WType func() types.Type -} - -func (W _go_types_Object) Exported() bool { - return W.WExported() -} -func (W _go_types_Object) Id() string { - return W.WId() -} -func (W _go_types_Object) Name() string { - return W.WName() -} -func (W _go_types_Object) Parent() *types.Scope { - return W.WParent() -} -func (W _go_types_Object) Pkg() *types.Package { - return W.WPkg() -} -func (W _go_types_Object) Pos() token.Pos { - return W.WPos() -} -func (W _go_types_Object) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _go_types_Object) Type() types.Type { - return W.WType() -} - -// _go_types_Sizes is an interface wrapper for Sizes type -type _go_types_Sizes struct { - IValue interface{} - WAlignof func(T types.Type) int64 - WOffsetsof func(fields []*types.Var) []int64 - WSizeof func(T types.Type) int64 -} - -func (W _go_types_Sizes) Alignof(T types.Type) int64 { - return W.WAlignof(T) -} -func (W _go_types_Sizes) Offsetsof(fields []*types.Var) []int64 { - return W.WOffsetsof(fields) -} -func (W _go_types_Sizes) Sizeof(T types.Type) int64 { - return W.WSizeof(T) -} - -// _go_types_Type is an interface wrapper for Type type -type _go_types_Type struct { - IValue interface{} - WString func() string - WUnderlying func() types.Type -} - -func (W _go_types_Type) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _go_types_Type) Underlying() types.Type { - return W.WUnderlying() -} diff --git a/stdlib/go1_16_hash.go b/stdlib/go1_16_hash.go deleted file mode 100644 index 9b06307c8..000000000 --- a/stdlib/go1_16_hash.go +++ /dev/null @@ -1,110 +0,0 @@ -// Code generated by 'yaegi extract hash'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "hash" - "reflect" -) - -func init() { - Symbols["hash/hash"] = map[string]reflect.Value{ - // type definitions - "Hash": reflect.ValueOf((*hash.Hash)(nil)), - "Hash32": reflect.ValueOf((*hash.Hash32)(nil)), - "Hash64": reflect.ValueOf((*hash.Hash64)(nil)), - - // interface wrapper definitions - "_Hash": reflect.ValueOf((*_hash_Hash)(nil)), - "_Hash32": reflect.ValueOf((*_hash_Hash32)(nil)), - "_Hash64": reflect.ValueOf((*_hash_Hash64)(nil)), - } -} - -// _hash_Hash is an interface wrapper for Hash type -type _hash_Hash struct { - IValue interface{} - WBlockSize func() int - WReset func() - WSize func() int - WSum func(b []byte) []byte - WWrite func(p []byte) (n int, err error) -} - -func (W _hash_Hash) BlockSize() int { - return W.WBlockSize() -} -func (W _hash_Hash) Reset() { - W.WReset() -} -func (W _hash_Hash) Size() int { - return W.WSize() -} -func (W _hash_Hash) Sum(b []byte) []byte { - return W.WSum(b) -} -func (W _hash_Hash) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _hash_Hash32 is an interface wrapper for Hash32 type -type _hash_Hash32 struct { - IValue interface{} - WBlockSize func() int - WReset func() - WSize func() int - WSum func(b []byte) []byte - WSum32 func() uint32 - WWrite func(p []byte) (n int, err error) -} - -func (W _hash_Hash32) BlockSize() int { - return W.WBlockSize() -} -func (W _hash_Hash32) Reset() { - W.WReset() -} -func (W _hash_Hash32) Size() int { - return W.WSize() -} -func (W _hash_Hash32) Sum(b []byte) []byte { - return W.WSum(b) -} -func (W _hash_Hash32) Sum32() uint32 { - return W.WSum32() -} -func (W _hash_Hash32) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _hash_Hash64 is an interface wrapper for Hash64 type -type _hash_Hash64 struct { - IValue interface{} - WBlockSize func() int - WReset func() - WSize func() int - WSum func(b []byte) []byte - WSum64 func() uint64 - WWrite func(p []byte) (n int, err error) -} - -func (W _hash_Hash64) BlockSize() int { - return W.WBlockSize() -} -func (W _hash_Hash64) Reset() { - W.WReset() -} -func (W _hash_Hash64) Size() int { - return W.WSize() -} -func (W _hash_Hash64) Sum(b []byte) []byte { - return W.WSum(b) -} -func (W _hash_Hash64) Sum64() uint64 { - return W.WSum64() -} -func (W _hash_Hash64) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} diff --git a/stdlib/go1_16_hash_adler32.go b/stdlib/go1_16_hash_adler32.go deleted file mode 100644 index 68001ee47..000000000 --- a/stdlib/go1_16_hash_adler32.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "hash/adler32" - "reflect" -) - -func init() { - Symbols["hash/adler32/adler32"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Checksum": reflect.ValueOf(adler32.Checksum), - "New": reflect.ValueOf(adler32.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - } -} diff --git a/stdlib/go1_16_hash_crc32.go b/stdlib/go1_16_hash_crc32.go deleted file mode 100644 index a3cacd8eb..000000000 --- a/stdlib/go1_16_hash_crc32.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "hash/crc32" - "reflect" -) - -func init() { - Symbols["hash/crc32/crc32"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Castagnoli": reflect.ValueOf(constant.MakeFromLiteral("2197175160", token.INT, 0)), - "Checksum": reflect.ValueOf(crc32.Checksum), - "ChecksumIEEE": reflect.ValueOf(crc32.ChecksumIEEE), - "IEEE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "IEEETable": reflect.ValueOf(&crc32.IEEETable).Elem(), - "Koopman": reflect.ValueOf(constant.MakeFromLiteral("3945912366", token.INT, 0)), - "MakeTable": reflect.ValueOf(crc32.MakeTable), - "New": reflect.ValueOf(crc32.New), - "NewIEEE": reflect.ValueOf(crc32.NewIEEE), - "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Update": reflect.ValueOf(crc32.Update), - - // type definitions - "Table": reflect.ValueOf((*crc32.Table)(nil)), - } -} diff --git a/stdlib/go1_16_hash_crc64.go b/stdlib/go1_16_hash_crc64.go deleted file mode 100644 index 396229a2b..000000000 --- a/stdlib/go1_16_hash_crc64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "hash/crc64" - "reflect" -) - -func init() { - Symbols["hash/crc64/crc64"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Checksum": reflect.ValueOf(crc64.Checksum), - "ECMA": reflect.ValueOf(constant.MakeFromLiteral("14514072000185962306", token.INT, 0)), - "ISO": reflect.ValueOf(constant.MakeFromLiteral("15564440312192434176", token.INT, 0)), - "MakeTable": reflect.ValueOf(crc64.MakeTable), - "New": reflect.ValueOf(crc64.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Update": reflect.ValueOf(crc64.Update), - - // type definitions - "Table": reflect.ValueOf((*crc64.Table)(nil)), - } -} diff --git a/stdlib/go1_16_hash_fnv.go b/stdlib/go1_16_hash_fnv.go deleted file mode 100644 index e8d93f838..000000000 --- a/stdlib/go1_16_hash_fnv.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "hash/fnv" - "reflect" -) - -func init() { - Symbols["hash/fnv/fnv"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New128": reflect.ValueOf(fnv.New128), - "New128a": reflect.ValueOf(fnv.New128a), - "New32": reflect.ValueOf(fnv.New32), - "New32a": reflect.ValueOf(fnv.New32a), - "New64": reflect.ValueOf(fnv.New64), - "New64a": reflect.ValueOf(fnv.New64a), - } -} diff --git a/stdlib/go1_16_hash_maphash.go b/stdlib/go1_16_hash_maphash.go deleted file mode 100644 index 72edfcb08..000000000 --- a/stdlib/go1_16_hash_maphash.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "hash/maphash" - "reflect" -) - -func init() { - Symbols["hash/maphash/maphash"] = map[string]reflect.Value{ - // function, constant and variable definitions - "MakeSeed": reflect.ValueOf(maphash.MakeSeed), - - // type definitions - "Hash": reflect.ValueOf((*maphash.Hash)(nil)), - "Seed": reflect.ValueOf((*maphash.Seed)(nil)), - } -} diff --git a/stdlib/go1_16_html.go b/stdlib/go1_16_html.go deleted file mode 100644 index 99b782fd8..000000000 --- a/stdlib/go1_16_html.go +++ /dev/null @@ -1,18 +0,0 @@ -// Code generated by 'yaegi extract html'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "html" - "reflect" -) - -func init() { - Symbols["html/html"] = map[string]reflect.Value{ - // function, constant and variable definitions - "EscapeString": reflect.ValueOf(html.EscapeString), - "UnescapeString": reflect.ValueOf(html.UnescapeString), - } -} diff --git a/stdlib/go1_16_html_template.go b/stdlib/go1_16_html_template.go deleted file mode 100644 index 720aae8c5..000000000 --- a/stdlib/go1_16_html_template.go +++ /dev/null @@ -1,54 +0,0 @@ -// Code generated by 'yaegi extract html/template'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "html/template" - "reflect" -) - -func init() { - Symbols["html/template/template"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrAmbigContext": reflect.ValueOf(template.ErrAmbigContext), - "ErrBadHTML": reflect.ValueOf(template.ErrBadHTML), - "ErrBranchEnd": reflect.ValueOf(template.ErrBranchEnd), - "ErrEndContext": reflect.ValueOf(template.ErrEndContext), - "ErrNoSuchTemplate": reflect.ValueOf(template.ErrNoSuchTemplate), - "ErrOutputContext": reflect.ValueOf(template.ErrOutputContext), - "ErrPartialCharset": reflect.ValueOf(template.ErrPartialCharset), - "ErrPartialEscape": reflect.ValueOf(template.ErrPartialEscape), - "ErrPredefinedEscaper": reflect.ValueOf(template.ErrPredefinedEscaper), - "ErrRangeLoopReentry": reflect.ValueOf(template.ErrRangeLoopReentry), - "ErrSlashAmbig": reflect.ValueOf(template.ErrSlashAmbig), - "HTMLEscape": reflect.ValueOf(template.HTMLEscape), - "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), - "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), - "IsTrue": reflect.ValueOf(template.IsTrue), - "JSEscape": reflect.ValueOf(template.JSEscape), - "JSEscapeString": reflect.ValueOf(template.JSEscapeString), - "JSEscaper": reflect.ValueOf(template.JSEscaper), - "Must": reflect.ValueOf(template.Must), - "New": reflect.ValueOf(template.New), - "OK": reflect.ValueOf(template.OK), - "ParseFS": reflect.ValueOf(template.ParseFS), - "ParseFiles": reflect.ValueOf(template.ParseFiles), - "ParseGlob": reflect.ValueOf(template.ParseGlob), - "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), - - // type definitions - "CSS": reflect.ValueOf((*template.CSS)(nil)), - "Error": reflect.ValueOf((*template.Error)(nil)), - "ErrorCode": reflect.ValueOf((*template.ErrorCode)(nil)), - "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), - "HTML": reflect.ValueOf((*template.HTML)(nil)), - "HTMLAttr": reflect.ValueOf((*template.HTMLAttr)(nil)), - "JS": reflect.ValueOf((*template.JS)(nil)), - "JSStr": reflect.ValueOf((*template.JSStr)(nil)), - "Srcset": reflect.ValueOf((*template.Srcset)(nil)), - "Template": reflect.ValueOf((*template.Template)(nil)), - "URL": reflect.ValueOf((*template.URL)(nil)), - } -} diff --git a/stdlib/go1_16_image.go b/stdlib/go1_16_image.go deleted file mode 100644 index 4dd56edaf..000000000 --- a/stdlib/go1_16_image.go +++ /dev/null @@ -1,113 +0,0 @@ -// Code generated by 'yaegi extract image'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "image" - "image/color" - "reflect" -) - -func init() { - Symbols["image/image"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Black": reflect.ValueOf(&image.Black).Elem(), - "Decode": reflect.ValueOf(image.Decode), - "DecodeConfig": reflect.ValueOf(image.DecodeConfig), - "ErrFormat": reflect.ValueOf(&image.ErrFormat).Elem(), - "NewAlpha": reflect.ValueOf(image.NewAlpha), - "NewAlpha16": reflect.ValueOf(image.NewAlpha16), - "NewCMYK": reflect.ValueOf(image.NewCMYK), - "NewGray": reflect.ValueOf(image.NewGray), - "NewGray16": reflect.ValueOf(image.NewGray16), - "NewNRGBA": reflect.ValueOf(image.NewNRGBA), - "NewNRGBA64": reflect.ValueOf(image.NewNRGBA64), - "NewNYCbCrA": reflect.ValueOf(image.NewNYCbCrA), - "NewPaletted": reflect.ValueOf(image.NewPaletted), - "NewRGBA": reflect.ValueOf(image.NewRGBA), - "NewRGBA64": reflect.ValueOf(image.NewRGBA64), - "NewUniform": reflect.ValueOf(image.NewUniform), - "NewYCbCr": reflect.ValueOf(image.NewYCbCr), - "Opaque": reflect.ValueOf(&image.Opaque).Elem(), - "Pt": reflect.ValueOf(image.Pt), - "Rect": reflect.ValueOf(image.Rect), - "RegisterFormat": reflect.ValueOf(image.RegisterFormat), - "Transparent": reflect.ValueOf(&image.Transparent).Elem(), - "White": reflect.ValueOf(&image.White).Elem(), - "YCbCrSubsampleRatio410": reflect.ValueOf(image.YCbCrSubsampleRatio410), - "YCbCrSubsampleRatio411": reflect.ValueOf(image.YCbCrSubsampleRatio411), - "YCbCrSubsampleRatio420": reflect.ValueOf(image.YCbCrSubsampleRatio420), - "YCbCrSubsampleRatio422": reflect.ValueOf(image.YCbCrSubsampleRatio422), - "YCbCrSubsampleRatio440": reflect.ValueOf(image.YCbCrSubsampleRatio440), - "YCbCrSubsampleRatio444": reflect.ValueOf(image.YCbCrSubsampleRatio444), - "ZP": reflect.ValueOf(&image.ZP).Elem(), - "ZR": reflect.ValueOf(&image.ZR).Elem(), - - // type definitions - "Alpha": reflect.ValueOf((*image.Alpha)(nil)), - "Alpha16": reflect.ValueOf((*image.Alpha16)(nil)), - "CMYK": reflect.ValueOf((*image.CMYK)(nil)), - "Config": reflect.ValueOf((*image.Config)(nil)), - "Gray": reflect.ValueOf((*image.Gray)(nil)), - "Gray16": reflect.ValueOf((*image.Gray16)(nil)), - "Image": reflect.ValueOf((*image.Image)(nil)), - "NRGBA": reflect.ValueOf((*image.NRGBA)(nil)), - "NRGBA64": reflect.ValueOf((*image.NRGBA64)(nil)), - "NYCbCrA": reflect.ValueOf((*image.NYCbCrA)(nil)), - "Paletted": reflect.ValueOf((*image.Paletted)(nil)), - "PalettedImage": reflect.ValueOf((*image.PalettedImage)(nil)), - "Point": reflect.ValueOf((*image.Point)(nil)), - "RGBA": reflect.ValueOf((*image.RGBA)(nil)), - "RGBA64": reflect.ValueOf((*image.RGBA64)(nil)), - "Rectangle": reflect.ValueOf((*image.Rectangle)(nil)), - "Uniform": reflect.ValueOf((*image.Uniform)(nil)), - "YCbCr": reflect.ValueOf((*image.YCbCr)(nil)), - "YCbCrSubsampleRatio": reflect.ValueOf((*image.YCbCrSubsampleRatio)(nil)), - - // interface wrapper definitions - "_Image": reflect.ValueOf((*_image_Image)(nil)), - "_PalettedImage": reflect.ValueOf((*_image_PalettedImage)(nil)), - } -} - -// _image_Image is an interface wrapper for Image type -type _image_Image struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorModel func() color.Model -} - -func (W _image_Image) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_Image) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_Image) ColorModel() color.Model { - return W.WColorModel() -} - -// _image_PalettedImage is an interface wrapper for PalettedImage type -type _image_PalettedImage struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorIndexAt func(x int, y int) uint8 - WColorModel func() color.Model -} - -func (W _image_PalettedImage) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_PalettedImage) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_PalettedImage) ColorIndexAt(x int, y int) uint8 { - return W.WColorIndexAt(x, y) -} -func (W _image_PalettedImage) ColorModel() color.Model { - return W.WColorModel() -} diff --git a/stdlib/go1_16_image_color.go b/stdlib/go1_16_image_color.go deleted file mode 100644 index 4044889f3..000000000 --- a/stdlib/go1_16_image_color.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by 'yaegi extract image/color'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "image/color" - "reflect" -) - -func init() { - Symbols["image/color/color"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Alpha16Model": reflect.ValueOf(&color.Alpha16Model).Elem(), - "AlphaModel": reflect.ValueOf(&color.AlphaModel).Elem(), - "Black": reflect.ValueOf(&color.Black).Elem(), - "CMYKModel": reflect.ValueOf(&color.CMYKModel).Elem(), - "CMYKToRGB": reflect.ValueOf(color.CMYKToRGB), - "Gray16Model": reflect.ValueOf(&color.Gray16Model).Elem(), - "GrayModel": reflect.ValueOf(&color.GrayModel).Elem(), - "ModelFunc": reflect.ValueOf(color.ModelFunc), - "NRGBA64Model": reflect.ValueOf(&color.NRGBA64Model).Elem(), - "NRGBAModel": reflect.ValueOf(&color.NRGBAModel).Elem(), - "NYCbCrAModel": reflect.ValueOf(&color.NYCbCrAModel).Elem(), - "Opaque": reflect.ValueOf(&color.Opaque).Elem(), - "RGBA64Model": reflect.ValueOf(&color.RGBA64Model).Elem(), - "RGBAModel": reflect.ValueOf(&color.RGBAModel).Elem(), - "RGBToCMYK": reflect.ValueOf(color.RGBToCMYK), - "RGBToYCbCr": reflect.ValueOf(color.RGBToYCbCr), - "Transparent": reflect.ValueOf(&color.Transparent).Elem(), - "White": reflect.ValueOf(&color.White).Elem(), - "YCbCrModel": reflect.ValueOf(&color.YCbCrModel).Elem(), - "YCbCrToRGB": reflect.ValueOf(color.YCbCrToRGB), - - // type definitions - "Alpha": reflect.ValueOf((*color.Alpha)(nil)), - "Alpha16": reflect.ValueOf((*color.Alpha16)(nil)), - "CMYK": reflect.ValueOf((*color.CMYK)(nil)), - "Color": reflect.ValueOf((*color.Color)(nil)), - "Gray": reflect.ValueOf((*color.Gray)(nil)), - "Gray16": reflect.ValueOf((*color.Gray16)(nil)), - "Model": reflect.ValueOf((*color.Model)(nil)), - "NRGBA": reflect.ValueOf((*color.NRGBA)(nil)), - "NRGBA64": reflect.ValueOf((*color.NRGBA64)(nil)), - "NYCbCrA": reflect.ValueOf((*color.NYCbCrA)(nil)), - "Palette": reflect.ValueOf((*color.Palette)(nil)), - "RGBA": reflect.ValueOf((*color.RGBA)(nil)), - "RGBA64": reflect.ValueOf((*color.RGBA64)(nil)), - "YCbCr": reflect.ValueOf((*color.YCbCr)(nil)), - - // interface wrapper definitions - "_Color": reflect.ValueOf((*_image_color_Color)(nil)), - "_Model": reflect.ValueOf((*_image_color_Model)(nil)), - } -} - -// _image_color_Color is an interface wrapper for Color type -type _image_color_Color struct { - IValue interface{} - WRGBA func() (r uint32, g uint32, b uint32, a uint32) -} - -func (W _image_color_Color) RGBA() (r uint32, g uint32, b uint32, a uint32) { - return W.WRGBA() -} - -// _image_color_Model is an interface wrapper for Model type -type _image_color_Model struct { - IValue interface{} - WConvert func(c color.Color) color.Color -} - -func (W _image_color_Model) Convert(c color.Color) color.Color { - return W.WConvert(c) -} diff --git a/stdlib/go1_16_image_color_palette.go b/stdlib/go1_16_image_color_palette.go deleted file mode 100644 index b8a16024b..000000000 --- a/stdlib/go1_16_image_color_palette.go +++ /dev/null @@ -1,18 +0,0 @@ -// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "image/color/palette" - "reflect" -) - -func init() { - Symbols["image/color/palette/palette"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Plan9": reflect.ValueOf(&palette.Plan9).Elem(), - "WebSafe": reflect.ValueOf(&palette.WebSafe).Elem(), - } -} diff --git a/stdlib/go1_16_image_draw.go b/stdlib/go1_16_image_draw.go deleted file mode 100644 index 382850a0a..000000000 --- a/stdlib/go1_16_image_draw.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by 'yaegi extract image/draw'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "image" - "image/color" - "image/draw" - "reflect" -) - -func init() { - Symbols["image/draw/draw"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Draw": reflect.ValueOf(draw.Draw), - "DrawMask": reflect.ValueOf(draw.DrawMask), - "FloydSteinberg": reflect.ValueOf(&draw.FloydSteinberg).Elem(), - "Over": reflect.ValueOf(draw.Over), - "Src": reflect.ValueOf(draw.Src), - - // type definitions - "Drawer": reflect.ValueOf((*draw.Drawer)(nil)), - "Image": reflect.ValueOf((*draw.Image)(nil)), - "Op": reflect.ValueOf((*draw.Op)(nil)), - "Quantizer": reflect.ValueOf((*draw.Quantizer)(nil)), - - // interface wrapper definitions - "_Drawer": reflect.ValueOf((*_image_draw_Drawer)(nil)), - "_Image": reflect.ValueOf((*_image_draw_Image)(nil)), - "_Quantizer": reflect.ValueOf((*_image_draw_Quantizer)(nil)), - } -} - -// _image_draw_Drawer is an interface wrapper for Drawer type -type _image_draw_Drawer struct { - IValue interface{} - WDraw func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) -} - -func (W _image_draw_Drawer) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) { - W.WDraw(dst, r, src, sp) -} - -// _image_draw_Image is an interface wrapper for Image type -type _image_draw_Image struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorModel func() color.Model - WSet func(x int, y int, c color.Color) -} - -func (W _image_draw_Image) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_draw_Image) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_draw_Image) ColorModel() color.Model { - return W.WColorModel() -} -func (W _image_draw_Image) Set(x int, y int, c color.Color) { - W.WSet(x, y, c) -} - -// _image_draw_Quantizer is an interface wrapper for Quantizer type -type _image_draw_Quantizer struct { - IValue interface{} - WQuantize func(p color.Palette, m image.Image) color.Palette -} - -func (W _image_draw_Quantizer) Quantize(p color.Palette, m image.Image) color.Palette { - return W.WQuantize(p, m) -} diff --git a/stdlib/go1_16_image_gif.go b/stdlib/go1_16_image_gif.go deleted file mode 100644 index 0314d5567..000000000 --- a/stdlib/go1_16_image_gif.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract image/gif'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "image/gif" - "reflect" -) - -func init() { - Symbols["image/gif/gif"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(gif.Decode), - "DecodeAll": reflect.ValueOf(gif.DecodeAll), - "DecodeConfig": reflect.ValueOf(gif.DecodeConfig), - "DisposalBackground": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DisposalNone": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DisposalPrevious": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Encode": reflect.ValueOf(gif.Encode), - "EncodeAll": reflect.ValueOf(gif.EncodeAll), - - // type definitions - "GIF": reflect.ValueOf((*gif.GIF)(nil)), - "Options": reflect.ValueOf((*gif.Options)(nil)), - } -} diff --git a/stdlib/go1_16_image_jpeg.go b/stdlib/go1_16_image_jpeg.go deleted file mode 100644 index 3d20f7586..000000000 --- a/stdlib/go1_16_image_jpeg.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "image/jpeg" - "reflect" -) - -func init() { - Symbols["image/jpeg/jpeg"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(jpeg.Decode), - "DecodeConfig": reflect.ValueOf(jpeg.DecodeConfig), - "DefaultQuality": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "Encode": reflect.ValueOf(jpeg.Encode), - - // type definitions - "FormatError": reflect.ValueOf((*jpeg.FormatError)(nil)), - "Options": reflect.ValueOf((*jpeg.Options)(nil)), - "Reader": reflect.ValueOf((*jpeg.Reader)(nil)), - "UnsupportedError": reflect.ValueOf((*jpeg.UnsupportedError)(nil)), - - // interface wrapper definitions - "_Reader": reflect.ValueOf((*_image_jpeg_Reader)(nil)), - } -} - -// _image_jpeg_Reader is an interface wrapper for Reader type -type _image_jpeg_Reader struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WReadByte func() (byte, error) -} - -func (W _image_jpeg_Reader) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _image_jpeg_Reader) ReadByte() (byte, error) { - return W.WReadByte() -} diff --git a/stdlib/go1_16_image_png.go b/stdlib/go1_16_image_png.go deleted file mode 100644 index 7d38b626a..000000000 --- a/stdlib/go1_16_image_png.go +++ /dev/null @@ -1,48 +0,0 @@ -// Code generated by 'yaegi extract image/png'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "image/png" - "reflect" -) - -func init() { - Symbols["image/png/png"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(png.BestCompression), - "BestSpeed": reflect.ValueOf(png.BestSpeed), - "Decode": reflect.ValueOf(png.Decode), - "DecodeConfig": reflect.ValueOf(png.DecodeConfig), - "DefaultCompression": reflect.ValueOf(png.DefaultCompression), - "Encode": reflect.ValueOf(png.Encode), - "NoCompression": reflect.ValueOf(png.NoCompression), - - // type definitions - "CompressionLevel": reflect.ValueOf((*png.CompressionLevel)(nil)), - "Encoder": reflect.ValueOf((*png.Encoder)(nil)), - "EncoderBuffer": reflect.ValueOf((*png.EncoderBuffer)(nil)), - "EncoderBufferPool": reflect.ValueOf((*png.EncoderBufferPool)(nil)), - "FormatError": reflect.ValueOf((*png.FormatError)(nil)), - "UnsupportedError": reflect.ValueOf((*png.UnsupportedError)(nil)), - - // interface wrapper definitions - "_EncoderBufferPool": reflect.ValueOf((*_image_png_EncoderBufferPool)(nil)), - } -} - -// _image_png_EncoderBufferPool is an interface wrapper for EncoderBufferPool type -type _image_png_EncoderBufferPool struct { - IValue interface{} - WGet func() *png.EncoderBuffer - WPut func(a0 *png.EncoderBuffer) -} - -func (W _image_png_EncoderBufferPool) Get() *png.EncoderBuffer { - return W.WGet() -} -func (W _image_png_EncoderBufferPool) Put(a0 *png.EncoderBuffer) { - W.WPut(a0) -} diff --git a/stdlib/go1_16_index_suffixarray.go b/stdlib/go1_16_index_suffixarray.go deleted file mode 100644 index 33bf20604..000000000 --- a/stdlib/go1_16_index_suffixarray.go +++ /dev/null @@ -1,20 +0,0 @@ -// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "index/suffixarray" - "reflect" -) - -func init() { - Symbols["index/suffixarray/suffixarray"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(suffixarray.New), - - // type definitions - "Index": reflect.ValueOf((*suffixarray.Index)(nil)), - } -} diff --git a/stdlib/go1_16_io.go b/stdlib/go1_16_io.go deleted file mode 100644 index 54bc88284..000000000 --- a/stdlib/go1_16_io.go +++ /dev/null @@ -1,366 +0,0 @@ -// Code generated by 'yaegi extract io'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "io" - "reflect" -) - -func init() { - Symbols["io/io"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Copy": reflect.ValueOf(io.Copy), - "CopyBuffer": reflect.ValueOf(io.CopyBuffer), - "CopyN": reflect.ValueOf(io.CopyN), - "Discard": reflect.ValueOf(&io.Discard).Elem(), - "EOF": reflect.ValueOf(&io.EOF).Elem(), - "ErrClosedPipe": reflect.ValueOf(&io.ErrClosedPipe).Elem(), - "ErrNoProgress": reflect.ValueOf(&io.ErrNoProgress).Elem(), - "ErrShortBuffer": reflect.ValueOf(&io.ErrShortBuffer).Elem(), - "ErrShortWrite": reflect.ValueOf(&io.ErrShortWrite).Elem(), - "ErrUnexpectedEOF": reflect.ValueOf(&io.ErrUnexpectedEOF).Elem(), - "LimitReader": reflect.ValueOf(io.LimitReader), - "MultiReader": reflect.ValueOf(io.MultiReader), - "MultiWriter": reflect.ValueOf(io.MultiWriter), - "NewSectionReader": reflect.ValueOf(io.NewSectionReader), - "NopCloser": reflect.ValueOf(io.NopCloser), - "Pipe": reflect.ValueOf(io.Pipe), - "ReadAll": reflect.ValueOf(io.ReadAll), - "ReadAtLeast": reflect.ValueOf(io.ReadAtLeast), - "ReadFull": reflect.ValueOf(io.ReadFull), - "SeekCurrent": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SeekEnd": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SeekStart": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TeeReader": reflect.ValueOf(io.TeeReader), - "WriteString": reflect.ValueOf(io.WriteString), - - // type definitions - "ByteReader": reflect.ValueOf((*io.ByteReader)(nil)), - "ByteScanner": reflect.ValueOf((*io.ByteScanner)(nil)), - "ByteWriter": reflect.ValueOf((*io.ByteWriter)(nil)), - "Closer": reflect.ValueOf((*io.Closer)(nil)), - "LimitedReader": reflect.ValueOf((*io.LimitedReader)(nil)), - "PipeReader": reflect.ValueOf((*io.PipeReader)(nil)), - "PipeWriter": reflect.ValueOf((*io.PipeWriter)(nil)), - "ReadCloser": reflect.ValueOf((*io.ReadCloser)(nil)), - "ReadSeekCloser": reflect.ValueOf((*io.ReadSeekCloser)(nil)), - "ReadSeeker": reflect.ValueOf((*io.ReadSeeker)(nil)), - "ReadWriteCloser": reflect.ValueOf((*io.ReadWriteCloser)(nil)), - "ReadWriteSeeker": reflect.ValueOf((*io.ReadWriteSeeker)(nil)), - "ReadWriter": reflect.ValueOf((*io.ReadWriter)(nil)), - "Reader": reflect.ValueOf((*io.Reader)(nil)), - "ReaderAt": reflect.ValueOf((*io.ReaderAt)(nil)), - "ReaderFrom": reflect.ValueOf((*io.ReaderFrom)(nil)), - "RuneReader": reflect.ValueOf((*io.RuneReader)(nil)), - "RuneScanner": reflect.ValueOf((*io.RuneScanner)(nil)), - "SectionReader": reflect.ValueOf((*io.SectionReader)(nil)), - "Seeker": reflect.ValueOf((*io.Seeker)(nil)), - "StringWriter": reflect.ValueOf((*io.StringWriter)(nil)), - "WriteCloser": reflect.ValueOf((*io.WriteCloser)(nil)), - "WriteSeeker": reflect.ValueOf((*io.WriteSeeker)(nil)), - "Writer": reflect.ValueOf((*io.Writer)(nil)), - "WriterAt": reflect.ValueOf((*io.WriterAt)(nil)), - "WriterTo": reflect.ValueOf((*io.WriterTo)(nil)), - - // interface wrapper definitions - "_ByteReader": reflect.ValueOf((*_io_ByteReader)(nil)), - "_ByteScanner": reflect.ValueOf((*_io_ByteScanner)(nil)), - "_ByteWriter": reflect.ValueOf((*_io_ByteWriter)(nil)), - "_Closer": reflect.ValueOf((*_io_Closer)(nil)), - "_ReadCloser": reflect.ValueOf((*_io_ReadCloser)(nil)), - "_ReadSeekCloser": reflect.ValueOf((*_io_ReadSeekCloser)(nil)), - "_ReadSeeker": reflect.ValueOf((*_io_ReadSeeker)(nil)), - "_ReadWriteCloser": reflect.ValueOf((*_io_ReadWriteCloser)(nil)), - "_ReadWriteSeeker": reflect.ValueOf((*_io_ReadWriteSeeker)(nil)), - "_ReadWriter": reflect.ValueOf((*_io_ReadWriter)(nil)), - "_Reader": reflect.ValueOf((*_io_Reader)(nil)), - "_ReaderAt": reflect.ValueOf((*_io_ReaderAt)(nil)), - "_ReaderFrom": reflect.ValueOf((*_io_ReaderFrom)(nil)), - "_RuneReader": reflect.ValueOf((*_io_RuneReader)(nil)), - "_RuneScanner": reflect.ValueOf((*_io_RuneScanner)(nil)), - "_Seeker": reflect.ValueOf((*_io_Seeker)(nil)), - "_StringWriter": reflect.ValueOf((*_io_StringWriter)(nil)), - "_WriteCloser": reflect.ValueOf((*_io_WriteCloser)(nil)), - "_WriteSeeker": reflect.ValueOf((*_io_WriteSeeker)(nil)), - "_Writer": reflect.ValueOf((*_io_Writer)(nil)), - "_WriterAt": reflect.ValueOf((*_io_WriterAt)(nil)), - "_WriterTo": reflect.ValueOf((*_io_WriterTo)(nil)), - } -} - -// _io_ByteReader is an interface wrapper for ByteReader type -type _io_ByteReader struct { - IValue interface{} - WReadByte func() (byte, error) -} - -func (W _io_ByteReader) ReadByte() (byte, error) { - return W.WReadByte() -} - -// _io_ByteScanner is an interface wrapper for ByteScanner type -type _io_ByteScanner struct { - IValue interface{} - WReadByte func() (byte, error) - WUnreadByte func() error -} - -func (W _io_ByteScanner) ReadByte() (byte, error) { - return W.WReadByte() -} -func (W _io_ByteScanner) UnreadByte() error { - return W.WUnreadByte() -} - -// _io_ByteWriter is an interface wrapper for ByteWriter type -type _io_ByteWriter struct { - IValue interface{} - WWriteByte func(c byte) error -} - -func (W _io_ByteWriter) WriteByte(c byte) error { - return W.WWriteByte(c) -} - -// _io_Closer is an interface wrapper for Closer type -type _io_Closer struct { - IValue interface{} - WClose func() error -} - -func (W _io_Closer) Close() error { - return W.WClose() -} - -// _io_ReadCloser is an interface wrapper for ReadCloser type -type _io_ReadCloser struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) -} - -func (W _io_ReadCloser) Close() error { - return W.WClose() -} -func (W _io_ReadCloser) Read(p []byte) (n int, err error) { - return W.WRead(p) -} - -// _io_ReadSeekCloser is an interface wrapper for ReadSeekCloser type -type _io_ReadSeekCloser struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _io_ReadSeekCloser) Close() error { - return W.WClose() -} -func (W _io_ReadSeekCloser) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadSeekCloser) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} - -// _io_ReadSeeker is an interface wrapper for ReadSeeker type -type _io_ReadSeeker struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _io_ReadSeeker) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadSeeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} - -// _io_ReadWriteCloser is an interface wrapper for ReadWriteCloser type -type _io_ReadWriteCloser struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_ReadWriteCloser) Close() error { - return W.WClose() -} -func (W _io_ReadWriteCloser) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadWriteCloser) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_ReadWriteSeeker is an interface wrapper for ReadWriteSeeker type -type _io_ReadWriteSeeker struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_ReadWriteSeeker) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadWriteSeeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} -func (W _io_ReadWriteSeeker) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_ReadWriter is an interface wrapper for ReadWriter type -type _io_ReadWriter struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_ReadWriter) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadWriter) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_Reader is an interface wrapper for Reader type -type _io_Reader struct { - IValue interface{} - WRead func(p []byte) (n int, err error) -} - -func (W _io_Reader) Read(p []byte) (n int, err error) { - return W.WRead(p) -} - -// _io_ReaderAt is an interface wrapper for ReaderAt type -type _io_ReaderAt struct { - IValue interface{} - WReadAt func(p []byte, off int64) (n int, err error) -} - -func (W _io_ReaderAt) ReadAt(p []byte, off int64) (n int, err error) { - return W.WReadAt(p, off) -} - -// _io_ReaderFrom is an interface wrapper for ReaderFrom type -type _io_ReaderFrom struct { - IValue interface{} - WReadFrom func(r io.Reader) (n int64, err error) -} - -func (W _io_ReaderFrom) ReadFrom(r io.Reader) (n int64, err error) { - return W.WReadFrom(r) -} - -// _io_RuneReader is an interface wrapper for RuneReader type -type _io_RuneReader struct { - IValue interface{} - WReadRune func() (r rune, size int, err error) -} - -func (W _io_RuneReader) ReadRune() (r rune, size int, err error) { - return W.WReadRune() -} - -// _io_RuneScanner is an interface wrapper for RuneScanner type -type _io_RuneScanner struct { - IValue interface{} - WReadRune func() (r rune, size int, err error) - WUnreadRune func() error -} - -func (W _io_RuneScanner) ReadRune() (r rune, size int, err error) { - return W.WReadRune() -} -func (W _io_RuneScanner) UnreadRune() error { - return W.WUnreadRune() -} - -// _io_Seeker is an interface wrapper for Seeker type -type _io_Seeker struct { - IValue interface{} - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _io_Seeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} - -// _io_StringWriter is an interface wrapper for StringWriter type -type _io_StringWriter struct { - IValue interface{} - WWriteString func(s string) (n int, err error) -} - -func (W _io_StringWriter) WriteString(s string) (n int, err error) { - return W.WWriteString(s) -} - -// _io_WriteCloser is an interface wrapper for WriteCloser type -type _io_WriteCloser struct { - IValue interface{} - WClose func() error - WWrite func(p []byte) (n int, err error) -} - -func (W _io_WriteCloser) Close() error { - return W.WClose() -} -func (W _io_WriteCloser) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_WriteSeeker is an interface wrapper for WriteSeeker type -type _io_WriteSeeker struct { - IValue interface{} - WSeek func(offset int64, whence int) (int64, error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_WriteSeeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} -func (W _io_WriteSeeker) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_Writer is an interface wrapper for Writer type -type _io_Writer struct { - IValue interface{} - WWrite func(p []byte) (n int, err error) -} - -func (W _io_Writer) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_WriterAt is an interface wrapper for WriterAt type -type _io_WriterAt struct { - IValue interface{} - WWriteAt func(p []byte, off int64) (n int, err error) -} - -func (W _io_WriterAt) WriteAt(p []byte, off int64) (n int, err error) { - return W.WWriteAt(p, off) -} - -// _io_WriterTo is an interface wrapper for WriterTo type -type _io_WriterTo struct { - IValue interface{} - WWriteTo func(w io.Writer) (n int64, err error) -} - -func (W _io_WriterTo) WriteTo(w io.Writer) (n int64, err error) { - return W.WWriteTo(w) -} diff --git a/stdlib/go1_16_io_fs.go b/stdlib/go1_16_io_fs.go deleted file mode 100644 index 4c54ba581..000000000 --- a/stdlib/go1_16_io_fs.go +++ /dev/null @@ -1,244 +0,0 @@ -// Code generated by 'yaegi extract io/fs'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "io/fs" - "reflect" - "time" -) - -func init() { - Symbols["io/fs/fs"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrClosed": reflect.ValueOf(&fs.ErrClosed).Elem(), - "ErrExist": reflect.ValueOf(&fs.ErrExist).Elem(), - "ErrInvalid": reflect.ValueOf(&fs.ErrInvalid).Elem(), - "ErrNotExist": reflect.ValueOf(&fs.ErrNotExist).Elem(), - "ErrPermission": reflect.ValueOf(&fs.ErrPermission).Elem(), - "Glob": reflect.ValueOf(fs.Glob), - "ModeAppend": reflect.ValueOf(fs.ModeAppend), - "ModeCharDevice": reflect.ValueOf(fs.ModeCharDevice), - "ModeDevice": reflect.ValueOf(fs.ModeDevice), - "ModeDir": reflect.ValueOf(fs.ModeDir), - "ModeExclusive": reflect.ValueOf(fs.ModeExclusive), - "ModeIrregular": reflect.ValueOf(fs.ModeIrregular), - "ModeNamedPipe": reflect.ValueOf(fs.ModeNamedPipe), - "ModePerm": reflect.ValueOf(fs.ModePerm), - "ModeSetgid": reflect.ValueOf(fs.ModeSetgid), - "ModeSetuid": reflect.ValueOf(fs.ModeSetuid), - "ModeSocket": reflect.ValueOf(fs.ModeSocket), - "ModeSticky": reflect.ValueOf(fs.ModeSticky), - "ModeSymlink": reflect.ValueOf(fs.ModeSymlink), - "ModeTemporary": reflect.ValueOf(fs.ModeTemporary), - "ModeType": reflect.ValueOf(fs.ModeType), - "ReadDir": reflect.ValueOf(fs.ReadDir), - "ReadFile": reflect.ValueOf(fs.ReadFile), - "SkipDir": reflect.ValueOf(&fs.SkipDir).Elem(), - "Stat": reflect.ValueOf(fs.Stat), - "Sub": reflect.ValueOf(fs.Sub), - "ValidPath": reflect.ValueOf(fs.ValidPath), - "WalkDir": reflect.ValueOf(fs.WalkDir), - - // type definitions - "DirEntry": reflect.ValueOf((*fs.DirEntry)(nil)), - "FS": reflect.ValueOf((*fs.FS)(nil)), - "File": reflect.ValueOf((*fs.File)(nil)), - "FileInfo": reflect.ValueOf((*fs.FileInfo)(nil)), - "FileMode": reflect.ValueOf((*fs.FileMode)(nil)), - "GlobFS": reflect.ValueOf((*fs.GlobFS)(nil)), - "PathError": reflect.ValueOf((*fs.PathError)(nil)), - "ReadDirFS": reflect.ValueOf((*fs.ReadDirFS)(nil)), - "ReadDirFile": reflect.ValueOf((*fs.ReadDirFile)(nil)), - "ReadFileFS": reflect.ValueOf((*fs.ReadFileFS)(nil)), - "StatFS": reflect.ValueOf((*fs.StatFS)(nil)), - "SubFS": reflect.ValueOf((*fs.SubFS)(nil)), - "WalkDirFunc": reflect.ValueOf((*fs.WalkDirFunc)(nil)), - - // interface wrapper definitions - "_DirEntry": reflect.ValueOf((*_io_fs_DirEntry)(nil)), - "_FS": reflect.ValueOf((*_io_fs_FS)(nil)), - "_File": reflect.ValueOf((*_io_fs_File)(nil)), - "_FileInfo": reflect.ValueOf((*_io_fs_FileInfo)(nil)), - "_GlobFS": reflect.ValueOf((*_io_fs_GlobFS)(nil)), - "_ReadDirFS": reflect.ValueOf((*_io_fs_ReadDirFS)(nil)), - "_ReadDirFile": reflect.ValueOf((*_io_fs_ReadDirFile)(nil)), - "_ReadFileFS": reflect.ValueOf((*_io_fs_ReadFileFS)(nil)), - "_StatFS": reflect.ValueOf((*_io_fs_StatFS)(nil)), - "_SubFS": reflect.ValueOf((*_io_fs_SubFS)(nil)), - } -} - -// _io_fs_DirEntry is an interface wrapper for DirEntry type -type _io_fs_DirEntry struct { - IValue interface{} - WInfo func() (fs.FileInfo, error) - WIsDir func() bool - WName func() string - WType func() fs.FileMode -} - -func (W _io_fs_DirEntry) Info() (fs.FileInfo, error) { - return W.WInfo() -} -func (W _io_fs_DirEntry) IsDir() bool { - return W.WIsDir() -} -func (W _io_fs_DirEntry) Name() string { - return W.WName() -} -func (W _io_fs_DirEntry) Type() fs.FileMode { - return W.WType() -} - -// _io_fs_FS is an interface wrapper for FS type -type _io_fs_FS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) -} - -func (W _io_fs_FS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} - -// _io_fs_File is an interface wrapper for File type -type _io_fs_File struct { - IValue interface{} - WClose func() error - WRead func(a0 []byte) (int, error) - WStat func() (fs.FileInfo, error) -} - -func (W _io_fs_File) Close() error { - return W.WClose() -} -func (W _io_fs_File) Read(a0 []byte) (int, error) { - return W.WRead(a0) -} -func (W _io_fs_File) Stat() (fs.FileInfo, error) { - return W.WStat() -} - -// _io_fs_FileInfo is an interface wrapper for FileInfo type -type _io_fs_FileInfo struct { - IValue interface{} - WIsDir func() bool - WModTime func() time.Time - WMode func() fs.FileMode - WName func() string - WSize func() int64 - WSys func() interface{} -} - -func (W _io_fs_FileInfo) IsDir() bool { - return W.WIsDir() -} -func (W _io_fs_FileInfo) ModTime() time.Time { - return W.WModTime() -} -func (W _io_fs_FileInfo) Mode() fs.FileMode { - return W.WMode() -} -func (W _io_fs_FileInfo) Name() string { - return W.WName() -} -func (W _io_fs_FileInfo) Size() int64 { - return W.WSize() -} -func (W _io_fs_FileInfo) Sys() interface{} { - return W.WSys() -} - -// _io_fs_GlobFS is an interface wrapper for GlobFS type -type _io_fs_GlobFS struct { - IValue interface{} - WGlob func(pattern string) ([]string, error) - WOpen func(name string) (fs.File, error) -} - -func (W _io_fs_GlobFS) Glob(pattern string) ([]string, error) { - return W.WGlob(pattern) -} -func (W _io_fs_GlobFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} - -// _io_fs_ReadDirFS is an interface wrapper for ReadDirFS type -type _io_fs_ReadDirFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WReadDir func(name string) ([]fs.DirEntry, error) -} - -func (W _io_fs_ReadDirFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_ReadDirFS) ReadDir(name string) ([]fs.DirEntry, error) { - return W.WReadDir(name) -} - -// _io_fs_ReadDirFile is an interface wrapper for ReadDirFile type -type _io_fs_ReadDirFile struct { - IValue interface{} - WClose func() error - WRead func(a0 []byte) (int, error) - WReadDir func(n int) ([]fs.DirEntry, error) - WStat func() (fs.FileInfo, error) -} - -func (W _io_fs_ReadDirFile) Close() error { - return W.WClose() -} -func (W _io_fs_ReadDirFile) Read(a0 []byte) (int, error) { - return W.WRead(a0) -} -func (W _io_fs_ReadDirFile) ReadDir(n int) ([]fs.DirEntry, error) { - return W.WReadDir(n) -} -func (W _io_fs_ReadDirFile) Stat() (fs.FileInfo, error) { - return W.WStat() -} - -// _io_fs_ReadFileFS is an interface wrapper for ReadFileFS type -type _io_fs_ReadFileFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WReadFile func(name string) ([]byte, error) -} - -func (W _io_fs_ReadFileFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_ReadFileFS) ReadFile(name string) ([]byte, error) { - return W.WReadFile(name) -} - -// _io_fs_StatFS is an interface wrapper for StatFS type -type _io_fs_StatFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WStat func(name string) (fs.FileInfo, error) -} - -func (W _io_fs_StatFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_StatFS) Stat(name string) (fs.FileInfo, error) { - return W.WStat(name) -} - -// _io_fs_SubFS is an interface wrapper for SubFS type -type _io_fs_SubFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WSub func(dir string) (fs.FS, error) -} - -func (W _io_fs_SubFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_SubFS) Sub(dir string) (fs.FS, error) { - return W.WSub(dir) -} diff --git a/stdlib/go1_16_io_ioutil.go b/stdlib/go1_16_io_ioutil.go deleted file mode 100644 index 55881cbb6..000000000 --- a/stdlib/go1_16_io_ioutil.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "io/ioutil" - "reflect" -) - -func init() { - Symbols["io/ioutil/ioutil"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Discard": reflect.ValueOf(&ioutil.Discard).Elem(), - "NopCloser": reflect.ValueOf(ioutil.NopCloser), - "ReadAll": reflect.ValueOf(ioutil.ReadAll), - "ReadDir": reflect.ValueOf(ioutil.ReadDir), - "ReadFile": reflect.ValueOf(ioutil.ReadFile), - "TempDir": reflect.ValueOf(ioutil.TempDir), - "TempFile": reflect.ValueOf(ioutil.TempFile), - "WriteFile": reflect.ValueOf(ioutil.WriteFile), - } -} diff --git a/stdlib/go1_16_log.go b/stdlib/go1_16_log.go deleted file mode 100644 index 818e0d7f4..000000000 --- a/stdlib/go1_16_log.go +++ /dev/null @@ -1,47 +0,0 @@ -// Code generated by 'yaegi extract log'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "log" - "reflect" -) - -func init() { - Symbols["log/log"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Default": reflect.ValueOf(log.Default), - "Fatal": reflect.ValueOf(logFatal), - "Fatalf": reflect.ValueOf(logFatalf), - "Fatalln": reflect.ValueOf(logFatalln), - "Flags": reflect.ValueOf(log.Flags), - "LUTC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Ldate": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Llongfile": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lmicroseconds": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Lmsgprefix": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Lshortfile": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "LstdFlags": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Ltime": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "New": reflect.ValueOf(logNew), - "Output": reflect.ValueOf(log.Output), - "Panic": reflect.ValueOf(log.Panic), - "Panicf": reflect.ValueOf(log.Panicf), - "Panicln": reflect.ValueOf(log.Panicln), - "Prefix": reflect.ValueOf(log.Prefix), - "Print": reflect.ValueOf(log.Print), - "Printf": reflect.ValueOf(log.Printf), - "Println": reflect.ValueOf(log.Println), - "SetFlags": reflect.ValueOf(log.SetFlags), - "SetOutput": reflect.ValueOf(log.SetOutput), - "SetPrefix": reflect.ValueOf(log.SetPrefix), - "Writer": reflect.ValueOf(log.Writer), - - // type definitions - "Logger": reflect.ValueOf((*logLogger)(nil)), - } -} diff --git a/stdlib/go1_16_log_syslog.go b/stdlib/go1_16_log_syslog.go deleted file mode 100644 index 918772b6d..000000000 --- a/stdlib/go1_16_log_syslog.go +++ /dev/null @@ -1,51 +0,0 @@ -// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. - -// +build go1.16,!go1.17,!windows,!nacl,!plan9 - -package stdlib - -import ( - "log/syslog" - "reflect" -) - -func init() { - Symbols["log/syslog/syslog"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Dial": reflect.ValueOf(syslog.Dial), - "LOG_ALERT": reflect.ValueOf(syslog.LOG_ALERT), - "LOG_AUTH": reflect.ValueOf(syslog.LOG_AUTH), - "LOG_AUTHPRIV": reflect.ValueOf(syslog.LOG_AUTHPRIV), - "LOG_CRIT": reflect.ValueOf(syslog.LOG_CRIT), - "LOG_CRON": reflect.ValueOf(syslog.LOG_CRON), - "LOG_DAEMON": reflect.ValueOf(syslog.LOG_DAEMON), - "LOG_DEBUG": reflect.ValueOf(syslog.LOG_DEBUG), - "LOG_EMERG": reflect.ValueOf(syslog.LOG_EMERG), - "LOG_ERR": reflect.ValueOf(syslog.LOG_ERR), - "LOG_FTP": reflect.ValueOf(syslog.LOG_FTP), - "LOG_INFO": reflect.ValueOf(syslog.LOG_INFO), - "LOG_KERN": reflect.ValueOf(syslog.LOG_KERN), - "LOG_LOCAL0": reflect.ValueOf(syslog.LOG_LOCAL0), - "LOG_LOCAL1": reflect.ValueOf(syslog.LOG_LOCAL1), - "LOG_LOCAL2": reflect.ValueOf(syslog.LOG_LOCAL2), - "LOG_LOCAL3": reflect.ValueOf(syslog.LOG_LOCAL3), - "LOG_LOCAL4": reflect.ValueOf(syslog.LOG_LOCAL4), - "LOG_LOCAL5": reflect.ValueOf(syslog.LOG_LOCAL5), - "LOG_LOCAL6": reflect.ValueOf(syslog.LOG_LOCAL6), - "LOG_LOCAL7": reflect.ValueOf(syslog.LOG_LOCAL7), - "LOG_LPR": reflect.ValueOf(syslog.LOG_LPR), - "LOG_MAIL": reflect.ValueOf(syslog.LOG_MAIL), - "LOG_NEWS": reflect.ValueOf(syslog.LOG_NEWS), - "LOG_NOTICE": reflect.ValueOf(syslog.LOG_NOTICE), - "LOG_SYSLOG": reflect.ValueOf(syslog.LOG_SYSLOG), - "LOG_USER": reflect.ValueOf(syslog.LOG_USER), - "LOG_UUCP": reflect.ValueOf(syslog.LOG_UUCP), - "LOG_WARNING": reflect.ValueOf(syslog.LOG_WARNING), - "New": reflect.ValueOf(syslog.New), - "NewLogger": reflect.ValueOf(syslog.NewLogger), - - // type definitions - "Priority": reflect.ValueOf((*syslog.Priority)(nil)), - "Writer": reflect.ValueOf((*syslog.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_math.go b/stdlib/go1_16_math.go deleted file mode 100644 index 777e0f5a4..000000000 --- a/stdlib/go1_16_math.go +++ /dev/null @@ -1,112 +0,0 @@ -// Code generated by 'yaegi extract math'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "math" - "reflect" -) - -func init() { - Symbols["math/math"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Abs": reflect.ValueOf(math.Abs), - "Acos": reflect.ValueOf(math.Acos), - "Acosh": reflect.ValueOf(math.Acosh), - "Asin": reflect.ValueOf(math.Asin), - "Asinh": reflect.ValueOf(math.Asinh), - "Atan": reflect.ValueOf(math.Atan), - "Atan2": reflect.ValueOf(math.Atan2), - "Atanh": reflect.ValueOf(math.Atanh), - "Cbrt": reflect.ValueOf(math.Cbrt), - "Ceil": reflect.ValueOf(math.Ceil), - "Copysign": reflect.ValueOf(math.Copysign), - "Cos": reflect.ValueOf(math.Cos), - "Cosh": reflect.ValueOf(math.Cosh), - "Dim": reflect.ValueOf(math.Dim), - "E": reflect.ValueOf(constant.MakeFromLiteral("2.71828182845904523536028747135266249775724709369995957496696762566337824315673231520670375558666729784504486779277967997696994772644702281675346915668215131895555530285035761295375777990557253360748291015625", token.FLOAT, 0)), - "Erf": reflect.ValueOf(math.Erf), - "Erfc": reflect.ValueOf(math.Erfc), - "Erfcinv": reflect.ValueOf(math.Erfcinv), - "Erfinv": reflect.ValueOf(math.Erfinv), - "Exp": reflect.ValueOf(math.Exp), - "Exp2": reflect.ValueOf(math.Exp2), - "Expm1": reflect.ValueOf(math.Expm1), - "FMA": reflect.ValueOf(math.FMA), - "Float32bits": reflect.ValueOf(math.Float32bits), - "Float32frombits": reflect.ValueOf(math.Float32frombits), - "Float64bits": reflect.ValueOf(math.Float64bits), - "Float64frombits": reflect.ValueOf(math.Float64frombits), - "Floor": reflect.ValueOf(math.Floor), - "Frexp": reflect.ValueOf(math.Frexp), - "Gamma": reflect.ValueOf(math.Gamma), - "Hypot": reflect.ValueOf(math.Hypot), - "Ilogb": reflect.ValueOf(math.Ilogb), - "Inf": reflect.ValueOf(math.Inf), - "IsInf": reflect.ValueOf(math.IsInf), - "IsNaN": reflect.ValueOf(math.IsNaN), - "J0": reflect.ValueOf(math.J0), - "J1": reflect.ValueOf(math.J1), - "Jn": reflect.ValueOf(math.Jn), - "Ldexp": reflect.ValueOf(math.Ldexp), - "Lgamma": reflect.ValueOf(math.Lgamma), - "Ln10": reflect.ValueOf(constant.MakeFromLiteral("2.30258509299404568401799145468436420760110148862877297603332784146804725494827975466552490443295866962642372461496758838959542646932914211937012833592062802600362869664962772731087170541286468505859375", token.FLOAT, 0)), - "Ln2": reflect.ValueOf(constant.MakeFromLiteral("0.6931471805599453094172321214581765680755001343602552541206800092715999496201383079363438206637927920954189307729314303884387720696314608777673678644642390655170150035209453154294578780536539852619171142578125", token.FLOAT, 0)), - "Log": reflect.ValueOf(math.Log), - "Log10": reflect.ValueOf(math.Log10), - "Log10E": reflect.ValueOf(constant.MakeFromLiteral("0.43429448190325182765112891891660508229439700580366656611445378416636798190620320263064286300825210972160277489744884502676719847561509639618196799746596688688378591625127711495224502868950366973876953125", token.FLOAT, 0)), - "Log1p": reflect.ValueOf(math.Log1p), - "Log2": reflect.ValueOf(math.Log2), - "Log2E": reflect.ValueOf(constant.MakeFromLiteral("1.44269504088896340735992468100189213742664595415298593413544940772066427768997545329060870636212628972710992130324953463427359402479619301286929040235571747101382214539290471666532766903401352465152740478515625", token.FLOAT, 0)), - "Logb": reflect.ValueOf(math.Logb), - "Max": reflect.ValueOf(math.Max), - "MaxFloat32": reflect.ValueOf(constant.MakeFromLiteral("340282346638528859811704183484516925440", token.FLOAT, 0)), - "MaxFloat64": reflect.ValueOf(constant.MakeFromLiteral("179769313486231570814527423731704356798100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", token.FLOAT, 0)), - "MaxInt16": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "MaxInt32": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "MaxInt64": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "MaxInt8": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "MaxUint16": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "MaxUint32": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "MaxUint64": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), - "MaxUint8": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "Min": reflect.ValueOf(math.Min), - "MinInt16": reflect.ValueOf(constant.MakeFromLiteral("-32768", token.INT, 0)), - "MinInt32": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MinInt64": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), - "MinInt8": reflect.ValueOf(constant.MakeFromLiteral("-128", token.INT, 0)), - "Mod": reflect.ValueOf(math.Mod), - "Modf": reflect.ValueOf(math.Modf), - "NaN": reflect.ValueOf(math.NaN), - "Nextafter": reflect.ValueOf(math.Nextafter), - "Nextafter32": reflect.ValueOf(math.Nextafter32), - "Phi": reflect.ValueOf(constant.MakeFromLiteral("1.6180339887498948482045868343656381177203091798057628621354486119746080982153796619881086049305501566952211682590824739205931370737029882996587050475921915678674035433959321750307935872115194797515869140625", token.FLOAT, 0)), - "Pi": reflect.ValueOf(constant.MakeFromLiteral("3.141592653589793238462643383279502884197169399375105820974944594789982923695635954704435713335896673485663389728754819466702315787113662862838515639906529162340867271374644786874341662041842937469482421875", token.FLOAT, 0)), - "Pow": reflect.ValueOf(math.Pow), - "Pow10": reflect.ValueOf(math.Pow10), - "Remainder": reflect.ValueOf(math.Remainder), - "Round": reflect.ValueOf(math.Round), - "RoundToEven": reflect.ValueOf(math.RoundToEven), - "Signbit": reflect.ValueOf(math.Signbit), - "Sin": reflect.ValueOf(math.Sin), - "Sincos": reflect.ValueOf(math.Sincos), - "Sinh": reflect.ValueOf(math.Sinh), - "SmallestNonzeroFloat32": reflect.ValueOf(constant.MakeFromLiteral("1.40129846432481707092372958328991613128000000000000000000000000000000000000000000001246655487714533538006789189734126694785975183981128816138510360971472225738624150874949653910667523779981133927289771669016713539217953030564201688027906006008453304556102801950542906382507e-45", token.FLOAT, 0)), - "SmallestNonzeroFloat64": reflect.ValueOf(constant.MakeFromLiteral("4.94065645841246544176568792868221372365099999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999916206614696136086629714037163874026187912451674985660337336755242863513549746484310667379088263176934591818322489862214324814281481943599945502119376688748731948897748561110123901991443297110206447991752071007926740839424145013355231935665542622515363894390826799291671723318261174778903704064716351336223785714389641180220184242018383103204287325861250404139399888498504162666394779407509786431980433771341978183418568838015304951087487907666317075235615216699116844779095660202193409146032665221882798856203896125090454090026556150624798681464913851491093798848436664885581161128190046248588053014958829424991704801027040654863867512297941601850496672190315253109308532379657238854928816482120688440415705411555019932096150435627305446214567713171657554140575630917301482608119551500514805985376055777894871863446222606532650275466165274006e-324", token.FLOAT, 0)), - "Sqrt": reflect.ValueOf(math.Sqrt), - "Sqrt2": reflect.ValueOf(constant.MakeFromLiteral("1.414213562373095048801688724209698078569671875376948073176679739576083351575381440094441524123797447886801949755143139115339040409162552642832693297721230919563348109313505318596071447245776653289794921875", token.FLOAT, 0)), - "SqrtE": reflect.ValueOf(constant.MakeFromLiteral("1.64872127070012814684865078781416357165377610071014801157507931167328763229187870850146925823776361770041160388013884200789716007979526823569827080974091691342077871211546646890155898290686309337615966796875", token.FLOAT, 0)), - "SqrtPhi": reflect.ValueOf(constant.MakeFromLiteral("1.2720196495140689642524224617374914917156080418400962486166403754616080542166459302584536396369727769747312116100875915825863540562126478288118732191412003988041797518382391984914647764526307582855224609375", token.FLOAT, 0)), - "SqrtPi": reflect.ValueOf(constant.MakeFromLiteral("1.772453850905516027298167483341145182797549456122387128213807789740599698370237052541269446184448945647349951047154197675245574635259260134350885938555625028620527962319730619356050738133490085601806640625", token.FLOAT, 0)), - "Tan": reflect.ValueOf(math.Tan), - "Tanh": reflect.ValueOf(math.Tanh), - "Trunc": reflect.ValueOf(math.Trunc), - "Y0": reflect.ValueOf(math.Y0), - "Y1": reflect.ValueOf(math.Y1), - "Yn": reflect.ValueOf(math.Yn), - } -} diff --git a/stdlib/go1_16_math_big.go b/stdlib/go1_16_math_big.go deleted file mode 100644 index 4d6c02330..000000000 --- a/stdlib/go1_16_math_big.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract math/big'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "math/big" - "reflect" -) - -func init() { - Symbols["math/big/big"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Above": reflect.ValueOf(big.Above), - "AwayFromZero": reflect.ValueOf(big.AwayFromZero), - "Below": reflect.ValueOf(big.Below), - "Exact": reflect.ValueOf(big.Exact), - "Jacobi": reflect.ValueOf(big.Jacobi), - "MaxBase": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "MaxExp": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "MaxPrec": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "MinExp": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "NewFloat": reflect.ValueOf(big.NewFloat), - "NewInt": reflect.ValueOf(big.NewInt), - "NewRat": reflect.ValueOf(big.NewRat), - "ParseFloat": reflect.ValueOf(big.ParseFloat), - "ToNearestAway": reflect.ValueOf(big.ToNearestAway), - "ToNearestEven": reflect.ValueOf(big.ToNearestEven), - "ToNegativeInf": reflect.ValueOf(big.ToNegativeInf), - "ToPositiveInf": reflect.ValueOf(big.ToPositiveInf), - "ToZero": reflect.ValueOf(big.ToZero), - - // type definitions - "Accuracy": reflect.ValueOf((*big.Accuracy)(nil)), - "ErrNaN": reflect.ValueOf((*big.ErrNaN)(nil)), - "Float": reflect.ValueOf((*big.Float)(nil)), - "Int": reflect.ValueOf((*big.Int)(nil)), - "Rat": reflect.ValueOf((*big.Rat)(nil)), - "RoundingMode": reflect.ValueOf((*big.RoundingMode)(nil)), - "Word": reflect.ValueOf((*big.Word)(nil)), - } -} diff --git a/stdlib/go1_16_math_bits.go b/stdlib/go1_16_math_bits.go deleted file mode 100644 index adc608d90..000000000 --- a/stdlib/go1_16_math_bits.go +++ /dev/null @@ -1,68 +0,0 @@ -// Code generated by 'yaegi extract math/bits'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "math/bits" - "reflect" -) - -func init() { - Symbols["math/bits/bits"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Add": reflect.ValueOf(bits.Add), - "Add32": reflect.ValueOf(bits.Add32), - "Add64": reflect.ValueOf(bits.Add64), - "Div": reflect.ValueOf(bits.Div), - "Div32": reflect.ValueOf(bits.Div32), - "Div64": reflect.ValueOf(bits.Div64), - "LeadingZeros": reflect.ValueOf(bits.LeadingZeros), - "LeadingZeros16": reflect.ValueOf(bits.LeadingZeros16), - "LeadingZeros32": reflect.ValueOf(bits.LeadingZeros32), - "LeadingZeros64": reflect.ValueOf(bits.LeadingZeros64), - "LeadingZeros8": reflect.ValueOf(bits.LeadingZeros8), - "Len": reflect.ValueOf(bits.Len), - "Len16": reflect.ValueOf(bits.Len16), - "Len32": reflect.ValueOf(bits.Len32), - "Len64": reflect.ValueOf(bits.Len64), - "Len8": reflect.ValueOf(bits.Len8), - "Mul": reflect.ValueOf(bits.Mul), - "Mul32": reflect.ValueOf(bits.Mul32), - "Mul64": reflect.ValueOf(bits.Mul64), - "OnesCount": reflect.ValueOf(bits.OnesCount), - "OnesCount16": reflect.ValueOf(bits.OnesCount16), - "OnesCount32": reflect.ValueOf(bits.OnesCount32), - "OnesCount64": reflect.ValueOf(bits.OnesCount64), - "OnesCount8": reflect.ValueOf(bits.OnesCount8), - "Rem": reflect.ValueOf(bits.Rem), - "Rem32": reflect.ValueOf(bits.Rem32), - "Rem64": reflect.ValueOf(bits.Rem64), - "Reverse": reflect.ValueOf(bits.Reverse), - "Reverse16": reflect.ValueOf(bits.Reverse16), - "Reverse32": reflect.ValueOf(bits.Reverse32), - "Reverse64": reflect.ValueOf(bits.Reverse64), - "Reverse8": reflect.ValueOf(bits.Reverse8), - "ReverseBytes": reflect.ValueOf(bits.ReverseBytes), - "ReverseBytes16": reflect.ValueOf(bits.ReverseBytes16), - "ReverseBytes32": reflect.ValueOf(bits.ReverseBytes32), - "ReverseBytes64": reflect.ValueOf(bits.ReverseBytes64), - "RotateLeft": reflect.ValueOf(bits.RotateLeft), - "RotateLeft16": reflect.ValueOf(bits.RotateLeft16), - "RotateLeft32": reflect.ValueOf(bits.RotateLeft32), - "RotateLeft64": reflect.ValueOf(bits.RotateLeft64), - "RotateLeft8": reflect.ValueOf(bits.RotateLeft8), - "Sub": reflect.ValueOf(bits.Sub), - "Sub32": reflect.ValueOf(bits.Sub32), - "Sub64": reflect.ValueOf(bits.Sub64), - "TrailingZeros": reflect.ValueOf(bits.TrailingZeros), - "TrailingZeros16": reflect.ValueOf(bits.TrailingZeros16), - "TrailingZeros32": reflect.ValueOf(bits.TrailingZeros32), - "TrailingZeros64": reflect.ValueOf(bits.TrailingZeros64), - "TrailingZeros8": reflect.ValueOf(bits.TrailingZeros8), - "UintSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - } -} diff --git a/stdlib/go1_16_math_cmplx.go b/stdlib/go1_16_math_cmplx.go deleted file mode 100644 index a67696904..000000000 --- a/stdlib/go1_16_math_cmplx.go +++ /dev/null @@ -1,43 +0,0 @@ -// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "math/cmplx" - "reflect" -) - -func init() { - Symbols["math/cmplx/cmplx"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Abs": reflect.ValueOf(cmplx.Abs), - "Acos": reflect.ValueOf(cmplx.Acos), - "Acosh": reflect.ValueOf(cmplx.Acosh), - "Asin": reflect.ValueOf(cmplx.Asin), - "Asinh": reflect.ValueOf(cmplx.Asinh), - "Atan": reflect.ValueOf(cmplx.Atan), - "Atanh": reflect.ValueOf(cmplx.Atanh), - "Conj": reflect.ValueOf(cmplx.Conj), - "Cos": reflect.ValueOf(cmplx.Cos), - "Cosh": reflect.ValueOf(cmplx.Cosh), - "Cot": reflect.ValueOf(cmplx.Cot), - "Exp": reflect.ValueOf(cmplx.Exp), - "Inf": reflect.ValueOf(cmplx.Inf), - "IsInf": reflect.ValueOf(cmplx.IsInf), - "IsNaN": reflect.ValueOf(cmplx.IsNaN), - "Log": reflect.ValueOf(cmplx.Log), - "Log10": reflect.ValueOf(cmplx.Log10), - "NaN": reflect.ValueOf(cmplx.NaN), - "Phase": reflect.ValueOf(cmplx.Phase), - "Polar": reflect.ValueOf(cmplx.Polar), - "Pow": reflect.ValueOf(cmplx.Pow), - "Rect": reflect.ValueOf(cmplx.Rect), - "Sin": reflect.ValueOf(cmplx.Sin), - "Sinh": reflect.ValueOf(cmplx.Sinh), - "Sqrt": reflect.ValueOf(cmplx.Sqrt), - "Tan": reflect.ValueOf(cmplx.Tan), - "Tanh": reflect.ValueOf(cmplx.Tanh), - } -} diff --git a/stdlib/go1_16_math_rand.go b/stdlib/go1_16_math_rand.go deleted file mode 100644 index 789fd5b11..000000000 --- a/stdlib/go1_16_math_rand.go +++ /dev/null @@ -1,77 +0,0 @@ -// Code generated by 'yaegi extract math/rand'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "math/rand" - "reflect" -) - -func init() { - Symbols["math/rand/rand"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ExpFloat64": reflect.ValueOf(rand.ExpFloat64), - "Float32": reflect.ValueOf(rand.Float32), - "Float64": reflect.ValueOf(rand.Float64), - "Int": reflect.ValueOf(rand.Int), - "Int31": reflect.ValueOf(rand.Int31), - "Int31n": reflect.ValueOf(rand.Int31n), - "Int63": reflect.ValueOf(rand.Int63), - "Int63n": reflect.ValueOf(rand.Int63n), - "Intn": reflect.ValueOf(rand.Intn), - "New": reflect.ValueOf(rand.New), - "NewSource": reflect.ValueOf(rand.NewSource), - "NewZipf": reflect.ValueOf(rand.NewZipf), - "NormFloat64": reflect.ValueOf(rand.NormFloat64), - "Perm": reflect.ValueOf(rand.Perm), - "Read": reflect.ValueOf(rand.Read), - "Seed": reflect.ValueOf(rand.Seed), - "Shuffle": reflect.ValueOf(rand.Shuffle), - "Uint32": reflect.ValueOf(rand.Uint32), - "Uint64": reflect.ValueOf(rand.Uint64), - - // type definitions - "Rand": reflect.ValueOf((*rand.Rand)(nil)), - "Source": reflect.ValueOf((*rand.Source)(nil)), - "Source64": reflect.ValueOf((*rand.Source64)(nil)), - "Zipf": reflect.ValueOf((*rand.Zipf)(nil)), - - // interface wrapper definitions - "_Source": reflect.ValueOf((*_math_rand_Source)(nil)), - "_Source64": reflect.ValueOf((*_math_rand_Source64)(nil)), - } -} - -// _math_rand_Source is an interface wrapper for Source type -type _math_rand_Source struct { - IValue interface{} - WInt63 func() int64 - WSeed func(seed int64) -} - -func (W _math_rand_Source) Int63() int64 { - return W.WInt63() -} -func (W _math_rand_Source) Seed(seed int64) { - W.WSeed(seed) -} - -// _math_rand_Source64 is an interface wrapper for Source64 type -type _math_rand_Source64 struct { - IValue interface{} - WInt63 func() int64 - WSeed func(seed int64) - WUint64 func() uint64 -} - -func (W _math_rand_Source64) Int63() int64 { - return W.WInt63() -} -func (W _math_rand_Source64) Seed(seed int64) { - W.WSeed(seed) -} -func (W _math_rand_Source64) Uint64() uint64 { - return W.WUint64() -} diff --git a/stdlib/go1_16_mime.go b/stdlib/go1_16_mime.go deleted file mode 100644 index e4a77e8e7..000000000 --- a/stdlib/go1_16_mime.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract mime'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "mime" - "reflect" -) - -func init() { - Symbols["mime/mime"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AddExtensionType": reflect.ValueOf(mime.AddExtensionType), - "BEncoding": reflect.ValueOf(mime.BEncoding), - "ErrInvalidMediaParameter": reflect.ValueOf(&mime.ErrInvalidMediaParameter).Elem(), - "ExtensionsByType": reflect.ValueOf(mime.ExtensionsByType), - "FormatMediaType": reflect.ValueOf(mime.FormatMediaType), - "ParseMediaType": reflect.ValueOf(mime.ParseMediaType), - "QEncoding": reflect.ValueOf(mime.QEncoding), - "TypeByExtension": reflect.ValueOf(mime.TypeByExtension), - - // type definitions - "WordDecoder": reflect.ValueOf((*mime.WordDecoder)(nil)), - "WordEncoder": reflect.ValueOf((*mime.WordEncoder)(nil)), - } -} diff --git a/stdlib/go1_16_mime_multipart.go b/stdlib/go1_16_mime_multipart.go deleted file mode 100644 index dbe759ba7..000000000 --- a/stdlib/go1_16_mime_multipart.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "mime/multipart" - "reflect" -) - -func init() { - Symbols["mime/multipart/multipart"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrMessageTooLarge": reflect.ValueOf(&multipart.ErrMessageTooLarge).Elem(), - "NewReader": reflect.ValueOf(multipart.NewReader), - "NewWriter": reflect.ValueOf(multipart.NewWriter), - - // type definitions - "File": reflect.ValueOf((*multipart.File)(nil)), - "FileHeader": reflect.ValueOf((*multipart.FileHeader)(nil)), - "Form": reflect.ValueOf((*multipart.Form)(nil)), - "Part": reflect.ValueOf((*multipart.Part)(nil)), - "Reader": reflect.ValueOf((*multipart.Reader)(nil)), - "Writer": reflect.ValueOf((*multipart.Writer)(nil)), - - // interface wrapper definitions - "_File": reflect.ValueOf((*_mime_multipart_File)(nil)), - } -} - -// _mime_multipart_File is an interface wrapper for File type -type _mime_multipart_File struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WReadAt func(p []byte, off int64) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _mime_multipart_File) Close() error { - return W.WClose() -} -func (W _mime_multipart_File) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _mime_multipart_File) ReadAt(p []byte, off int64) (n int, err error) { - return W.WReadAt(p, off) -} -func (W _mime_multipart_File) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} diff --git a/stdlib/go1_16_mime_quotedprintable.go b/stdlib/go1_16_mime_quotedprintable.go deleted file mode 100644 index f755adca1..000000000 --- a/stdlib/go1_16_mime_quotedprintable.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "mime/quotedprintable" - "reflect" -) - -func init() { - Symbols["mime/quotedprintable/quotedprintable"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewReader": reflect.ValueOf(quotedprintable.NewReader), - "NewWriter": reflect.ValueOf(quotedprintable.NewWriter), - - // type definitions - "Reader": reflect.ValueOf((*quotedprintable.Reader)(nil)), - "Writer": reflect.ValueOf((*quotedprintable.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_net.go b/stdlib/go1_16_net.go deleted file mode 100644 index 682c3a131..000000000 --- a/stdlib/go1_16_net.go +++ /dev/null @@ -1,251 +0,0 @@ -// Code generated by 'yaegi extract net'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "net" - "reflect" - "time" -) - -func init() { - Symbols["net/net"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CIDRMask": reflect.ValueOf(net.CIDRMask), - "DefaultResolver": reflect.ValueOf(&net.DefaultResolver).Elem(), - "Dial": reflect.ValueOf(net.Dial), - "DialIP": reflect.ValueOf(net.DialIP), - "DialTCP": reflect.ValueOf(net.DialTCP), - "DialTimeout": reflect.ValueOf(net.DialTimeout), - "DialUDP": reflect.ValueOf(net.DialUDP), - "DialUnix": reflect.ValueOf(net.DialUnix), - "ErrClosed": reflect.ValueOf(&net.ErrClosed).Elem(), - "ErrWriteToConnected": reflect.ValueOf(&net.ErrWriteToConnected).Elem(), - "FileConn": reflect.ValueOf(net.FileConn), - "FileListener": reflect.ValueOf(net.FileListener), - "FilePacketConn": reflect.ValueOf(net.FilePacketConn), - "FlagBroadcast": reflect.ValueOf(net.FlagBroadcast), - "FlagLoopback": reflect.ValueOf(net.FlagLoopback), - "FlagMulticast": reflect.ValueOf(net.FlagMulticast), - "FlagPointToPoint": reflect.ValueOf(net.FlagPointToPoint), - "FlagUp": reflect.ValueOf(net.FlagUp), - "IPv4": reflect.ValueOf(net.IPv4), - "IPv4Mask": reflect.ValueOf(net.IPv4Mask), - "IPv4allrouter": reflect.ValueOf(&net.IPv4allrouter).Elem(), - "IPv4allsys": reflect.ValueOf(&net.IPv4allsys).Elem(), - "IPv4bcast": reflect.ValueOf(&net.IPv4bcast).Elem(), - "IPv4len": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPv4zero": reflect.ValueOf(&net.IPv4zero).Elem(), - "IPv6interfacelocalallnodes": reflect.ValueOf(&net.IPv6interfacelocalallnodes).Elem(), - "IPv6len": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPv6linklocalallnodes": reflect.ValueOf(&net.IPv6linklocalallnodes).Elem(), - "IPv6linklocalallrouters": reflect.ValueOf(&net.IPv6linklocalallrouters).Elem(), - "IPv6loopback": reflect.ValueOf(&net.IPv6loopback).Elem(), - "IPv6unspecified": reflect.ValueOf(&net.IPv6unspecified).Elem(), - "IPv6zero": reflect.ValueOf(&net.IPv6zero).Elem(), - "InterfaceAddrs": reflect.ValueOf(net.InterfaceAddrs), - "InterfaceByIndex": reflect.ValueOf(net.InterfaceByIndex), - "InterfaceByName": reflect.ValueOf(net.InterfaceByName), - "Interfaces": reflect.ValueOf(net.Interfaces), - "JoinHostPort": reflect.ValueOf(net.JoinHostPort), - "Listen": reflect.ValueOf(net.Listen), - "ListenIP": reflect.ValueOf(net.ListenIP), - "ListenMulticastUDP": reflect.ValueOf(net.ListenMulticastUDP), - "ListenPacket": reflect.ValueOf(net.ListenPacket), - "ListenTCP": reflect.ValueOf(net.ListenTCP), - "ListenUDP": reflect.ValueOf(net.ListenUDP), - "ListenUnix": reflect.ValueOf(net.ListenUnix), - "ListenUnixgram": reflect.ValueOf(net.ListenUnixgram), - "LookupAddr": reflect.ValueOf(net.LookupAddr), - "LookupCNAME": reflect.ValueOf(net.LookupCNAME), - "LookupHost": reflect.ValueOf(net.LookupHost), - "LookupIP": reflect.ValueOf(net.LookupIP), - "LookupMX": reflect.ValueOf(net.LookupMX), - "LookupNS": reflect.ValueOf(net.LookupNS), - "LookupPort": reflect.ValueOf(net.LookupPort), - "LookupSRV": reflect.ValueOf(net.LookupSRV), - "LookupTXT": reflect.ValueOf(net.LookupTXT), - "ParseCIDR": reflect.ValueOf(net.ParseCIDR), - "ParseIP": reflect.ValueOf(net.ParseIP), - "ParseMAC": reflect.ValueOf(net.ParseMAC), - "Pipe": reflect.ValueOf(net.Pipe), - "ResolveIPAddr": reflect.ValueOf(net.ResolveIPAddr), - "ResolveTCPAddr": reflect.ValueOf(net.ResolveTCPAddr), - "ResolveUDPAddr": reflect.ValueOf(net.ResolveUDPAddr), - "ResolveUnixAddr": reflect.ValueOf(net.ResolveUnixAddr), - "SplitHostPort": reflect.ValueOf(net.SplitHostPort), - - // type definitions - "Addr": reflect.ValueOf((*net.Addr)(nil)), - "AddrError": reflect.ValueOf((*net.AddrError)(nil)), - "Buffers": reflect.ValueOf((*net.Buffers)(nil)), - "Conn": reflect.ValueOf((*net.Conn)(nil)), - "DNSConfigError": reflect.ValueOf((*net.DNSConfigError)(nil)), - "DNSError": reflect.ValueOf((*net.DNSError)(nil)), - "Dialer": reflect.ValueOf((*net.Dialer)(nil)), - "Error": reflect.ValueOf((*net.Error)(nil)), - "Flags": reflect.ValueOf((*net.Flags)(nil)), - "HardwareAddr": reflect.ValueOf((*net.HardwareAddr)(nil)), - "IP": reflect.ValueOf((*net.IP)(nil)), - "IPAddr": reflect.ValueOf((*net.IPAddr)(nil)), - "IPConn": reflect.ValueOf((*net.IPConn)(nil)), - "IPMask": reflect.ValueOf((*net.IPMask)(nil)), - "IPNet": reflect.ValueOf((*net.IPNet)(nil)), - "Interface": reflect.ValueOf((*net.Interface)(nil)), - "InvalidAddrError": reflect.ValueOf((*net.InvalidAddrError)(nil)), - "ListenConfig": reflect.ValueOf((*net.ListenConfig)(nil)), - "Listener": reflect.ValueOf((*net.Listener)(nil)), - "MX": reflect.ValueOf((*net.MX)(nil)), - "NS": reflect.ValueOf((*net.NS)(nil)), - "OpError": reflect.ValueOf((*net.OpError)(nil)), - "PacketConn": reflect.ValueOf((*net.PacketConn)(nil)), - "ParseError": reflect.ValueOf((*net.ParseError)(nil)), - "Resolver": reflect.ValueOf((*net.Resolver)(nil)), - "SRV": reflect.ValueOf((*net.SRV)(nil)), - "TCPAddr": reflect.ValueOf((*net.TCPAddr)(nil)), - "TCPConn": reflect.ValueOf((*net.TCPConn)(nil)), - "TCPListener": reflect.ValueOf((*net.TCPListener)(nil)), - "UDPAddr": reflect.ValueOf((*net.UDPAddr)(nil)), - "UDPConn": reflect.ValueOf((*net.UDPConn)(nil)), - "UnixAddr": reflect.ValueOf((*net.UnixAddr)(nil)), - "UnixConn": reflect.ValueOf((*net.UnixConn)(nil)), - "UnixListener": reflect.ValueOf((*net.UnixListener)(nil)), - "UnknownNetworkError": reflect.ValueOf((*net.UnknownNetworkError)(nil)), - - // interface wrapper definitions - "_Addr": reflect.ValueOf((*_net_Addr)(nil)), - "_Conn": reflect.ValueOf((*_net_Conn)(nil)), - "_Error": reflect.ValueOf((*_net_Error)(nil)), - "_Listener": reflect.ValueOf((*_net_Listener)(nil)), - "_PacketConn": reflect.ValueOf((*_net_PacketConn)(nil)), - } -} - -// _net_Addr is an interface wrapper for Addr type -type _net_Addr struct { - IValue interface{} - WNetwork func() string - WString func() string -} - -func (W _net_Addr) Network() string { - return W.WNetwork() -} -func (W _net_Addr) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} - -// _net_Conn is an interface wrapper for Conn type -type _net_Conn struct { - IValue interface{} - WClose func() error - WLocalAddr func() net.Addr - WRead func(b []byte) (n int, err error) - WRemoteAddr func() net.Addr - WSetDeadline func(t time.Time) error - WSetReadDeadline func(t time.Time) error - WSetWriteDeadline func(t time.Time) error - WWrite func(b []byte) (n int, err error) -} - -func (W _net_Conn) Close() error { - return W.WClose() -} -func (W _net_Conn) LocalAddr() net.Addr { - return W.WLocalAddr() -} -func (W _net_Conn) Read(b []byte) (n int, err error) { - return W.WRead(b) -} -func (W _net_Conn) RemoteAddr() net.Addr { - return W.WRemoteAddr() -} -func (W _net_Conn) SetDeadline(t time.Time) error { - return W.WSetDeadline(t) -} -func (W _net_Conn) SetReadDeadline(t time.Time) error { - return W.WSetReadDeadline(t) -} -func (W _net_Conn) SetWriteDeadline(t time.Time) error { - return W.WSetWriteDeadline(t) -} -func (W _net_Conn) Write(b []byte) (n int, err error) { - return W.WWrite(b) -} - -// _net_Error is an interface wrapper for Error type -type _net_Error struct { - IValue interface{} - WError func() string - WTemporary func() bool - WTimeout func() bool -} - -func (W _net_Error) Error() string { - return W.WError() -} -func (W _net_Error) Temporary() bool { - return W.WTemporary() -} -func (W _net_Error) Timeout() bool { - return W.WTimeout() -} - -// _net_Listener is an interface wrapper for Listener type -type _net_Listener struct { - IValue interface{} - WAccept func() (net.Conn, error) - WAddr func() net.Addr - WClose func() error -} - -func (W _net_Listener) Accept() (net.Conn, error) { - return W.WAccept() -} -func (W _net_Listener) Addr() net.Addr { - return W.WAddr() -} -func (W _net_Listener) Close() error { - return W.WClose() -} - -// _net_PacketConn is an interface wrapper for PacketConn type -type _net_PacketConn struct { - IValue interface{} - WClose func() error - WLocalAddr func() net.Addr - WReadFrom func(p []byte) (n int, addr net.Addr, err error) - WSetDeadline func(t time.Time) error - WSetReadDeadline func(t time.Time) error - WSetWriteDeadline func(t time.Time) error - WWriteTo func(p []byte, addr net.Addr) (n int, err error) -} - -func (W _net_PacketConn) Close() error { - return W.WClose() -} -func (W _net_PacketConn) LocalAddr() net.Addr { - return W.WLocalAddr() -} -func (W _net_PacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { - return W.WReadFrom(p) -} -func (W _net_PacketConn) SetDeadline(t time.Time) error { - return W.WSetDeadline(t) -} -func (W _net_PacketConn) SetReadDeadline(t time.Time) error { - return W.WSetReadDeadline(t) -} -func (W _net_PacketConn) SetWriteDeadline(t time.Time) error { - return W.WSetWriteDeadline(t) -} -func (W _net_PacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) { - return W.WWriteTo(p, addr) -} diff --git a/stdlib/go1_16_net_http.go b/stdlib/go1_16_net_http.go deleted file mode 100644 index 898308037..000000000 --- a/stdlib/go1_16_net_http.go +++ /dev/null @@ -1,335 +0,0 @@ -// Code generated by 'yaegi extract net/http'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "bufio" - "go/constant" - "go/token" - "io/fs" - "net" - "net/http" - "net/url" - "reflect" -) - -func init() { - Symbols["net/http/http"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CanonicalHeaderKey": reflect.ValueOf(http.CanonicalHeaderKey), - "DefaultClient": reflect.ValueOf(&http.DefaultClient).Elem(), - "DefaultMaxHeaderBytes": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "DefaultMaxIdleConnsPerHost": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DefaultServeMux": reflect.ValueOf(&http.DefaultServeMux).Elem(), - "DefaultTransport": reflect.ValueOf(&http.DefaultTransport).Elem(), - "DetectContentType": reflect.ValueOf(http.DetectContentType), - "ErrAbortHandler": reflect.ValueOf(&http.ErrAbortHandler).Elem(), - "ErrBodyNotAllowed": reflect.ValueOf(&http.ErrBodyNotAllowed).Elem(), - "ErrBodyReadAfterClose": reflect.ValueOf(&http.ErrBodyReadAfterClose).Elem(), - "ErrContentLength": reflect.ValueOf(&http.ErrContentLength).Elem(), - "ErrHandlerTimeout": reflect.ValueOf(&http.ErrHandlerTimeout).Elem(), - "ErrHeaderTooLong": reflect.ValueOf(&http.ErrHeaderTooLong).Elem(), - "ErrHijacked": reflect.ValueOf(&http.ErrHijacked).Elem(), - "ErrLineTooLong": reflect.ValueOf(&http.ErrLineTooLong).Elem(), - "ErrMissingBoundary": reflect.ValueOf(&http.ErrMissingBoundary).Elem(), - "ErrMissingContentLength": reflect.ValueOf(&http.ErrMissingContentLength).Elem(), - "ErrMissingFile": reflect.ValueOf(&http.ErrMissingFile).Elem(), - "ErrNoCookie": reflect.ValueOf(&http.ErrNoCookie).Elem(), - "ErrNoLocation": reflect.ValueOf(&http.ErrNoLocation).Elem(), - "ErrNotMultipart": reflect.ValueOf(&http.ErrNotMultipart).Elem(), - "ErrNotSupported": reflect.ValueOf(&http.ErrNotSupported).Elem(), - "ErrServerClosed": reflect.ValueOf(&http.ErrServerClosed).Elem(), - "ErrShortBody": reflect.ValueOf(&http.ErrShortBody).Elem(), - "ErrSkipAltProtocol": reflect.ValueOf(&http.ErrSkipAltProtocol).Elem(), - "ErrUnexpectedTrailer": reflect.ValueOf(&http.ErrUnexpectedTrailer).Elem(), - "ErrUseLastResponse": reflect.ValueOf(&http.ErrUseLastResponse).Elem(), - "ErrWriteAfterFlush": reflect.ValueOf(&http.ErrWriteAfterFlush).Elem(), - "Error": reflect.ValueOf(http.Error), - "FS": reflect.ValueOf(http.FS), - "FileServer": reflect.ValueOf(http.FileServer), - "Get": reflect.ValueOf(http.Get), - "Handle": reflect.ValueOf(http.Handle), - "HandleFunc": reflect.ValueOf(http.HandleFunc), - "Head": reflect.ValueOf(http.Head), - "ListenAndServe": reflect.ValueOf(http.ListenAndServe), - "ListenAndServeTLS": reflect.ValueOf(http.ListenAndServeTLS), - "LocalAddrContextKey": reflect.ValueOf(&http.LocalAddrContextKey).Elem(), - "MaxBytesReader": reflect.ValueOf(http.MaxBytesReader), - "MethodConnect": reflect.ValueOf(constant.MakeFromLiteral("\"CONNECT\"", token.STRING, 0)), - "MethodDelete": reflect.ValueOf(constant.MakeFromLiteral("\"DELETE\"", token.STRING, 0)), - "MethodGet": reflect.ValueOf(constant.MakeFromLiteral("\"GET\"", token.STRING, 0)), - "MethodHead": reflect.ValueOf(constant.MakeFromLiteral("\"HEAD\"", token.STRING, 0)), - "MethodOptions": reflect.ValueOf(constant.MakeFromLiteral("\"OPTIONS\"", token.STRING, 0)), - "MethodPatch": reflect.ValueOf(constant.MakeFromLiteral("\"PATCH\"", token.STRING, 0)), - "MethodPost": reflect.ValueOf(constant.MakeFromLiteral("\"POST\"", token.STRING, 0)), - "MethodPut": reflect.ValueOf(constant.MakeFromLiteral("\"PUT\"", token.STRING, 0)), - "MethodTrace": reflect.ValueOf(constant.MakeFromLiteral("\"TRACE\"", token.STRING, 0)), - "NewFileTransport": reflect.ValueOf(http.NewFileTransport), - "NewRequest": reflect.ValueOf(http.NewRequest), - "NewRequestWithContext": reflect.ValueOf(http.NewRequestWithContext), - "NewServeMux": reflect.ValueOf(http.NewServeMux), - "NoBody": reflect.ValueOf(&http.NoBody).Elem(), - "NotFound": reflect.ValueOf(http.NotFound), - "NotFoundHandler": reflect.ValueOf(http.NotFoundHandler), - "ParseHTTPVersion": reflect.ValueOf(http.ParseHTTPVersion), - "ParseTime": reflect.ValueOf(http.ParseTime), - "Post": reflect.ValueOf(http.Post), - "PostForm": reflect.ValueOf(http.PostForm), - "ProxyFromEnvironment": reflect.ValueOf(http.ProxyFromEnvironment), - "ProxyURL": reflect.ValueOf(http.ProxyURL), - "ReadRequest": reflect.ValueOf(http.ReadRequest), - "ReadResponse": reflect.ValueOf(http.ReadResponse), - "Redirect": reflect.ValueOf(http.Redirect), - "RedirectHandler": reflect.ValueOf(http.RedirectHandler), - "SameSiteDefaultMode": reflect.ValueOf(http.SameSiteDefaultMode), - "SameSiteLaxMode": reflect.ValueOf(http.SameSiteLaxMode), - "SameSiteNoneMode": reflect.ValueOf(http.SameSiteNoneMode), - "SameSiteStrictMode": reflect.ValueOf(http.SameSiteStrictMode), - "Serve": reflect.ValueOf(http.Serve), - "ServeContent": reflect.ValueOf(http.ServeContent), - "ServeFile": reflect.ValueOf(http.ServeFile), - "ServeTLS": reflect.ValueOf(http.ServeTLS), - "ServerContextKey": reflect.ValueOf(&http.ServerContextKey).Elem(), - "SetCookie": reflect.ValueOf(http.SetCookie), - "StateActive": reflect.ValueOf(http.StateActive), - "StateClosed": reflect.ValueOf(http.StateClosed), - "StateHijacked": reflect.ValueOf(http.StateHijacked), - "StateIdle": reflect.ValueOf(http.StateIdle), - "StateNew": reflect.ValueOf(http.StateNew), - "StatusAccepted": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "StatusAlreadyReported": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "StatusBadGateway": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "StatusBadRequest": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "StatusConflict": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "StatusContinue": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "StatusCreated": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "StatusEarlyHints": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "StatusExpectationFailed": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "StatusFailedDependency": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "StatusForbidden": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "StatusFound": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "StatusGatewayTimeout": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "StatusGone": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "StatusHTTPVersionNotSupported": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), - "StatusIMUsed": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "StatusInsufficientStorage": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "StatusInternalServerError": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "StatusLengthRequired": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "StatusLocked": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "StatusLoopDetected": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "StatusMethodNotAllowed": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "StatusMisdirectedRequest": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "StatusMovedPermanently": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "StatusMultiStatus": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "StatusMultipleChoices": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "StatusNetworkAuthenticationRequired": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "StatusNoContent": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "StatusNonAuthoritativeInfo": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "StatusNotAcceptable": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "StatusNotExtended": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), - "StatusNotFound": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "StatusNotImplemented": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "StatusNotModified": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "StatusOK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "StatusPartialContent": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "StatusPaymentRequired": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "StatusPermanentRedirect": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "StatusPreconditionFailed": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "StatusPreconditionRequired": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "StatusProcessing": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "StatusProxyAuthRequired": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "StatusRequestEntityTooLarge": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "StatusRequestHeaderFieldsTooLarge": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "StatusRequestTimeout": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "StatusRequestURITooLong": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "StatusRequestedRangeNotSatisfiable": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "StatusResetContent": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "StatusSeeOther": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "StatusServiceUnavailable": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "StatusSwitchingProtocols": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "StatusTeapot": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "StatusTemporaryRedirect": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "StatusText": reflect.ValueOf(http.StatusText), - "StatusTooEarly": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "StatusTooManyRequests": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "StatusUnauthorized": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "StatusUnavailableForLegalReasons": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "StatusUnprocessableEntity": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "StatusUnsupportedMediaType": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "StatusUpgradeRequired": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "StatusUseProxy": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "StatusVariantAlsoNegotiates": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "StripPrefix": reflect.ValueOf(http.StripPrefix), - "TimeFormat": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 GMT\"", token.STRING, 0)), - "TimeoutHandler": reflect.ValueOf(http.TimeoutHandler), - "TrailerPrefix": reflect.ValueOf(constant.MakeFromLiteral("\"Trailer:\"", token.STRING, 0)), - - // type definitions - "Client": reflect.ValueOf((*http.Client)(nil)), - "CloseNotifier": reflect.ValueOf((*http.CloseNotifier)(nil)), - "ConnState": reflect.ValueOf((*http.ConnState)(nil)), - "Cookie": reflect.ValueOf((*http.Cookie)(nil)), - "CookieJar": reflect.ValueOf((*http.CookieJar)(nil)), - "Dir": reflect.ValueOf((*http.Dir)(nil)), - "File": reflect.ValueOf((*http.File)(nil)), - "FileSystem": reflect.ValueOf((*http.FileSystem)(nil)), - "Flusher": reflect.ValueOf((*http.Flusher)(nil)), - "Handler": reflect.ValueOf((*http.Handler)(nil)), - "HandlerFunc": reflect.ValueOf((*http.HandlerFunc)(nil)), - "Header": reflect.ValueOf((*http.Header)(nil)), - "Hijacker": reflect.ValueOf((*http.Hijacker)(nil)), - "ProtocolError": reflect.ValueOf((*http.ProtocolError)(nil)), - "PushOptions": reflect.ValueOf((*http.PushOptions)(nil)), - "Pusher": reflect.ValueOf((*http.Pusher)(nil)), - "Request": reflect.ValueOf((*http.Request)(nil)), - "Response": reflect.ValueOf((*http.Response)(nil)), - "ResponseWriter": reflect.ValueOf((*http.ResponseWriter)(nil)), - "RoundTripper": reflect.ValueOf((*http.RoundTripper)(nil)), - "SameSite": reflect.ValueOf((*http.SameSite)(nil)), - "ServeMux": reflect.ValueOf((*http.ServeMux)(nil)), - "Server": reflect.ValueOf((*http.Server)(nil)), - "Transport": reflect.ValueOf((*http.Transport)(nil)), - - // interface wrapper definitions - "_CloseNotifier": reflect.ValueOf((*_net_http_CloseNotifier)(nil)), - "_CookieJar": reflect.ValueOf((*_net_http_CookieJar)(nil)), - "_File": reflect.ValueOf((*_net_http_File)(nil)), - "_FileSystem": reflect.ValueOf((*_net_http_FileSystem)(nil)), - "_Flusher": reflect.ValueOf((*_net_http_Flusher)(nil)), - "_Handler": reflect.ValueOf((*_net_http_Handler)(nil)), - "_Hijacker": reflect.ValueOf((*_net_http_Hijacker)(nil)), - "_Pusher": reflect.ValueOf((*_net_http_Pusher)(nil)), - "_ResponseWriter": reflect.ValueOf((*_net_http_ResponseWriter)(nil)), - "_RoundTripper": reflect.ValueOf((*_net_http_RoundTripper)(nil)), - } -} - -// _net_http_CloseNotifier is an interface wrapper for CloseNotifier type -type _net_http_CloseNotifier struct { - IValue interface{} - WCloseNotify func() <-chan bool -} - -func (W _net_http_CloseNotifier) CloseNotify() <-chan bool { - return W.WCloseNotify() -} - -// _net_http_CookieJar is an interface wrapper for CookieJar type -type _net_http_CookieJar struct { - IValue interface{} - WCookies func(u *url.URL) []*http.Cookie - WSetCookies func(u *url.URL, cookies []*http.Cookie) -} - -func (W _net_http_CookieJar) Cookies(u *url.URL) []*http.Cookie { - return W.WCookies(u) -} -func (W _net_http_CookieJar) SetCookies(u *url.URL, cookies []*http.Cookie) { - W.WSetCookies(u, cookies) -} - -// _net_http_File is an interface wrapper for File type -type _net_http_File struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WReaddir func(count int) ([]fs.FileInfo, error) - WSeek func(offset int64, whence int) (int64, error) - WStat func() (fs.FileInfo, error) -} - -func (W _net_http_File) Close() error { - return W.WClose() -} -func (W _net_http_File) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _net_http_File) Readdir(count int) ([]fs.FileInfo, error) { - return W.WReaddir(count) -} -func (W _net_http_File) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} -func (W _net_http_File) Stat() (fs.FileInfo, error) { - return W.WStat() -} - -// _net_http_FileSystem is an interface wrapper for FileSystem type -type _net_http_FileSystem struct { - IValue interface{} - WOpen func(name string) (http.File, error) -} - -func (W _net_http_FileSystem) Open(name string) (http.File, error) { - return W.WOpen(name) -} - -// _net_http_Flusher is an interface wrapper for Flusher type -type _net_http_Flusher struct { - IValue interface{} - WFlush func() -} - -func (W _net_http_Flusher) Flush() { - W.WFlush() -} - -// _net_http_Handler is an interface wrapper for Handler type -type _net_http_Handler struct { - IValue interface{} - WServeHTTP func(a0 http.ResponseWriter, a1 *http.Request) -} - -func (W _net_http_Handler) ServeHTTP(a0 http.ResponseWriter, a1 *http.Request) { - W.WServeHTTP(a0, a1) -} - -// _net_http_Hijacker is an interface wrapper for Hijacker type -type _net_http_Hijacker struct { - IValue interface{} - WHijack func() (net.Conn, *bufio.ReadWriter, error) -} - -func (W _net_http_Hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { - return W.WHijack() -} - -// _net_http_Pusher is an interface wrapper for Pusher type -type _net_http_Pusher struct { - IValue interface{} - WPush func(target string, opts *http.PushOptions) error -} - -func (W _net_http_Pusher) Push(target string, opts *http.PushOptions) error { - return W.WPush(target, opts) -} - -// _net_http_ResponseWriter is an interface wrapper for ResponseWriter type -type _net_http_ResponseWriter struct { - IValue interface{} - WHeader func() http.Header - WWrite func(a0 []byte) (int, error) - WWriteHeader func(statusCode int) -} - -func (W _net_http_ResponseWriter) Header() http.Header { - return W.WHeader() -} -func (W _net_http_ResponseWriter) Write(a0 []byte) (int, error) { - return W.WWrite(a0) -} -func (W _net_http_ResponseWriter) WriteHeader(statusCode int) { - W.WWriteHeader(statusCode) -} - -// _net_http_RoundTripper is an interface wrapper for RoundTripper type -type _net_http_RoundTripper struct { - IValue interface{} - WRoundTrip func(a0 *http.Request) (*http.Response, error) -} - -func (W _net_http_RoundTripper) RoundTrip(a0 *http.Request) (*http.Response, error) { - return W.WRoundTrip(a0) -} diff --git a/stdlib/go1_16_net_http_cgi.go b/stdlib/go1_16_net_http_cgi.go deleted file mode 100644 index d5fef7600..000000000 --- a/stdlib/go1_16_net_http_cgi.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/http/cgi" - "reflect" -) - -func init() { - Symbols["net/http/cgi/cgi"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Request": reflect.ValueOf(cgi.Request), - "RequestFromMap": reflect.ValueOf(cgi.RequestFromMap), - "Serve": reflect.ValueOf(cgi.Serve), - - // type definitions - "Handler": reflect.ValueOf((*cgi.Handler)(nil)), - } -} diff --git a/stdlib/go1_16_net_http_cookiejar.go b/stdlib/go1_16_net_http_cookiejar.go deleted file mode 100644 index 11b8cad27..000000000 --- a/stdlib/go1_16_net_http_cookiejar.go +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/http/cookiejar" - "reflect" -) - -func init() { - Symbols["net/http/cookiejar/cookiejar"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(cookiejar.New), - - // type definitions - "Jar": reflect.ValueOf((*cookiejar.Jar)(nil)), - "Options": reflect.ValueOf((*cookiejar.Options)(nil)), - "PublicSuffixList": reflect.ValueOf((*cookiejar.PublicSuffixList)(nil)), - - // interface wrapper definitions - "_PublicSuffixList": reflect.ValueOf((*_net_http_cookiejar_PublicSuffixList)(nil)), - } -} - -// _net_http_cookiejar_PublicSuffixList is an interface wrapper for PublicSuffixList type -type _net_http_cookiejar_PublicSuffixList struct { - IValue interface{} - WPublicSuffix func(domain string) string - WString func() string -} - -func (W _net_http_cookiejar_PublicSuffixList) PublicSuffix(domain string) string { - return W.WPublicSuffix(domain) -} -func (W _net_http_cookiejar_PublicSuffixList) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_net_http_fcgi.go b/stdlib/go1_16_net_http_fcgi.go deleted file mode 100644 index 7fdda7fd0..000000000 --- a/stdlib/go1_16_net_http_fcgi.go +++ /dev/null @@ -1,20 +0,0 @@ -// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/http/fcgi" - "reflect" -) - -func init() { - Symbols["net/http/fcgi/fcgi"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrConnClosed": reflect.ValueOf(&fcgi.ErrConnClosed).Elem(), - "ErrRequestAborted": reflect.ValueOf(&fcgi.ErrRequestAborted).Elem(), - "ProcessEnv": reflect.ValueOf(fcgi.ProcessEnv), - "Serve": reflect.ValueOf(fcgi.Serve), - } -} diff --git a/stdlib/go1_16_net_http_httptest.go b/stdlib/go1_16_net_http_httptest.go deleted file mode 100644 index e87315537..000000000 --- a/stdlib/go1_16_net_http_httptest.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "net/http/httptest" - "reflect" -) - -func init() { - Symbols["net/http/httptest/httptest"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DefaultRemoteAddr": reflect.ValueOf(constant.MakeFromLiteral("\"1.2.3.4\"", token.STRING, 0)), - "NewRecorder": reflect.ValueOf(httptest.NewRecorder), - "NewRequest": reflect.ValueOf(httptest.NewRequest), - "NewServer": reflect.ValueOf(httptest.NewServer), - "NewTLSServer": reflect.ValueOf(httptest.NewTLSServer), - "NewUnstartedServer": reflect.ValueOf(httptest.NewUnstartedServer), - - // type definitions - "ResponseRecorder": reflect.ValueOf((*httptest.ResponseRecorder)(nil)), - "Server": reflect.ValueOf((*httptest.Server)(nil)), - } -} diff --git a/stdlib/go1_16_net_http_httptrace.go b/stdlib/go1_16_net_http_httptrace.go deleted file mode 100644 index d09e44d59..000000000 --- a/stdlib/go1_16_net_http_httptrace.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/http/httptrace" - "reflect" -) - -func init() { - Symbols["net/http/httptrace/httptrace"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ContextClientTrace": reflect.ValueOf(httptrace.ContextClientTrace), - "WithClientTrace": reflect.ValueOf(httptrace.WithClientTrace), - - // type definitions - "ClientTrace": reflect.ValueOf((*httptrace.ClientTrace)(nil)), - "DNSDoneInfo": reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)), - "DNSStartInfo": reflect.ValueOf((*httptrace.DNSStartInfo)(nil)), - "GotConnInfo": reflect.ValueOf((*httptrace.GotConnInfo)(nil)), - "WroteRequestInfo": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)), - } -} diff --git a/stdlib/go1_16_net_http_httputil.go b/stdlib/go1_16_net_http_httputil.go deleted file mode 100644 index 71d885e16..000000000 --- a/stdlib/go1_16_net_http_httputil.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/http/httputil" - "reflect" -) - -func init() { - Symbols["net/http/httputil/httputil"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DumpRequest": reflect.ValueOf(httputil.DumpRequest), - "DumpRequestOut": reflect.ValueOf(httputil.DumpRequestOut), - "DumpResponse": reflect.ValueOf(httputil.DumpResponse), - "ErrClosed": reflect.ValueOf(&httputil.ErrClosed).Elem(), - "ErrLineTooLong": reflect.ValueOf(&httputil.ErrLineTooLong).Elem(), - "ErrPersistEOF": reflect.ValueOf(&httputil.ErrPersistEOF).Elem(), - "ErrPipeline": reflect.ValueOf(&httputil.ErrPipeline).Elem(), - "NewChunkedReader": reflect.ValueOf(httputil.NewChunkedReader), - "NewChunkedWriter": reflect.ValueOf(httputil.NewChunkedWriter), - "NewClientConn": reflect.ValueOf(httputil.NewClientConn), - "NewProxyClientConn": reflect.ValueOf(httputil.NewProxyClientConn), - "NewServerConn": reflect.ValueOf(httputil.NewServerConn), - "NewSingleHostReverseProxy": reflect.ValueOf(httputil.NewSingleHostReverseProxy), - - // type definitions - "BufferPool": reflect.ValueOf((*httputil.BufferPool)(nil)), - "ClientConn": reflect.ValueOf((*httputil.ClientConn)(nil)), - "ReverseProxy": reflect.ValueOf((*httputil.ReverseProxy)(nil)), - "ServerConn": reflect.ValueOf((*httputil.ServerConn)(nil)), - - // interface wrapper definitions - "_BufferPool": reflect.ValueOf((*_net_http_httputil_BufferPool)(nil)), - } -} - -// _net_http_httputil_BufferPool is an interface wrapper for BufferPool type -type _net_http_httputil_BufferPool struct { - IValue interface{} - WGet func() []byte - WPut func(a0 []byte) -} - -func (W _net_http_httputil_BufferPool) Get() []byte { - return W.WGet() -} -func (W _net_http_httputil_BufferPool) Put(a0 []byte) { - W.WPut(a0) -} diff --git a/stdlib/go1_16_net_http_pprof.go b/stdlib/go1_16_net_http_pprof.go deleted file mode 100644 index 06c55ecf9..000000000 --- a/stdlib/go1_16_net_http_pprof.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/http/pprof" - "reflect" -) - -func init() { - Symbols["net/http/pprof/pprof"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Cmdline": reflect.ValueOf(pprof.Cmdline), - "Handler": reflect.ValueOf(pprof.Handler), - "Index": reflect.ValueOf(pprof.Index), - "Profile": reflect.ValueOf(pprof.Profile), - "Symbol": reflect.ValueOf(pprof.Symbol), - "Trace": reflect.ValueOf(pprof.Trace), - } -} diff --git a/stdlib/go1_16_net_mail.go b/stdlib/go1_16_net_mail.go deleted file mode 100644 index 2239f0b1f..000000000 --- a/stdlib/go1_16_net_mail.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract net/mail'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/mail" - "reflect" -) - -func init() { - Symbols["net/mail/mail"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrHeaderNotPresent": reflect.ValueOf(&mail.ErrHeaderNotPresent).Elem(), - "ParseAddress": reflect.ValueOf(mail.ParseAddress), - "ParseAddressList": reflect.ValueOf(mail.ParseAddressList), - "ParseDate": reflect.ValueOf(mail.ParseDate), - "ReadMessage": reflect.ValueOf(mail.ReadMessage), - - // type definitions - "Address": reflect.ValueOf((*mail.Address)(nil)), - "AddressParser": reflect.ValueOf((*mail.AddressParser)(nil)), - "Header": reflect.ValueOf((*mail.Header)(nil)), - "Message": reflect.ValueOf((*mail.Message)(nil)), - } -} diff --git a/stdlib/go1_16_net_rpc.go b/stdlib/go1_16_net_rpc.go deleted file mode 100644 index 039033a19..000000000 --- a/stdlib/go1_16_net_rpc.go +++ /dev/null @@ -1,93 +0,0 @@ -// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "net/rpc" - "reflect" -) - -func init() { - Symbols["net/rpc/rpc"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Accept": reflect.ValueOf(rpc.Accept), - "DefaultDebugPath": reflect.ValueOf(constant.MakeFromLiteral("\"/debug/rpc\"", token.STRING, 0)), - "DefaultRPCPath": reflect.ValueOf(constant.MakeFromLiteral("\"/_goRPC_\"", token.STRING, 0)), - "DefaultServer": reflect.ValueOf(&rpc.DefaultServer).Elem(), - "Dial": reflect.ValueOf(rpc.Dial), - "DialHTTP": reflect.ValueOf(rpc.DialHTTP), - "DialHTTPPath": reflect.ValueOf(rpc.DialHTTPPath), - "ErrShutdown": reflect.ValueOf(&rpc.ErrShutdown).Elem(), - "HandleHTTP": reflect.ValueOf(rpc.HandleHTTP), - "NewClient": reflect.ValueOf(rpc.NewClient), - "NewClientWithCodec": reflect.ValueOf(rpc.NewClientWithCodec), - "NewServer": reflect.ValueOf(rpc.NewServer), - "Register": reflect.ValueOf(rpc.Register), - "RegisterName": reflect.ValueOf(rpc.RegisterName), - "ServeCodec": reflect.ValueOf(rpc.ServeCodec), - "ServeConn": reflect.ValueOf(rpc.ServeConn), - "ServeRequest": reflect.ValueOf(rpc.ServeRequest), - - // type definitions - "Call": reflect.ValueOf((*rpc.Call)(nil)), - "Client": reflect.ValueOf((*rpc.Client)(nil)), - "ClientCodec": reflect.ValueOf((*rpc.ClientCodec)(nil)), - "Request": reflect.ValueOf((*rpc.Request)(nil)), - "Response": reflect.ValueOf((*rpc.Response)(nil)), - "Server": reflect.ValueOf((*rpc.Server)(nil)), - "ServerCodec": reflect.ValueOf((*rpc.ServerCodec)(nil)), - "ServerError": reflect.ValueOf((*rpc.ServerError)(nil)), - - // interface wrapper definitions - "_ClientCodec": reflect.ValueOf((*_net_rpc_ClientCodec)(nil)), - "_ServerCodec": reflect.ValueOf((*_net_rpc_ServerCodec)(nil)), - } -} - -// _net_rpc_ClientCodec is an interface wrapper for ClientCodec type -type _net_rpc_ClientCodec struct { - IValue interface{} - WClose func() error - WReadResponseBody func(a0 interface{}) error - WReadResponseHeader func(a0 *rpc.Response) error - WWriteRequest func(a0 *rpc.Request, a1 interface{}) error -} - -func (W _net_rpc_ClientCodec) Close() error { - return W.WClose() -} -func (W _net_rpc_ClientCodec) ReadResponseBody(a0 interface{}) error { - return W.WReadResponseBody(a0) -} -func (W _net_rpc_ClientCodec) ReadResponseHeader(a0 *rpc.Response) error { - return W.WReadResponseHeader(a0) -} -func (W _net_rpc_ClientCodec) WriteRequest(a0 *rpc.Request, a1 interface{}) error { - return W.WWriteRequest(a0, a1) -} - -// _net_rpc_ServerCodec is an interface wrapper for ServerCodec type -type _net_rpc_ServerCodec struct { - IValue interface{} - WClose func() error - WReadRequestBody func(a0 interface{}) error - WReadRequestHeader func(a0 *rpc.Request) error - WWriteResponse func(a0 *rpc.Response, a1 interface{}) error -} - -func (W _net_rpc_ServerCodec) Close() error { - return W.WClose() -} -func (W _net_rpc_ServerCodec) ReadRequestBody(a0 interface{}) error { - return W.WReadRequestBody(a0) -} -func (W _net_rpc_ServerCodec) ReadRequestHeader(a0 *rpc.Request) error { - return W.WReadRequestHeader(a0) -} -func (W _net_rpc_ServerCodec) WriteResponse(a0 *rpc.Response, a1 interface{}) error { - return W.WWriteResponse(a0, a1) -} diff --git a/stdlib/go1_16_net_rpc_jsonrpc.go b/stdlib/go1_16_net_rpc_jsonrpc.go deleted file mode 100644 index 517af0ead..000000000 --- a/stdlib/go1_16_net_rpc_jsonrpc.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/rpc/jsonrpc" - "reflect" -) - -func init() { - Symbols["net/rpc/jsonrpc/jsonrpc"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Dial": reflect.ValueOf(jsonrpc.Dial), - "NewClient": reflect.ValueOf(jsonrpc.NewClient), - "NewClientCodec": reflect.ValueOf(jsonrpc.NewClientCodec), - "NewServerCodec": reflect.ValueOf(jsonrpc.NewServerCodec), - "ServeConn": reflect.ValueOf(jsonrpc.ServeConn), - } -} diff --git a/stdlib/go1_16_net_smtp.go b/stdlib/go1_16_net_smtp.go deleted file mode 100644 index 9832470fb..000000000 --- a/stdlib/go1_16_net_smtp.go +++ /dev/null @@ -1,43 +0,0 @@ -// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/smtp" - "reflect" -) - -func init() { - Symbols["net/smtp/smtp"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CRAMMD5Auth": reflect.ValueOf(smtp.CRAMMD5Auth), - "Dial": reflect.ValueOf(smtp.Dial), - "NewClient": reflect.ValueOf(smtp.NewClient), - "PlainAuth": reflect.ValueOf(smtp.PlainAuth), - "SendMail": reflect.ValueOf(smtp.SendMail), - - // type definitions - "Auth": reflect.ValueOf((*smtp.Auth)(nil)), - "Client": reflect.ValueOf((*smtp.Client)(nil)), - "ServerInfo": reflect.ValueOf((*smtp.ServerInfo)(nil)), - - // interface wrapper definitions - "_Auth": reflect.ValueOf((*_net_smtp_Auth)(nil)), - } -} - -// _net_smtp_Auth is an interface wrapper for Auth type -type _net_smtp_Auth struct { - IValue interface{} - WNext func(fromServer []byte, more bool) (toServer []byte, err error) - WStart func(server *smtp.ServerInfo) (proto string, toServer []byte, err error) -} - -func (W _net_smtp_Auth) Next(fromServer []byte, more bool) (toServer []byte, err error) { - return W.WNext(fromServer, more) -} -func (W _net_smtp_Auth) Start(server *smtp.ServerInfo) (proto string, toServer []byte, err error) { - return W.WStart(server) -} diff --git a/stdlib/go1_16_net_textproto.go b/stdlib/go1_16_net_textproto.go deleted file mode 100644 index ed50a7dfd..000000000 --- a/stdlib/go1_16_net_textproto.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/textproto" - "reflect" -) - -func init() { - Symbols["net/textproto/textproto"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CanonicalMIMEHeaderKey": reflect.ValueOf(textproto.CanonicalMIMEHeaderKey), - "Dial": reflect.ValueOf(textproto.Dial), - "NewConn": reflect.ValueOf(textproto.NewConn), - "NewReader": reflect.ValueOf(textproto.NewReader), - "NewWriter": reflect.ValueOf(textproto.NewWriter), - "TrimBytes": reflect.ValueOf(textproto.TrimBytes), - "TrimString": reflect.ValueOf(textproto.TrimString), - - // type definitions - "Conn": reflect.ValueOf((*textproto.Conn)(nil)), - "Error": reflect.ValueOf((*textproto.Error)(nil)), - "MIMEHeader": reflect.ValueOf((*textproto.MIMEHeader)(nil)), - "Pipeline": reflect.ValueOf((*textproto.Pipeline)(nil)), - "ProtocolError": reflect.ValueOf((*textproto.ProtocolError)(nil)), - "Reader": reflect.ValueOf((*textproto.Reader)(nil)), - "Writer": reflect.ValueOf((*textproto.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_net_url.go b/stdlib/go1_16_net_url.go deleted file mode 100644 index 323c89d88..000000000 --- a/stdlib/go1_16_net_url.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract net/url'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "net/url" - "reflect" -) - -func init() { - Symbols["net/url/url"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Parse": reflect.ValueOf(url.Parse), - "ParseQuery": reflect.ValueOf(url.ParseQuery), - "ParseRequestURI": reflect.ValueOf(url.ParseRequestURI), - "PathEscape": reflect.ValueOf(url.PathEscape), - "PathUnescape": reflect.ValueOf(url.PathUnescape), - "QueryEscape": reflect.ValueOf(url.QueryEscape), - "QueryUnescape": reflect.ValueOf(url.QueryUnescape), - "User": reflect.ValueOf(url.User), - "UserPassword": reflect.ValueOf(url.UserPassword), - - // type definitions - "Error": reflect.ValueOf((*url.Error)(nil)), - "EscapeError": reflect.ValueOf((*url.EscapeError)(nil)), - "InvalidHostError": reflect.ValueOf((*url.InvalidHostError)(nil)), - "URL": reflect.ValueOf((*url.URL)(nil)), - "Userinfo": reflect.ValueOf((*url.Userinfo)(nil)), - "Values": reflect.ValueOf((*url.Values)(nil)), - } -} diff --git a/stdlib/go1_16_os.go b/stdlib/go1_16_os.go deleted file mode 100644 index 911c5e7e0..000000000 --- a/stdlib/go1_16_os.go +++ /dev/null @@ -1,210 +0,0 @@ -// Code generated by 'yaegi extract os'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "io/fs" - "os" - "reflect" - "time" -) - -func init() { - Symbols["os/os"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Args": reflect.ValueOf(&os.Args).Elem(), - "Chdir": reflect.ValueOf(os.Chdir), - "Chmod": reflect.ValueOf(os.Chmod), - "Chown": reflect.ValueOf(os.Chown), - "Chtimes": reflect.ValueOf(os.Chtimes), - "Clearenv": reflect.ValueOf(os.Clearenv), - "Create": reflect.ValueOf(os.Create), - "CreateTemp": reflect.ValueOf(os.CreateTemp), - "DevNull": reflect.ValueOf(constant.MakeFromLiteral("\"/dev/null\"", token.STRING, 0)), - "DirFS": reflect.ValueOf(os.DirFS), - "Environ": reflect.ValueOf(os.Environ), - "ErrClosed": reflect.ValueOf(&os.ErrClosed).Elem(), - "ErrDeadlineExceeded": reflect.ValueOf(&os.ErrDeadlineExceeded).Elem(), - "ErrExist": reflect.ValueOf(&os.ErrExist).Elem(), - "ErrInvalid": reflect.ValueOf(&os.ErrInvalid).Elem(), - "ErrNoDeadline": reflect.ValueOf(&os.ErrNoDeadline).Elem(), - "ErrNotExist": reflect.ValueOf(&os.ErrNotExist).Elem(), - "ErrPermission": reflect.ValueOf(&os.ErrPermission).Elem(), - "ErrProcessDone": reflect.ValueOf(&os.ErrProcessDone).Elem(), - "Executable": reflect.ValueOf(os.Executable), - "Exit": reflect.ValueOf(osExit), - "Expand": reflect.ValueOf(os.Expand), - "ExpandEnv": reflect.ValueOf(os.ExpandEnv), - "FindProcess": reflect.ValueOf(osFindProcess), - "Getegid": reflect.ValueOf(os.Getegid), - "Getenv": reflect.ValueOf(os.Getenv), - "Geteuid": reflect.ValueOf(os.Geteuid), - "Getgid": reflect.ValueOf(os.Getgid), - "Getgroups": reflect.ValueOf(os.Getgroups), - "Getpagesize": reflect.ValueOf(os.Getpagesize), - "Getpid": reflect.ValueOf(os.Getpid), - "Getppid": reflect.ValueOf(os.Getppid), - "Getuid": reflect.ValueOf(os.Getuid), - "Getwd": reflect.ValueOf(os.Getwd), - "Hostname": reflect.ValueOf(os.Hostname), - "Interrupt": reflect.ValueOf(&os.Interrupt).Elem(), - "IsExist": reflect.ValueOf(os.IsExist), - "IsNotExist": reflect.ValueOf(os.IsNotExist), - "IsPathSeparator": reflect.ValueOf(os.IsPathSeparator), - "IsPermission": reflect.ValueOf(os.IsPermission), - "IsTimeout": reflect.ValueOf(os.IsTimeout), - "Kill": reflect.ValueOf(&os.Kill).Elem(), - "Lchown": reflect.ValueOf(os.Lchown), - "Link": reflect.ValueOf(os.Link), - "LookupEnv": reflect.ValueOf(os.LookupEnv), - "Lstat": reflect.ValueOf(os.Lstat), - "Mkdir": reflect.ValueOf(os.Mkdir), - "MkdirAll": reflect.ValueOf(os.MkdirAll), - "MkdirTemp": reflect.ValueOf(os.MkdirTemp), - "ModeAppend": reflect.ValueOf(os.ModeAppend), - "ModeCharDevice": reflect.ValueOf(os.ModeCharDevice), - "ModeDevice": reflect.ValueOf(os.ModeDevice), - "ModeDir": reflect.ValueOf(os.ModeDir), - "ModeExclusive": reflect.ValueOf(os.ModeExclusive), - "ModeIrregular": reflect.ValueOf(os.ModeIrregular), - "ModeNamedPipe": reflect.ValueOf(os.ModeNamedPipe), - "ModePerm": reflect.ValueOf(os.ModePerm), - "ModeSetgid": reflect.ValueOf(os.ModeSetgid), - "ModeSetuid": reflect.ValueOf(os.ModeSetuid), - "ModeSocket": reflect.ValueOf(os.ModeSocket), - "ModeSticky": reflect.ValueOf(os.ModeSticky), - "ModeSymlink": reflect.ValueOf(os.ModeSymlink), - "ModeTemporary": reflect.ValueOf(os.ModeTemporary), - "ModeType": reflect.ValueOf(os.ModeType), - "NewFile": reflect.ValueOf(os.NewFile), - "NewSyscallError": reflect.ValueOf(os.NewSyscallError), - "O_APPEND": reflect.ValueOf(os.O_APPEND), - "O_CREATE": reflect.ValueOf(os.O_CREATE), - "O_EXCL": reflect.ValueOf(os.O_EXCL), - "O_RDONLY": reflect.ValueOf(os.O_RDONLY), - "O_RDWR": reflect.ValueOf(os.O_RDWR), - "O_SYNC": reflect.ValueOf(os.O_SYNC), - "O_TRUNC": reflect.ValueOf(os.O_TRUNC), - "O_WRONLY": reflect.ValueOf(os.O_WRONLY), - "Open": reflect.ValueOf(os.Open), - "OpenFile": reflect.ValueOf(os.OpenFile), - "PathListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "PathSeparator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "Pipe": reflect.ValueOf(os.Pipe), - "ReadDir": reflect.ValueOf(os.ReadDir), - "ReadFile": reflect.ValueOf(os.ReadFile), - "Readlink": reflect.ValueOf(os.Readlink), - "Remove": reflect.ValueOf(os.Remove), - "RemoveAll": reflect.ValueOf(os.RemoveAll), - "Rename": reflect.ValueOf(os.Rename), - "SEEK_CUR": reflect.ValueOf(os.SEEK_CUR), - "SEEK_END": reflect.ValueOf(os.SEEK_END), - "SEEK_SET": reflect.ValueOf(os.SEEK_SET), - "SameFile": reflect.ValueOf(os.SameFile), - "Setenv": reflect.ValueOf(os.Setenv), - "StartProcess": reflect.ValueOf(os.StartProcess), - "Stat": reflect.ValueOf(os.Stat), - "Stderr": reflect.ValueOf(&os.Stderr).Elem(), - "Stdin": reflect.ValueOf(&os.Stdin).Elem(), - "Stdout": reflect.ValueOf(&os.Stdout).Elem(), - "Symlink": reflect.ValueOf(os.Symlink), - "TempDir": reflect.ValueOf(os.TempDir), - "Truncate": reflect.ValueOf(os.Truncate), - "Unsetenv": reflect.ValueOf(os.Unsetenv), - "UserCacheDir": reflect.ValueOf(os.UserCacheDir), - "UserConfigDir": reflect.ValueOf(os.UserConfigDir), - "UserHomeDir": reflect.ValueOf(os.UserHomeDir), - "WriteFile": reflect.ValueOf(os.WriteFile), - - // type definitions - "DirEntry": reflect.ValueOf((*os.DirEntry)(nil)), - "File": reflect.ValueOf((*os.File)(nil)), - "FileInfo": reflect.ValueOf((*os.FileInfo)(nil)), - "FileMode": reflect.ValueOf((*os.FileMode)(nil)), - "LinkError": reflect.ValueOf((*os.LinkError)(nil)), - "PathError": reflect.ValueOf((*os.PathError)(nil)), - "ProcAttr": reflect.ValueOf((*os.ProcAttr)(nil)), - "Process": reflect.ValueOf((*os.Process)(nil)), - "ProcessState": reflect.ValueOf((*os.ProcessState)(nil)), - "Signal": reflect.ValueOf((*os.Signal)(nil)), - "SyscallError": reflect.ValueOf((*os.SyscallError)(nil)), - - // interface wrapper definitions - "_DirEntry": reflect.ValueOf((*_os_DirEntry)(nil)), - "_FileInfo": reflect.ValueOf((*_os_FileInfo)(nil)), - "_Signal": reflect.ValueOf((*_os_Signal)(nil)), - } -} - -// _os_DirEntry is an interface wrapper for DirEntry type -type _os_DirEntry struct { - IValue interface{} - WInfo func() (fs.FileInfo, error) - WIsDir func() bool - WName func() string - WType func() fs.FileMode -} - -func (W _os_DirEntry) Info() (fs.FileInfo, error) { - return W.WInfo() -} -func (W _os_DirEntry) IsDir() bool { - return W.WIsDir() -} -func (W _os_DirEntry) Name() string { - return W.WName() -} -func (W _os_DirEntry) Type() fs.FileMode { - return W.WType() -} - -// _os_FileInfo is an interface wrapper for FileInfo type -type _os_FileInfo struct { - IValue interface{} - WIsDir func() bool - WModTime func() time.Time - WMode func() fs.FileMode - WName func() string - WSize func() int64 - WSys func() interface{} -} - -func (W _os_FileInfo) IsDir() bool { - return W.WIsDir() -} -func (W _os_FileInfo) ModTime() time.Time { - return W.WModTime() -} -func (W _os_FileInfo) Mode() fs.FileMode { - return W.WMode() -} -func (W _os_FileInfo) Name() string { - return W.WName() -} -func (W _os_FileInfo) Size() int64 { - return W.WSize() -} -func (W _os_FileInfo) Sys() interface{} { - return W.WSys() -} - -// _os_Signal is an interface wrapper for Signal type -type _os_Signal struct { - IValue interface{} - WSignal func() - WString func() string -} - -func (W _os_Signal) Signal() { - W.WSignal() -} -func (W _os_Signal) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_os_signal.go b/stdlib/go1_16_os_signal.go deleted file mode 100644 index d3ea022a2..000000000 --- a/stdlib/go1_16_os_signal.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract os/signal'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "os/signal" - "reflect" -) - -func init() { - Symbols["os/signal/signal"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Ignore": reflect.ValueOf(signal.Ignore), - "Ignored": reflect.ValueOf(signal.Ignored), - "Notify": reflect.ValueOf(signal.Notify), - "NotifyContext": reflect.ValueOf(signal.NotifyContext), - "Reset": reflect.ValueOf(signal.Reset), - "Stop": reflect.ValueOf(signal.Stop), - } -} diff --git a/stdlib/go1_16_os_user.go b/stdlib/go1_16_os_user.go deleted file mode 100644 index aa0b60039..000000000 --- a/stdlib/go1_16_os_user.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract os/user'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "os/user" - "reflect" -) - -func init() { - Symbols["os/user/user"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Current": reflect.ValueOf(user.Current), - "Lookup": reflect.ValueOf(user.Lookup), - "LookupGroup": reflect.ValueOf(user.LookupGroup), - "LookupGroupId": reflect.ValueOf(user.LookupGroupId), - "LookupId": reflect.ValueOf(user.LookupId), - - // type definitions - "Group": reflect.ValueOf((*user.Group)(nil)), - "UnknownGroupError": reflect.ValueOf((*user.UnknownGroupError)(nil)), - "UnknownGroupIdError": reflect.ValueOf((*user.UnknownGroupIdError)(nil)), - "UnknownUserError": reflect.ValueOf((*user.UnknownUserError)(nil)), - "UnknownUserIdError": reflect.ValueOf((*user.UnknownUserIdError)(nil)), - "User": reflect.ValueOf((*user.User)(nil)), - } -} diff --git a/stdlib/go1_16_path.go b/stdlib/go1_16_path.go deleted file mode 100644 index ed7d5bb6e..000000000 --- a/stdlib/go1_16_path.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract path'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "path" - "reflect" -) - -func init() { - Symbols["path/path"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Base": reflect.ValueOf(path.Base), - "Clean": reflect.ValueOf(path.Clean), - "Dir": reflect.ValueOf(path.Dir), - "ErrBadPattern": reflect.ValueOf(&path.ErrBadPattern).Elem(), - "Ext": reflect.ValueOf(path.Ext), - "IsAbs": reflect.ValueOf(path.IsAbs), - "Join": reflect.ValueOf(path.Join), - "Match": reflect.ValueOf(path.Match), - "Split": reflect.ValueOf(path.Split), - } -} diff --git a/stdlib/go1_16_path_filepath.go b/stdlib/go1_16_path_filepath.go deleted file mode 100644 index 885c4cf32..000000000 --- a/stdlib/go1_16_path_filepath.go +++ /dev/null @@ -1,44 +0,0 @@ -// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "path/filepath" - "reflect" -) - -func init() { - Symbols["path/filepath/filepath"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Abs": reflect.ValueOf(filepath.Abs), - "Base": reflect.ValueOf(filepath.Base), - "Clean": reflect.ValueOf(filepath.Clean), - "Dir": reflect.ValueOf(filepath.Dir), - "ErrBadPattern": reflect.ValueOf(&filepath.ErrBadPattern).Elem(), - "EvalSymlinks": reflect.ValueOf(filepath.EvalSymlinks), - "Ext": reflect.ValueOf(filepath.Ext), - "FromSlash": reflect.ValueOf(filepath.FromSlash), - "Glob": reflect.ValueOf(filepath.Glob), - "HasPrefix": reflect.ValueOf(filepath.HasPrefix), - "IsAbs": reflect.ValueOf(filepath.IsAbs), - "Join": reflect.ValueOf(filepath.Join), - "ListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "Match": reflect.ValueOf(filepath.Match), - "Rel": reflect.ValueOf(filepath.Rel), - "Separator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SkipDir": reflect.ValueOf(&filepath.SkipDir).Elem(), - "Split": reflect.ValueOf(filepath.Split), - "SplitList": reflect.ValueOf(filepath.SplitList), - "ToSlash": reflect.ValueOf(filepath.ToSlash), - "VolumeName": reflect.ValueOf(filepath.VolumeName), - "Walk": reflect.ValueOf(filepath.Walk), - "WalkDir": reflect.ValueOf(filepath.WalkDir), - - // type definitions - "WalkFunc": reflect.ValueOf((*filepath.WalkFunc)(nil)), - } -} diff --git a/stdlib/go1_16_reflect.go b/stdlib/go1_16_reflect.go deleted file mode 100644 index 100ffaa84..000000000 --- a/stdlib/go1_16_reflect.go +++ /dev/null @@ -1,215 +0,0 @@ -// Code generated by 'yaegi extract reflect'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" -) - -func init() { - Symbols["reflect/reflect"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Append": reflect.ValueOf(reflect.Append), - "AppendSlice": reflect.ValueOf(reflect.AppendSlice), - "Array": reflect.ValueOf(reflect.Array), - "ArrayOf": reflect.ValueOf(reflect.ArrayOf), - "Bool": reflect.ValueOf(reflect.Bool), - "BothDir": reflect.ValueOf(reflect.BothDir), - "Chan": reflect.ValueOf(reflect.Chan), - "ChanOf": reflect.ValueOf(reflect.ChanOf), - "Complex128": reflect.ValueOf(reflect.Complex128), - "Complex64": reflect.ValueOf(reflect.Complex64), - "Copy": reflect.ValueOf(reflect.Copy), - "DeepEqual": reflect.ValueOf(reflect.DeepEqual), - "Float32": reflect.ValueOf(reflect.Float32), - "Float64": reflect.ValueOf(reflect.Float64), - "Func": reflect.ValueOf(reflect.Func), - "FuncOf": reflect.ValueOf(reflect.FuncOf), - "Indirect": reflect.ValueOf(reflect.Indirect), - "Int": reflect.ValueOf(reflect.Int), - "Int16": reflect.ValueOf(reflect.Int16), - "Int32": reflect.ValueOf(reflect.Int32), - "Int64": reflect.ValueOf(reflect.Int64), - "Int8": reflect.ValueOf(reflect.Int8), - "Interface": reflect.ValueOf(reflect.Interface), - "Invalid": reflect.ValueOf(reflect.Invalid), - "MakeChan": reflect.ValueOf(reflect.MakeChan), - "MakeFunc": reflect.ValueOf(reflect.MakeFunc), - "MakeMap": reflect.ValueOf(reflect.MakeMap), - "MakeMapWithSize": reflect.ValueOf(reflect.MakeMapWithSize), - "MakeSlice": reflect.ValueOf(reflect.MakeSlice), - "Map": reflect.ValueOf(reflect.Map), - "MapOf": reflect.ValueOf(reflect.MapOf), - "New": reflect.ValueOf(reflect.New), - "NewAt": reflect.ValueOf(reflect.NewAt), - "Ptr": reflect.ValueOf(reflect.Ptr), - "PtrTo": reflect.ValueOf(reflect.PtrTo), - "RecvDir": reflect.ValueOf(reflect.RecvDir), - "Select": reflect.ValueOf(reflect.Select), - "SelectDefault": reflect.ValueOf(reflect.SelectDefault), - "SelectRecv": reflect.ValueOf(reflect.SelectRecv), - "SelectSend": reflect.ValueOf(reflect.SelectSend), - "SendDir": reflect.ValueOf(reflect.SendDir), - "Slice": reflect.ValueOf(reflect.Slice), - "SliceOf": reflect.ValueOf(reflect.SliceOf), - "String": reflect.ValueOf(reflect.String), - "Struct": reflect.ValueOf(reflect.Struct), - "StructOf": reflect.ValueOf(reflect.StructOf), - "Swapper": reflect.ValueOf(reflect.Swapper), - "TypeOf": reflect.ValueOf(reflect.TypeOf), - "Uint": reflect.ValueOf(reflect.Uint), - "Uint16": reflect.ValueOf(reflect.Uint16), - "Uint32": reflect.ValueOf(reflect.Uint32), - "Uint64": reflect.ValueOf(reflect.Uint64), - "Uint8": reflect.ValueOf(reflect.Uint8), - "Uintptr": reflect.ValueOf(reflect.Uintptr), - "UnsafePointer": reflect.ValueOf(reflect.UnsafePointer), - "ValueOf": reflect.ValueOf(reflect.ValueOf), - "Zero": reflect.ValueOf(reflect.Zero), - - // type definitions - "ChanDir": reflect.ValueOf((*reflect.ChanDir)(nil)), - "Kind": reflect.ValueOf((*reflect.Kind)(nil)), - "MapIter": reflect.ValueOf((*reflect.MapIter)(nil)), - "Method": reflect.ValueOf((*reflect.Method)(nil)), - "SelectCase": reflect.ValueOf((*reflect.SelectCase)(nil)), - "SelectDir": reflect.ValueOf((*reflect.SelectDir)(nil)), - "SliceHeader": reflect.ValueOf((*reflect.SliceHeader)(nil)), - "StringHeader": reflect.ValueOf((*reflect.StringHeader)(nil)), - "StructField": reflect.ValueOf((*reflect.StructField)(nil)), - "StructTag": reflect.ValueOf((*reflect.StructTag)(nil)), - "Type": reflect.ValueOf((*reflect.Type)(nil)), - "Value": reflect.ValueOf((*reflect.Value)(nil)), - "ValueError": reflect.ValueOf((*reflect.ValueError)(nil)), - - // interface wrapper definitions - "_Type": reflect.ValueOf((*_reflect_Type)(nil)), - } -} - -// _reflect_Type is an interface wrapper for Type type -type _reflect_Type struct { - IValue interface{} - WAlign func() int - WAssignableTo func(u reflect.Type) bool - WBits func() int - WChanDir func() reflect.ChanDir - WComparable func() bool - WConvertibleTo func(u reflect.Type) bool - WElem func() reflect.Type - WField func(i int) reflect.StructField - WFieldAlign func() int - WFieldByIndex func(index []int) reflect.StructField - WFieldByName func(name string) (reflect.StructField, bool) - WFieldByNameFunc func(match func(string) bool) (reflect.StructField, bool) - WImplements func(u reflect.Type) bool - WIn func(i int) reflect.Type - WIsVariadic func() bool - WKey func() reflect.Type - WKind func() reflect.Kind - WLen func() int - WMethod func(a0 int) reflect.Method - WMethodByName func(a0 string) (reflect.Method, bool) - WName func() string - WNumField func() int - WNumIn func() int - WNumMethod func() int - WNumOut func() int - WOut func(i int) reflect.Type - WPkgPath func() string - WSize func() uintptr - WString func() string -} - -func (W _reflect_Type) Align() int { - return W.WAlign() -} -func (W _reflect_Type) AssignableTo(u reflect.Type) bool { - return W.WAssignableTo(u) -} -func (W _reflect_Type) Bits() int { - return W.WBits() -} -func (W _reflect_Type) ChanDir() reflect.ChanDir { - return W.WChanDir() -} -func (W _reflect_Type) Comparable() bool { - return W.WComparable() -} -func (W _reflect_Type) ConvertibleTo(u reflect.Type) bool { - return W.WConvertibleTo(u) -} -func (W _reflect_Type) Elem() reflect.Type { - return W.WElem() -} -func (W _reflect_Type) Field(i int) reflect.StructField { - return W.WField(i) -} -func (W _reflect_Type) FieldAlign() int { - return W.WFieldAlign() -} -func (W _reflect_Type) FieldByIndex(index []int) reflect.StructField { - return W.WFieldByIndex(index) -} -func (W _reflect_Type) FieldByName(name string) (reflect.StructField, bool) { - return W.WFieldByName(name) -} -func (W _reflect_Type) FieldByNameFunc(match func(string) bool) (reflect.StructField, bool) { - return W.WFieldByNameFunc(match) -} -func (W _reflect_Type) Implements(u reflect.Type) bool { - return W.WImplements(u) -} -func (W _reflect_Type) In(i int) reflect.Type { - return W.WIn(i) -} -func (W _reflect_Type) IsVariadic() bool { - return W.WIsVariadic() -} -func (W _reflect_Type) Key() reflect.Type { - return W.WKey() -} -func (W _reflect_Type) Kind() reflect.Kind { - return W.WKind() -} -func (W _reflect_Type) Len() int { - return W.WLen() -} -func (W _reflect_Type) Method(a0 int) reflect.Method { - return W.WMethod(a0) -} -func (W _reflect_Type) MethodByName(a0 string) (reflect.Method, bool) { - return W.WMethodByName(a0) -} -func (W _reflect_Type) Name() string { - return W.WName() -} -func (W _reflect_Type) NumField() int { - return W.WNumField() -} -func (W _reflect_Type) NumIn() int { - return W.WNumIn() -} -func (W _reflect_Type) NumMethod() int { - return W.WNumMethod() -} -func (W _reflect_Type) NumOut() int { - return W.WNumOut() -} -func (W _reflect_Type) Out(i int) reflect.Type { - return W.WOut(i) -} -func (W _reflect_Type) PkgPath() string { - return W.WPkgPath() -} -func (W _reflect_Type) Size() uintptr { - return W.WSize() -} -func (W _reflect_Type) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_16_regexp.go b/stdlib/go1_16_regexp.go deleted file mode 100644 index 29730fbe2..000000000 --- a/stdlib/go1_16_regexp.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract regexp'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "regexp" -) - -func init() { - Symbols["regexp/regexp"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compile": reflect.ValueOf(regexp.Compile), - "CompilePOSIX": reflect.ValueOf(regexp.CompilePOSIX), - "Match": reflect.ValueOf(regexp.Match), - "MatchReader": reflect.ValueOf(regexp.MatchReader), - "MatchString": reflect.ValueOf(regexp.MatchString), - "MustCompile": reflect.ValueOf(regexp.MustCompile), - "MustCompilePOSIX": reflect.ValueOf(regexp.MustCompilePOSIX), - "QuoteMeta": reflect.ValueOf(regexp.QuoteMeta), - - // type definitions - "Regexp": reflect.ValueOf((*regexp.Regexp)(nil)), - } -} diff --git a/stdlib/go1_16_regexp_syntax.go b/stdlib/go1_16_regexp_syntax.go deleted file mode 100644 index 8bed4f00e..000000000 --- a/stdlib/go1_16_regexp_syntax.go +++ /dev/null @@ -1,94 +0,0 @@ -// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "regexp/syntax" -) - -func init() { - Symbols["regexp/syntax/syntax"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ClassNL": reflect.ValueOf(syntax.ClassNL), - "Compile": reflect.ValueOf(syntax.Compile), - "DotNL": reflect.ValueOf(syntax.DotNL), - "EmptyBeginLine": reflect.ValueOf(syntax.EmptyBeginLine), - "EmptyBeginText": reflect.ValueOf(syntax.EmptyBeginText), - "EmptyEndLine": reflect.ValueOf(syntax.EmptyEndLine), - "EmptyEndText": reflect.ValueOf(syntax.EmptyEndText), - "EmptyNoWordBoundary": reflect.ValueOf(syntax.EmptyNoWordBoundary), - "EmptyOpContext": reflect.ValueOf(syntax.EmptyOpContext), - "EmptyWordBoundary": reflect.ValueOf(syntax.EmptyWordBoundary), - "ErrInternalError": reflect.ValueOf(syntax.ErrInternalError), - "ErrInvalidCharClass": reflect.ValueOf(syntax.ErrInvalidCharClass), - "ErrInvalidCharRange": reflect.ValueOf(syntax.ErrInvalidCharRange), - "ErrInvalidEscape": reflect.ValueOf(syntax.ErrInvalidEscape), - "ErrInvalidNamedCapture": reflect.ValueOf(syntax.ErrInvalidNamedCapture), - "ErrInvalidPerlOp": reflect.ValueOf(syntax.ErrInvalidPerlOp), - "ErrInvalidRepeatOp": reflect.ValueOf(syntax.ErrInvalidRepeatOp), - "ErrInvalidRepeatSize": reflect.ValueOf(syntax.ErrInvalidRepeatSize), - "ErrInvalidUTF8": reflect.ValueOf(syntax.ErrInvalidUTF8), - "ErrMissingBracket": reflect.ValueOf(syntax.ErrMissingBracket), - "ErrMissingParen": reflect.ValueOf(syntax.ErrMissingParen), - "ErrMissingRepeatArgument": reflect.ValueOf(syntax.ErrMissingRepeatArgument), - "ErrTrailingBackslash": reflect.ValueOf(syntax.ErrTrailingBackslash), - "ErrUnexpectedParen": reflect.ValueOf(syntax.ErrUnexpectedParen), - "FoldCase": reflect.ValueOf(syntax.FoldCase), - "InstAlt": reflect.ValueOf(syntax.InstAlt), - "InstAltMatch": reflect.ValueOf(syntax.InstAltMatch), - "InstCapture": reflect.ValueOf(syntax.InstCapture), - "InstEmptyWidth": reflect.ValueOf(syntax.InstEmptyWidth), - "InstFail": reflect.ValueOf(syntax.InstFail), - "InstMatch": reflect.ValueOf(syntax.InstMatch), - "InstNop": reflect.ValueOf(syntax.InstNop), - "InstRune": reflect.ValueOf(syntax.InstRune), - "InstRune1": reflect.ValueOf(syntax.InstRune1), - "InstRuneAny": reflect.ValueOf(syntax.InstRuneAny), - "InstRuneAnyNotNL": reflect.ValueOf(syntax.InstRuneAnyNotNL), - "IsWordChar": reflect.ValueOf(syntax.IsWordChar), - "Literal": reflect.ValueOf(syntax.Literal), - "MatchNL": reflect.ValueOf(syntax.MatchNL), - "NonGreedy": reflect.ValueOf(syntax.NonGreedy), - "OneLine": reflect.ValueOf(syntax.OneLine), - "OpAlternate": reflect.ValueOf(syntax.OpAlternate), - "OpAnyChar": reflect.ValueOf(syntax.OpAnyChar), - "OpAnyCharNotNL": reflect.ValueOf(syntax.OpAnyCharNotNL), - "OpBeginLine": reflect.ValueOf(syntax.OpBeginLine), - "OpBeginText": reflect.ValueOf(syntax.OpBeginText), - "OpCapture": reflect.ValueOf(syntax.OpCapture), - "OpCharClass": reflect.ValueOf(syntax.OpCharClass), - "OpConcat": reflect.ValueOf(syntax.OpConcat), - "OpEmptyMatch": reflect.ValueOf(syntax.OpEmptyMatch), - "OpEndLine": reflect.ValueOf(syntax.OpEndLine), - "OpEndText": reflect.ValueOf(syntax.OpEndText), - "OpLiteral": reflect.ValueOf(syntax.OpLiteral), - "OpNoMatch": reflect.ValueOf(syntax.OpNoMatch), - "OpNoWordBoundary": reflect.ValueOf(syntax.OpNoWordBoundary), - "OpPlus": reflect.ValueOf(syntax.OpPlus), - "OpQuest": reflect.ValueOf(syntax.OpQuest), - "OpRepeat": reflect.ValueOf(syntax.OpRepeat), - "OpStar": reflect.ValueOf(syntax.OpStar), - "OpWordBoundary": reflect.ValueOf(syntax.OpWordBoundary), - "POSIX": reflect.ValueOf(syntax.POSIX), - "Parse": reflect.ValueOf(syntax.Parse), - "Perl": reflect.ValueOf(syntax.Perl), - "PerlX": reflect.ValueOf(syntax.PerlX), - "Simple": reflect.ValueOf(syntax.Simple), - "UnicodeGroups": reflect.ValueOf(syntax.UnicodeGroups), - "WasDollar": reflect.ValueOf(syntax.WasDollar), - - // type definitions - "EmptyOp": reflect.ValueOf((*syntax.EmptyOp)(nil)), - "Error": reflect.ValueOf((*syntax.Error)(nil)), - "ErrorCode": reflect.ValueOf((*syntax.ErrorCode)(nil)), - "Flags": reflect.ValueOf((*syntax.Flags)(nil)), - "Inst": reflect.ValueOf((*syntax.Inst)(nil)), - "InstOp": reflect.ValueOf((*syntax.InstOp)(nil)), - "Op": reflect.ValueOf((*syntax.Op)(nil)), - "Prog": reflect.ValueOf((*syntax.Prog)(nil)), - "Regexp": reflect.ValueOf((*syntax.Regexp)(nil)), - } -} diff --git a/stdlib/go1_16_runtime.go b/stdlib/go1_16_runtime.go deleted file mode 100644 index d37f19564..000000000 --- a/stdlib/go1_16_runtime.go +++ /dev/null @@ -1,83 +0,0 @@ -// Code generated by 'yaegi extract runtime'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "runtime" -) - -func init() { - Symbols["runtime/runtime"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockProfile": reflect.ValueOf(runtime.BlockProfile), - "Breakpoint": reflect.ValueOf(runtime.Breakpoint), - "CPUProfile": reflect.ValueOf(runtime.CPUProfile), - "Caller": reflect.ValueOf(runtime.Caller), - "Callers": reflect.ValueOf(runtime.Callers), - "CallersFrames": reflect.ValueOf(runtime.CallersFrames), - "Compiler": reflect.ValueOf(constant.MakeFromLiteral("\"gc\"", token.STRING, 0)), - "FuncForPC": reflect.ValueOf(runtime.FuncForPC), - "GC": reflect.ValueOf(runtime.GC), - "GOARCH": reflect.ValueOf(runtime.GOARCH), - "GOMAXPROCS": reflect.ValueOf(runtime.GOMAXPROCS), - "GOOS": reflect.ValueOf(runtime.GOOS), - "GOROOT": reflect.ValueOf(runtime.GOROOT), - "Goexit": reflect.ValueOf(runtime.Goexit), - "GoroutineProfile": reflect.ValueOf(runtime.GoroutineProfile), - "Gosched": reflect.ValueOf(runtime.Gosched), - "KeepAlive": reflect.ValueOf(runtime.KeepAlive), - "LockOSThread": reflect.ValueOf(runtime.LockOSThread), - "MemProfile": reflect.ValueOf(runtime.MemProfile), - "MemProfileRate": reflect.ValueOf(&runtime.MemProfileRate).Elem(), - "MutexProfile": reflect.ValueOf(runtime.MutexProfile), - "NumCPU": reflect.ValueOf(runtime.NumCPU), - "NumCgoCall": reflect.ValueOf(runtime.NumCgoCall), - "NumGoroutine": reflect.ValueOf(runtime.NumGoroutine), - "ReadMemStats": reflect.ValueOf(runtime.ReadMemStats), - "ReadTrace": reflect.ValueOf(runtime.ReadTrace), - "SetBlockProfileRate": reflect.ValueOf(runtime.SetBlockProfileRate), - "SetCPUProfileRate": reflect.ValueOf(runtime.SetCPUProfileRate), - "SetCgoTraceback": reflect.ValueOf(runtime.SetCgoTraceback), - "SetFinalizer": reflect.ValueOf(runtime.SetFinalizer), - "SetMutexProfileFraction": reflect.ValueOf(runtime.SetMutexProfileFraction), - "Stack": reflect.ValueOf(runtime.Stack), - "StartTrace": reflect.ValueOf(runtime.StartTrace), - "StopTrace": reflect.ValueOf(runtime.StopTrace), - "ThreadCreateProfile": reflect.ValueOf(runtime.ThreadCreateProfile), - "UnlockOSThread": reflect.ValueOf(runtime.UnlockOSThread), - "Version": reflect.ValueOf(runtime.Version), - - // type definitions - "BlockProfileRecord": reflect.ValueOf((*runtime.BlockProfileRecord)(nil)), - "Error": reflect.ValueOf((*runtime.Error)(nil)), - "Frame": reflect.ValueOf((*runtime.Frame)(nil)), - "Frames": reflect.ValueOf((*runtime.Frames)(nil)), - "Func": reflect.ValueOf((*runtime.Func)(nil)), - "MemProfileRecord": reflect.ValueOf((*runtime.MemProfileRecord)(nil)), - "MemStats": reflect.ValueOf((*runtime.MemStats)(nil)), - "StackRecord": reflect.ValueOf((*runtime.StackRecord)(nil)), - "TypeAssertionError": reflect.ValueOf((*runtime.TypeAssertionError)(nil)), - - // interface wrapper definitions - "_Error": reflect.ValueOf((*_runtime_Error)(nil)), - } -} - -// _runtime_Error is an interface wrapper for Error type -type _runtime_Error struct { - IValue interface{} - WError func() string - WRuntimeError func() -} - -func (W _runtime_Error) Error() string { - return W.WError() -} -func (W _runtime_Error) RuntimeError() { - W.WRuntimeError() -} diff --git a/stdlib/go1_16_runtime_debug.go b/stdlib/go1_16_runtime_debug.go deleted file mode 100644 index f0ad09ac7..000000000 --- a/stdlib/go1_16_runtime_debug.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "runtime/debug" -) - -func init() { - Symbols["runtime/debug/debug"] = map[string]reflect.Value{ - // function, constant and variable definitions - "FreeOSMemory": reflect.ValueOf(debug.FreeOSMemory), - "PrintStack": reflect.ValueOf(debug.PrintStack), - "ReadBuildInfo": reflect.ValueOf(debug.ReadBuildInfo), - "ReadGCStats": reflect.ValueOf(debug.ReadGCStats), - "SetGCPercent": reflect.ValueOf(debug.SetGCPercent), - "SetMaxStack": reflect.ValueOf(debug.SetMaxStack), - "SetMaxThreads": reflect.ValueOf(debug.SetMaxThreads), - "SetPanicOnFault": reflect.ValueOf(debug.SetPanicOnFault), - "SetTraceback": reflect.ValueOf(debug.SetTraceback), - "Stack": reflect.ValueOf(debug.Stack), - "WriteHeapDump": reflect.ValueOf(debug.WriteHeapDump), - - // type definitions - "BuildInfo": reflect.ValueOf((*debug.BuildInfo)(nil)), - "GCStats": reflect.ValueOf((*debug.GCStats)(nil)), - "Module": reflect.ValueOf((*debug.Module)(nil)), - } -} diff --git a/stdlib/go1_16_runtime_metrics.go b/stdlib/go1_16_runtime_metrics.go deleted file mode 100644 index 4d1d7ac56..000000000 --- a/stdlib/go1_16_runtime_metrics.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "runtime/metrics" -) - -func init() { - Symbols["runtime/metrics/metrics"] = map[string]reflect.Value{ - // function, constant and variable definitions - "All": reflect.ValueOf(metrics.All), - "KindBad": reflect.ValueOf(metrics.KindBad), - "KindFloat64": reflect.ValueOf(metrics.KindFloat64), - "KindFloat64Histogram": reflect.ValueOf(metrics.KindFloat64Histogram), - "KindUint64": reflect.ValueOf(metrics.KindUint64), - "Read": reflect.ValueOf(metrics.Read), - - // type definitions - "Description": reflect.ValueOf((*metrics.Description)(nil)), - "Float64Histogram": reflect.ValueOf((*metrics.Float64Histogram)(nil)), - "Sample": reflect.ValueOf((*metrics.Sample)(nil)), - "Value": reflect.ValueOf((*metrics.Value)(nil)), - "ValueKind": reflect.ValueOf((*metrics.ValueKind)(nil)), - } -} diff --git a/stdlib/go1_16_runtime_pprof.go b/stdlib/go1_16_runtime_pprof.go deleted file mode 100644 index c01db1bea..000000000 --- a/stdlib/go1_16_runtime_pprof.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "runtime/pprof" -) - -func init() { - Symbols["runtime/pprof/pprof"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Do": reflect.ValueOf(pprof.Do), - "ForLabels": reflect.ValueOf(pprof.ForLabels), - "Label": reflect.ValueOf(pprof.Label), - "Labels": reflect.ValueOf(pprof.Labels), - "Lookup": reflect.ValueOf(pprof.Lookup), - "NewProfile": reflect.ValueOf(pprof.NewProfile), - "Profiles": reflect.ValueOf(pprof.Profiles), - "SetGoroutineLabels": reflect.ValueOf(pprof.SetGoroutineLabels), - "StartCPUProfile": reflect.ValueOf(pprof.StartCPUProfile), - "StopCPUProfile": reflect.ValueOf(pprof.StopCPUProfile), - "WithLabels": reflect.ValueOf(pprof.WithLabels), - "WriteHeapProfile": reflect.ValueOf(pprof.WriteHeapProfile), - - // type definitions - "LabelSet": reflect.ValueOf((*pprof.LabelSet)(nil)), - "Profile": reflect.ValueOf((*pprof.Profile)(nil)), - } -} diff --git a/stdlib/go1_16_runtime_trace.go b/stdlib/go1_16_runtime_trace.go deleted file mode 100644 index 1613fe8db..000000000 --- a/stdlib/go1_16_runtime_trace.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "runtime/trace" -) - -func init() { - Symbols["runtime/trace/trace"] = map[string]reflect.Value{ - // function, constant and variable definitions - "IsEnabled": reflect.ValueOf(trace.IsEnabled), - "Log": reflect.ValueOf(trace.Log), - "Logf": reflect.ValueOf(trace.Logf), - "NewTask": reflect.ValueOf(trace.NewTask), - "Start": reflect.ValueOf(trace.Start), - "StartRegion": reflect.ValueOf(trace.StartRegion), - "Stop": reflect.ValueOf(trace.Stop), - "WithRegion": reflect.ValueOf(trace.WithRegion), - - // type definitions - "Region": reflect.ValueOf((*trace.Region)(nil)), - "Task": reflect.ValueOf((*trace.Task)(nil)), - } -} diff --git a/stdlib/go1_16_sort.go b/stdlib/go1_16_sort.go deleted file mode 100644 index 8a4f9f629..000000000 --- a/stdlib/go1_16_sort.go +++ /dev/null @@ -1,60 +0,0 @@ -// Code generated by 'yaegi extract sort'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "sort" -) - -func init() { - Symbols["sort/sort"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Float64s": reflect.ValueOf(sort.Float64s), - "Float64sAreSorted": reflect.ValueOf(sort.Float64sAreSorted), - "Ints": reflect.ValueOf(sort.Ints), - "IntsAreSorted": reflect.ValueOf(sort.IntsAreSorted), - "IsSorted": reflect.ValueOf(sort.IsSorted), - "Reverse": reflect.ValueOf(sort.Reverse), - "Search": reflect.ValueOf(sort.Search), - "SearchFloat64s": reflect.ValueOf(sort.SearchFloat64s), - "SearchInts": reflect.ValueOf(sort.SearchInts), - "SearchStrings": reflect.ValueOf(sort.SearchStrings), - "Slice": reflect.ValueOf(sort.Slice), - "SliceIsSorted": reflect.ValueOf(sort.SliceIsSorted), - "SliceStable": reflect.ValueOf(sort.SliceStable), - "Sort": reflect.ValueOf(sort.Sort), - "Stable": reflect.ValueOf(sort.Stable), - "Strings": reflect.ValueOf(sort.Strings), - "StringsAreSorted": reflect.ValueOf(sort.StringsAreSorted), - - // type definitions - "Float64Slice": reflect.ValueOf((*sort.Float64Slice)(nil)), - "IntSlice": reflect.ValueOf((*sort.IntSlice)(nil)), - "Interface": reflect.ValueOf((*sort.Interface)(nil)), - "StringSlice": reflect.ValueOf((*sort.StringSlice)(nil)), - - // interface wrapper definitions - "_Interface": reflect.ValueOf((*_sort_Interface)(nil)), - } -} - -// _sort_Interface is an interface wrapper for Interface type -type _sort_Interface struct { - IValue interface{} - WLen func() int - WLess func(i int, j int) bool - WSwap func(i int, j int) -} - -func (W _sort_Interface) Len() int { - return W.WLen() -} -func (W _sort_Interface) Less(i int, j int) bool { - return W.WLess(i, j) -} -func (W _sort_Interface) Swap(i int, j int) { - W.WSwap(i, j) -} diff --git a/stdlib/go1_16_strconv.go b/stdlib/go1_16_strconv.go deleted file mode 100644 index 15aa43d1b..000000000 --- a/stdlib/go1_16_strconv.go +++ /dev/null @@ -1,57 +0,0 @@ -// Code generated by 'yaegi extract strconv'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "strconv" -) - -func init() { - Symbols["strconv/strconv"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AppendBool": reflect.ValueOf(strconv.AppendBool), - "AppendFloat": reflect.ValueOf(strconv.AppendFloat), - "AppendInt": reflect.ValueOf(strconv.AppendInt), - "AppendQuote": reflect.ValueOf(strconv.AppendQuote), - "AppendQuoteRune": reflect.ValueOf(strconv.AppendQuoteRune), - "AppendQuoteRuneToASCII": reflect.ValueOf(strconv.AppendQuoteRuneToASCII), - "AppendQuoteRuneToGraphic": reflect.ValueOf(strconv.AppendQuoteRuneToGraphic), - "AppendQuoteToASCII": reflect.ValueOf(strconv.AppendQuoteToASCII), - "AppendQuoteToGraphic": reflect.ValueOf(strconv.AppendQuoteToGraphic), - "AppendUint": reflect.ValueOf(strconv.AppendUint), - "Atoi": reflect.ValueOf(strconv.Atoi), - "CanBackquote": reflect.ValueOf(strconv.CanBackquote), - "ErrRange": reflect.ValueOf(&strconv.ErrRange).Elem(), - "ErrSyntax": reflect.ValueOf(&strconv.ErrSyntax).Elem(), - "FormatBool": reflect.ValueOf(strconv.FormatBool), - "FormatComplex": reflect.ValueOf(strconv.FormatComplex), - "FormatFloat": reflect.ValueOf(strconv.FormatFloat), - "FormatInt": reflect.ValueOf(strconv.FormatInt), - "FormatUint": reflect.ValueOf(strconv.FormatUint), - "IntSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IsGraphic": reflect.ValueOf(strconv.IsGraphic), - "IsPrint": reflect.ValueOf(strconv.IsPrint), - "Itoa": reflect.ValueOf(strconv.Itoa), - "ParseBool": reflect.ValueOf(strconv.ParseBool), - "ParseComplex": reflect.ValueOf(strconv.ParseComplex), - "ParseFloat": reflect.ValueOf(strconv.ParseFloat), - "ParseInt": reflect.ValueOf(strconv.ParseInt), - "ParseUint": reflect.ValueOf(strconv.ParseUint), - "Quote": reflect.ValueOf(strconv.Quote), - "QuoteRune": reflect.ValueOf(strconv.QuoteRune), - "QuoteRuneToASCII": reflect.ValueOf(strconv.QuoteRuneToASCII), - "QuoteRuneToGraphic": reflect.ValueOf(strconv.QuoteRuneToGraphic), - "QuoteToASCII": reflect.ValueOf(strconv.QuoteToASCII), - "QuoteToGraphic": reflect.ValueOf(strconv.QuoteToGraphic), - "Unquote": reflect.ValueOf(strconv.Unquote), - "UnquoteChar": reflect.ValueOf(strconv.UnquoteChar), - - // type definitions - "NumError": reflect.ValueOf((*strconv.NumError)(nil)), - } -} diff --git a/stdlib/go1_16_strings.go b/stdlib/go1_16_strings.go deleted file mode 100644 index 94aa21043..000000000 --- a/stdlib/go1_16_strings.go +++ /dev/null @@ -1,68 +0,0 @@ -// Code generated by 'yaegi extract strings'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "strings" -) - -func init() { - Symbols["strings/strings"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compare": reflect.ValueOf(strings.Compare), - "Contains": reflect.ValueOf(strings.Contains), - "ContainsAny": reflect.ValueOf(strings.ContainsAny), - "ContainsRune": reflect.ValueOf(strings.ContainsRune), - "Count": reflect.ValueOf(strings.Count), - "EqualFold": reflect.ValueOf(strings.EqualFold), - "Fields": reflect.ValueOf(strings.Fields), - "FieldsFunc": reflect.ValueOf(strings.FieldsFunc), - "HasPrefix": reflect.ValueOf(strings.HasPrefix), - "HasSuffix": reflect.ValueOf(strings.HasSuffix), - "Index": reflect.ValueOf(strings.Index), - "IndexAny": reflect.ValueOf(strings.IndexAny), - "IndexByte": reflect.ValueOf(strings.IndexByte), - "IndexFunc": reflect.ValueOf(strings.IndexFunc), - "IndexRune": reflect.ValueOf(strings.IndexRune), - "Join": reflect.ValueOf(strings.Join), - "LastIndex": reflect.ValueOf(strings.LastIndex), - "LastIndexAny": reflect.ValueOf(strings.LastIndexAny), - "LastIndexByte": reflect.ValueOf(strings.LastIndexByte), - "LastIndexFunc": reflect.ValueOf(strings.LastIndexFunc), - "Map": reflect.ValueOf(strings.Map), - "NewReader": reflect.ValueOf(strings.NewReader), - "NewReplacer": reflect.ValueOf(strings.NewReplacer), - "Repeat": reflect.ValueOf(strings.Repeat), - "Replace": reflect.ValueOf(strings.Replace), - "ReplaceAll": reflect.ValueOf(strings.ReplaceAll), - "Split": reflect.ValueOf(strings.Split), - "SplitAfter": reflect.ValueOf(strings.SplitAfter), - "SplitAfterN": reflect.ValueOf(strings.SplitAfterN), - "SplitN": reflect.ValueOf(strings.SplitN), - "Title": reflect.ValueOf(strings.Title), - "ToLower": reflect.ValueOf(strings.ToLower), - "ToLowerSpecial": reflect.ValueOf(strings.ToLowerSpecial), - "ToTitle": reflect.ValueOf(strings.ToTitle), - "ToTitleSpecial": reflect.ValueOf(strings.ToTitleSpecial), - "ToUpper": reflect.ValueOf(strings.ToUpper), - "ToUpperSpecial": reflect.ValueOf(strings.ToUpperSpecial), - "ToValidUTF8": reflect.ValueOf(strings.ToValidUTF8), - "Trim": reflect.ValueOf(strings.Trim), - "TrimFunc": reflect.ValueOf(strings.TrimFunc), - "TrimLeft": reflect.ValueOf(strings.TrimLeft), - "TrimLeftFunc": reflect.ValueOf(strings.TrimLeftFunc), - "TrimPrefix": reflect.ValueOf(strings.TrimPrefix), - "TrimRight": reflect.ValueOf(strings.TrimRight), - "TrimRightFunc": reflect.ValueOf(strings.TrimRightFunc), - "TrimSpace": reflect.ValueOf(strings.TrimSpace), - "TrimSuffix": reflect.ValueOf(strings.TrimSuffix), - - // type definitions - "Builder": reflect.ValueOf((*strings.Builder)(nil)), - "Reader": reflect.ValueOf((*strings.Reader)(nil)), - "Replacer": reflect.ValueOf((*strings.Replacer)(nil)), - } -} diff --git a/stdlib/go1_16_sync.go b/stdlib/go1_16_sync.go deleted file mode 100644 index 3861c964f..000000000 --- a/stdlib/go1_16_sync.go +++ /dev/null @@ -1,44 +0,0 @@ -// Code generated by 'yaegi extract sync'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "sync" -) - -func init() { - Symbols["sync/sync"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewCond": reflect.ValueOf(sync.NewCond), - - // type definitions - "Cond": reflect.ValueOf((*sync.Cond)(nil)), - "Locker": reflect.ValueOf((*sync.Locker)(nil)), - "Map": reflect.ValueOf((*sync.Map)(nil)), - "Mutex": reflect.ValueOf((*sync.Mutex)(nil)), - "Once": reflect.ValueOf((*sync.Once)(nil)), - "Pool": reflect.ValueOf((*sync.Pool)(nil)), - "RWMutex": reflect.ValueOf((*sync.RWMutex)(nil)), - "WaitGroup": reflect.ValueOf((*sync.WaitGroup)(nil)), - - // interface wrapper definitions - "_Locker": reflect.ValueOf((*_sync_Locker)(nil)), - } -} - -// _sync_Locker is an interface wrapper for Locker type -type _sync_Locker struct { - IValue interface{} - WLock func() - WUnlock func() -} - -func (W _sync_Locker) Lock() { - W.WLock() -} -func (W _sync_Locker) Unlock() { - W.WUnlock() -} diff --git a/stdlib/go1_16_sync_atomic.go b/stdlib/go1_16_sync_atomic.go deleted file mode 100644 index d057a53d9..000000000 --- a/stdlib/go1_16_sync_atomic.go +++ /dev/null @@ -1,48 +0,0 @@ -// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "sync/atomic" -) - -func init() { - Symbols["sync/atomic/atomic"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AddInt32": reflect.ValueOf(atomic.AddInt32), - "AddInt64": reflect.ValueOf(atomic.AddInt64), - "AddUint32": reflect.ValueOf(atomic.AddUint32), - "AddUint64": reflect.ValueOf(atomic.AddUint64), - "AddUintptr": reflect.ValueOf(atomic.AddUintptr), - "CompareAndSwapInt32": reflect.ValueOf(atomic.CompareAndSwapInt32), - "CompareAndSwapInt64": reflect.ValueOf(atomic.CompareAndSwapInt64), - "CompareAndSwapPointer": reflect.ValueOf(atomic.CompareAndSwapPointer), - "CompareAndSwapUint32": reflect.ValueOf(atomic.CompareAndSwapUint32), - "CompareAndSwapUint64": reflect.ValueOf(atomic.CompareAndSwapUint64), - "CompareAndSwapUintptr": reflect.ValueOf(atomic.CompareAndSwapUintptr), - "LoadInt32": reflect.ValueOf(atomic.LoadInt32), - "LoadInt64": reflect.ValueOf(atomic.LoadInt64), - "LoadPointer": reflect.ValueOf(atomic.LoadPointer), - "LoadUint32": reflect.ValueOf(atomic.LoadUint32), - "LoadUint64": reflect.ValueOf(atomic.LoadUint64), - "LoadUintptr": reflect.ValueOf(atomic.LoadUintptr), - "StoreInt32": reflect.ValueOf(atomic.StoreInt32), - "StoreInt64": reflect.ValueOf(atomic.StoreInt64), - "StorePointer": reflect.ValueOf(atomic.StorePointer), - "StoreUint32": reflect.ValueOf(atomic.StoreUint32), - "StoreUint64": reflect.ValueOf(atomic.StoreUint64), - "StoreUintptr": reflect.ValueOf(atomic.StoreUintptr), - "SwapInt32": reflect.ValueOf(atomic.SwapInt32), - "SwapInt64": reflect.ValueOf(atomic.SwapInt64), - "SwapPointer": reflect.ValueOf(atomic.SwapPointer), - "SwapUint32": reflect.ValueOf(atomic.SwapUint32), - "SwapUint64": reflect.ValueOf(atomic.SwapUint64), - "SwapUintptr": reflect.ValueOf(atomic.SwapUintptr), - - // type definitions - "Value": reflect.ValueOf((*atomic.Value)(nil)), - } -} diff --git a/stdlib/go1_16_testing.go b/stdlib/go1_16_testing.go deleted file mode 100644 index 0824633e9..000000000 --- a/stdlib/go1_16_testing.go +++ /dev/null @@ -1,119 +0,0 @@ -// Code generated by 'yaegi extract testing'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "testing" -) - -func init() { - Symbols["testing/testing"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllocsPerRun": reflect.ValueOf(testing.AllocsPerRun), - "Benchmark": reflect.ValueOf(testing.Benchmark), - "CoverMode": reflect.ValueOf(testing.CoverMode), - "Coverage": reflect.ValueOf(testing.Coverage), - "Init": reflect.ValueOf(testing.Init), - "Main": reflect.ValueOf(testing.Main), - "MainStart": reflect.ValueOf(testing.MainStart), - "RegisterCover": reflect.ValueOf(testing.RegisterCover), - "RunBenchmarks": reflect.ValueOf(testing.RunBenchmarks), - "RunExamples": reflect.ValueOf(testing.RunExamples), - "RunTests": reflect.ValueOf(testing.RunTests), - "Short": reflect.ValueOf(testing.Short), - "Verbose": reflect.ValueOf(testing.Verbose), - - // type definitions - "B": reflect.ValueOf((*testing.B)(nil)), - "BenchmarkResult": reflect.ValueOf((*testing.BenchmarkResult)(nil)), - "Cover": reflect.ValueOf((*testing.Cover)(nil)), - "CoverBlock": reflect.ValueOf((*testing.CoverBlock)(nil)), - "InternalBenchmark": reflect.ValueOf((*testing.InternalBenchmark)(nil)), - "InternalExample": reflect.ValueOf((*testing.InternalExample)(nil)), - "InternalTest": reflect.ValueOf((*testing.InternalTest)(nil)), - "M": reflect.ValueOf((*testing.M)(nil)), - "PB": reflect.ValueOf((*testing.PB)(nil)), - "T": reflect.ValueOf((*testing.T)(nil)), - "TB": reflect.ValueOf((*testing.TB)(nil)), - - // interface wrapper definitions - "_TB": reflect.ValueOf((*_testing_TB)(nil)), - } -} - -// _testing_TB is an interface wrapper for TB type -type _testing_TB struct { - IValue interface{} - WCleanup func(a0 func()) - WError func(args ...interface{}) - WErrorf func(format string, args ...interface{}) - WFail func() - WFailNow func() - WFailed func() bool - WFatal func(args ...interface{}) - WFatalf func(format string, args ...interface{}) - WHelper func() - WLog func(args ...interface{}) - WLogf func(format string, args ...interface{}) - WName func() string - WSkip func(args ...interface{}) - WSkipNow func() - WSkipf func(format string, args ...interface{}) - WSkipped func() bool - WTempDir func() string -} - -func (W _testing_TB) Cleanup(a0 func()) { - W.WCleanup(a0) -} -func (W _testing_TB) Error(args ...interface{}) { - W.WError(args...) -} -func (W _testing_TB) Errorf(format string, args ...interface{}) { - W.WErrorf(format, args...) -} -func (W _testing_TB) Fail() { - W.WFail() -} -func (W _testing_TB) FailNow() { - W.WFailNow() -} -func (W _testing_TB) Failed() bool { - return W.WFailed() -} -func (W _testing_TB) Fatal(args ...interface{}) { - W.WFatal(args...) -} -func (W _testing_TB) Fatalf(format string, args ...interface{}) { - W.WFatalf(format, args...) -} -func (W _testing_TB) Helper() { - W.WHelper() -} -func (W _testing_TB) Log(args ...interface{}) { - W.WLog(args...) -} -func (W _testing_TB) Logf(format string, args ...interface{}) { - W.WLogf(format, args...) -} -func (W _testing_TB) Name() string { - return W.WName() -} -func (W _testing_TB) Skip(args ...interface{}) { - W.WSkip(args...) -} -func (W _testing_TB) SkipNow() { - W.WSkipNow() -} -func (W _testing_TB) Skipf(format string, args ...interface{}) { - W.WSkipf(format, args...) -} -func (W _testing_TB) Skipped() bool { - return W.WSkipped() -} -func (W _testing_TB) TempDir() string { - return W.WTempDir() -} diff --git a/stdlib/go1_16_testing_fstest.go b/stdlib/go1_16_testing_fstest.go deleted file mode 100644 index ba150e203..000000000 --- a/stdlib/go1_16_testing_fstest.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "testing/fstest" -) - -func init() { - Symbols["testing/fstest/fstest"] = map[string]reflect.Value{ - // function, constant and variable definitions - "TestFS": reflect.ValueOf(fstest.TestFS), - - // type definitions - "MapFS": reflect.ValueOf((*fstest.MapFS)(nil)), - "MapFile": reflect.ValueOf((*fstest.MapFile)(nil)), - } -} diff --git a/stdlib/go1_16_testing_iotest.go b/stdlib/go1_16_testing_iotest.go deleted file mode 100644 index d123f8e33..000000000 --- a/stdlib/go1_16_testing_iotest.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "testing/iotest" -) - -func init() { - Symbols["testing/iotest/iotest"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DataErrReader": reflect.ValueOf(iotest.DataErrReader), - "ErrReader": reflect.ValueOf(iotest.ErrReader), - "ErrTimeout": reflect.ValueOf(&iotest.ErrTimeout).Elem(), - "HalfReader": reflect.ValueOf(iotest.HalfReader), - "NewReadLogger": reflect.ValueOf(iotest.NewReadLogger), - "NewWriteLogger": reflect.ValueOf(iotest.NewWriteLogger), - "OneByteReader": reflect.ValueOf(iotest.OneByteReader), - "TestReader": reflect.ValueOf(iotest.TestReader), - "TimeoutReader": reflect.ValueOf(iotest.TimeoutReader), - "TruncateWriter": reflect.ValueOf(iotest.TruncateWriter), - } -} diff --git a/stdlib/go1_16_testing_quick.go b/stdlib/go1_16_testing_quick.go deleted file mode 100644 index dd2010e2a..000000000 --- a/stdlib/go1_16_testing_quick.go +++ /dev/null @@ -1,40 +0,0 @@ -// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "math/rand" - "reflect" - "testing/quick" -) - -func init() { - Symbols["testing/quick/quick"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Check": reflect.ValueOf(quick.Check), - "CheckEqual": reflect.ValueOf(quick.CheckEqual), - "Value": reflect.ValueOf(quick.Value), - - // type definitions - "CheckEqualError": reflect.ValueOf((*quick.CheckEqualError)(nil)), - "CheckError": reflect.ValueOf((*quick.CheckError)(nil)), - "Config": reflect.ValueOf((*quick.Config)(nil)), - "Generator": reflect.ValueOf((*quick.Generator)(nil)), - "SetupError": reflect.ValueOf((*quick.SetupError)(nil)), - - // interface wrapper definitions - "_Generator": reflect.ValueOf((*_testing_quick_Generator)(nil)), - } -} - -// _testing_quick_Generator is an interface wrapper for Generator type -type _testing_quick_Generator struct { - IValue interface{} - WGenerate func(rand *rand.Rand, size int) reflect.Value -} - -func (W _testing_quick_Generator) Generate(rand *rand.Rand, size int) reflect.Value { - return W.WGenerate(rand, size) -} diff --git a/stdlib/go1_16_text_scanner.go b/stdlib/go1_16_text_scanner.go deleted file mode 100644 index 81993bcd0..000000000 --- a/stdlib/go1_16_text_scanner.go +++ /dev/null @@ -1,41 +0,0 @@ -// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "text/scanner" -) - -func init() { - Symbols["text/scanner/scanner"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Char": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "Comment": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EOF": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "Float": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "GoTokens": reflect.ValueOf(constant.MakeFromLiteral("1012", token.INT, 0)), - "GoWhitespace": reflect.ValueOf(constant.MakeFromLiteral("4294977024", token.INT, 0)), - "Ident": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Int": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "RawString": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "ScanChars": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ScanComments": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ScanFloats": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ScanIdents": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ScanInts": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ScanRawStrings": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ScanStrings": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SkipComments": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "String": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "TokenString": reflect.ValueOf(scanner.TokenString), - - // type definitions - "Position": reflect.ValueOf((*scanner.Position)(nil)), - "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), - } -} diff --git a/stdlib/go1_16_text_tabwriter.go b/stdlib/go1_16_text_tabwriter.go deleted file mode 100644 index 39b87dc8f..000000000 --- a/stdlib/go1_16_text_tabwriter.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "text/tabwriter" -) - -func init() { - Symbols["text/tabwriter/tabwriter"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AlignRight": reflect.ValueOf(tabwriter.AlignRight), - "Debug": reflect.ValueOf(tabwriter.Debug), - "DiscardEmptyColumns": reflect.ValueOf(tabwriter.DiscardEmptyColumns), - "Escape": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FilterHTML": reflect.ValueOf(tabwriter.FilterHTML), - "NewWriter": reflect.ValueOf(tabwriter.NewWriter), - "StripEscape": reflect.ValueOf(tabwriter.StripEscape), - "TabIndent": reflect.ValueOf(tabwriter.TabIndent), - - // type definitions - "Writer": reflect.ValueOf((*tabwriter.Writer)(nil)), - } -} diff --git a/stdlib/go1_16_text_template.go b/stdlib/go1_16_text_template.go deleted file mode 100644 index b345a2af6..000000000 --- a/stdlib/go1_16_text_template.go +++ /dev/null @@ -1,34 +0,0 @@ -// Code generated by 'yaegi extract text/template'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "text/template" -) - -func init() { - Symbols["text/template/template"] = map[string]reflect.Value{ - // function, constant and variable definitions - "HTMLEscape": reflect.ValueOf(template.HTMLEscape), - "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), - "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), - "IsTrue": reflect.ValueOf(template.IsTrue), - "JSEscape": reflect.ValueOf(template.JSEscape), - "JSEscapeString": reflect.ValueOf(template.JSEscapeString), - "JSEscaper": reflect.ValueOf(template.JSEscaper), - "Must": reflect.ValueOf(template.Must), - "New": reflect.ValueOf(template.New), - "ParseFS": reflect.ValueOf(template.ParseFS), - "ParseFiles": reflect.ValueOf(template.ParseFiles), - "ParseGlob": reflect.ValueOf(template.ParseGlob), - "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), - - // type definitions - "ExecError": reflect.ValueOf((*template.ExecError)(nil)), - "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), - "Template": reflect.ValueOf((*template.Template)(nil)), - } -} diff --git a/stdlib/go1_16_text_template_parse.go b/stdlib/go1_16_text_template_parse.go deleted file mode 100644 index 63012ef2b..000000000 --- a/stdlib/go1_16_text_template_parse.go +++ /dev/null @@ -1,95 +0,0 @@ -// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "text/template/parse" -) - -func init() { - Symbols["text/template/parse/parse"] = map[string]reflect.Value{ - // function, constant and variable definitions - "IsEmptyTree": reflect.ValueOf(parse.IsEmptyTree), - "New": reflect.ValueOf(parse.New), - "NewIdentifier": reflect.ValueOf(parse.NewIdentifier), - "NodeAction": reflect.ValueOf(parse.NodeAction), - "NodeBool": reflect.ValueOf(parse.NodeBool), - "NodeChain": reflect.ValueOf(parse.NodeChain), - "NodeCommand": reflect.ValueOf(parse.NodeCommand), - "NodeComment": reflect.ValueOf(parse.NodeComment), - "NodeDot": reflect.ValueOf(parse.NodeDot), - "NodeField": reflect.ValueOf(parse.NodeField), - "NodeIdentifier": reflect.ValueOf(parse.NodeIdentifier), - "NodeIf": reflect.ValueOf(parse.NodeIf), - "NodeList": reflect.ValueOf(parse.NodeList), - "NodeNil": reflect.ValueOf(parse.NodeNil), - "NodeNumber": reflect.ValueOf(parse.NodeNumber), - "NodePipe": reflect.ValueOf(parse.NodePipe), - "NodeRange": reflect.ValueOf(parse.NodeRange), - "NodeString": reflect.ValueOf(parse.NodeString), - "NodeTemplate": reflect.ValueOf(parse.NodeTemplate), - "NodeText": reflect.ValueOf(parse.NodeText), - "NodeVariable": reflect.ValueOf(parse.NodeVariable), - "NodeWith": reflect.ValueOf(parse.NodeWith), - "Parse": reflect.ValueOf(parse.Parse), - "ParseComments": reflect.ValueOf(parse.ParseComments), - - // type definitions - "ActionNode": reflect.ValueOf((*parse.ActionNode)(nil)), - "BoolNode": reflect.ValueOf((*parse.BoolNode)(nil)), - "BranchNode": reflect.ValueOf((*parse.BranchNode)(nil)), - "ChainNode": reflect.ValueOf((*parse.ChainNode)(nil)), - "CommandNode": reflect.ValueOf((*parse.CommandNode)(nil)), - "CommentNode": reflect.ValueOf((*parse.CommentNode)(nil)), - "DotNode": reflect.ValueOf((*parse.DotNode)(nil)), - "FieldNode": reflect.ValueOf((*parse.FieldNode)(nil)), - "IdentifierNode": reflect.ValueOf((*parse.IdentifierNode)(nil)), - "IfNode": reflect.ValueOf((*parse.IfNode)(nil)), - "ListNode": reflect.ValueOf((*parse.ListNode)(nil)), - "Mode": reflect.ValueOf((*parse.Mode)(nil)), - "NilNode": reflect.ValueOf((*parse.NilNode)(nil)), - "Node": reflect.ValueOf((*parse.Node)(nil)), - "NodeType": reflect.ValueOf((*parse.NodeType)(nil)), - "NumberNode": reflect.ValueOf((*parse.NumberNode)(nil)), - "PipeNode": reflect.ValueOf((*parse.PipeNode)(nil)), - "Pos": reflect.ValueOf((*parse.Pos)(nil)), - "RangeNode": reflect.ValueOf((*parse.RangeNode)(nil)), - "StringNode": reflect.ValueOf((*parse.StringNode)(nil)), - "TemplateNode": reflect.ValueOf((*parse.TemplateNode)(nil)), - "TextNode": reflect.ValueOf((*parse.TextNode)(nil)), - "Tree": reflect.ValueOf((*parse.Tree)(nil)), - "VariableNode": reflect.ValueOf((*parse.VariableNode)(nil)), - "WithNode": reflect.ValueOf((*parse.WithNode)(nil)), - - // interface wrapper definitions - "_Node": reflect.ValueOf((*_text_template_parse_Node)(nil)), - } -} - -// _text_template_parse_Node is an interface wrapper for Node type -type _text_template_parse_Node struct { - IValue interface{} - WCopy func() parse.Node - WPosition func() parse.Pos - WString func() string - WType func() parse.NodeType -} - -func (W _text_template_parse_Node) Copy() parse.Node { - return W.WCopy() -} -func (W _text_template_parse_Node) Position() parse.Pos { - return W.WPosition() -} -func (W _text_template_parse_Node) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _text_template_parse_Node) Type() parse.NodeType { - return W.WType() -} diff --git a/stdlib/go1_16_time.go b/stdlib/go1_16_time.go deleted file mode 100644 index c3f0c2e53..000000000 --- a/stdlib/go1_16_time.go +++ /dev/null @@ -1,87 +0,0 @@ -// Code generated by 'yaegi extract time'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "time" -) - -func init() { - Symbols["time/time"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ANSIC": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 2006\"", token.STRING, 0)), - "After": reflect.ValueOf(time.After), - "AfterFunc": reflect.ValueOf(time.AfterFunc), - "April": reflect.ValueOf(time.April), - "August": reflect.ValueOf(time.August), - "Date": reflect.ValueOf(time.Date), - "December": reflect.ValueOf(time.December), - "February": reflect.ValueOf(time.February), - "FixedZone": reflect.ValueOf(time.FixedZone), - "Friday": reflect.ValueOf(time.Friday), - "Hour": reflect.ValueOf(time.Hour), - "January": reflect.ValueOf(time.January), - "July": reflect.ValueOf(time.July), - "June": reflect.ValueOf(time.June), - "Kitchen": reflect.ValueOf(constant.MakeFromLiteral("\"3:04PM\"", token.STRING, 0)), - "LoadLocation": reflect.ValueOf(time.LoadLocation), - "LoadLocationFromTZData": reflect.ValueOf(time.LoadLocationFromTZData), - "Local": reflect.ValueOf(&time.Local).Elem(), - "March": reflect.ValueOf(time.March), - "May": reflect.ValueOf(time.May), - "Microsecond": reflect.ValueOf(time.Microsecond), - "Millisecond": reflect.ValueOf(time.Millisecond), - "Minute": reflect.ValueOf(time.Minute), - "Monday": reflect.ValueOf(time.Monday), - "Nanosecond": reflect.ValueOf(time.Nanosecond), - "NewTicker": reflect.ValueOf(time.NewTicker), - "NewTimer": reflect.ValueOf(time.NewTimer), - "November": reflect.ValueOf(time.November), - "Now": reflect.ValueOf(time.Now), - "October": reflect.ValueOf(time.October), - "Parse": reflect.ValueOf(time.Parse), - "ParseDuration": reflect.ValueOf(time.ParseDuration), - "ParseInLocation": reflect.ValueOf(time.ParseInLocation), - "RFC1123": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 MST\"", token.STRING, 0)), - "RFC1123Z": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 -0700\"", token.STRING, 0)), - "RFC3339": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05Z07:00\"", token.STRING, 0)), - "RFC3339Nano": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05.999999999Z07:00\"", token.STRING, 0)), - "RFC822": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 MST\"", token.STRING, 0)), - "RFC822Z": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 -0700\"", token.STRING, 0)), - "RFC850": reflect.ValueOf(constant.MakeFromLiteral("\"Monday, 02-Jan-06 15:04:05 MST\"", token.STRING, 0)), - "RubyDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan 02 15:04:05 -0700 2006\"", token.STRING, 0)), - "Saturday": reflect.ValueOf(time.Saturday), - "Second": reflect.ValueOf(time.Second), - "September": reflect.ValueOf(time.September), - "Since": reflect.ValueOf(time.Since), - "Sleep": reflect.ValueOf(time.Sleep), - "Stamp": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05\"", token.STRING, 0)), - "StampMicro": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000\"", token.STRING, 0)), - "StampMilli": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000\"", token.STRING, 0)), - "StampNano": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000000\"", token.STRING, 0)), - "Sunday": reflect.ValueOf(time.Sunday), - "Thursday": reflect.ValueOf(time.Thursday), - "Tick": reflect.ValueOf(time.Tick), - "Tuesday": reflect.ValueOf(time.Tuesday), - "UTC": reflect.ValueOf(&time.UTC).Elem(), - "Unix": reflect.ValueOf(time.Unix), - "UnixDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 MST 2006\"", token.STRING, 0)), - "Until": reflect.ValueOf(time.Until), - "Wednesday": reflect.ValueOf(time.Wednesday), - - // type definitions - "Duration": reflect.ValueOf((*time.Duration)(nil)), - "Location": reflect.ValueOf((*time.Location)(nil)), - "Month": reflect.ValueOf((*time.Month)(nil)), - "ParseError": reflect.ValueOf((*time.ParseError)(nil)), - "Ticker": reflect.ValueOf((*time.Ticker)(nil)), - "Time": reflect.ValueOf((*time.Time)(nil)), - "Timer": reflect.ValueOf((*time.Timer)(nil)), - "Weekday": reflect.ValueOf((*time.Weekday)(nil)), - } -} diff --git a/stdlib/go1_16_unicode.go b/stdlib/go1_16_unicode.go deleted file mode 100644 index 0c18704f6..000000000 --- a/stdlib/go1_16_unicode.go +++ /dev/null @@ -1,304 +0,0 @@ -// Code generated by 'yaegi extract unicode'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "unicode" -) - -func init() { - Symbols["unicode/unicode"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ASCII_Hex_Digit": reflect.ValueOf(&unicode.ASCII_Hex_Digit).Elem(), - "Adlam": reflect.ValueOf(&unicode.Adlam).Elem(), - "Ahom": reflect.ValueOf(&unicode.Ahom).Elem(), - "Anatolian_Hieroglyphs": reflect.ValueOf(&unicode.Anatolian_Hieroglyphs).Elem(), - "Arabic": reflect.ValueOf(&unicode.Arabic).Elem(), - "Armenian": reflect.ValueOf(&unicode.Armenian).Elem(), - "Avestan": reflect.ValueOf(&unicode.Avestan).Elem(), - "AzeriCase": reflect.ValueOf(&unicode.AzeriCase).Elem(), - "Balinese": reflect.ValueOf(&unicode.Balinese).Elem(), - "Bamum": reflect.ValueOf(&unicode.Bamum).Elem(), - "Bassa_Vah": reflect.ValueOf(&unicode.Bassa_Vah).Elem(), - "Batak": reflect.ValueOf(&unicode.Batak).Elem(), - "Bengali": reflect.ValueOf(&unicode.Bengali).Elem(), - "Bhaiksuki": reflect.ValueOf(&unicode.Bhaiksuki).Elem(), - "Bidi_Control": reflect.ValueOf(&unicode.Bidi_Control).Elem(), - "Bopomofo": reflect.ValueOf(&unicode.Bopomofo).Elem(), - "Brahmi": reflect.ValueOf(&unicode.Brahmi).Elem(), - "Braille": reflect.ValueOf(&unicode.Braille).Elem(), - "Buginese": reflect.ValueOf(&unicode.Buginese).Elem(), - "Buhid": reflect.ValueOf(&unicode.Buhid).Elem(), - "C": reflect.ValueOf(&unicode.C).Elem(), - "Canadian_Aboriginal": reflect.ValueOf(&unicode.Canadian_Aboriginal).Elem(), - "Carian": reflect.ValueOf(&unicode.Carian).Elem(), - "CaseRanges": reflect.ValueOf(&unicode.CaseRanges).Elem(), - "Categories": reflect.ValueOf(&unicode.Categories).Elem(), - "Caucasian_Albanian": reflect.ValueOf(&unicode.Caucasian_Albanian).Elem(), - "Cc": reflect.ValueOf(&unicode.Cc).Elem(), - "Cf": reflect.ValueOf(&unicode.Cf).Elem(), - "Chakma": reflect.ValueOf(&unicode.Chakma).Elem(), - "Cham": reflect.ValueOf(&unicode.Cham).Elem(), - "Cherokee": reflect.ValueOf(&unicode.Cherokee).Elem(), - "Chorasmian": reflect.ValueOf(&unicode.Chorasmian).Elem(), - "Co": reflect.ValueOf(&unicode.Co).Elem(), - "Common": reflect.ValueOf(&unicode.Common).Elem(), - "Coptic": reflect.ValueOf(&unicode.Coptic).Elem(), - "Cs": reflect.ValueOf(&unicode.Cs).Elem(), - "Cuneiform": reflect.ValueOf(&unicode.Cuneiform).Elem(), - "Cypriot": reflect.ValueOf(&unicode.Cypriot).Elem(), - "Cyrillic": reflect.ValueOf(&unicode.Cyrillic).Elem(), - "Dash": reflect.ValueOf(&unicode.Dash).Elem(), - "Deprecated": reflect.ValueOf(&unicode.Deprecated).Elem(), - "Deseret": reflect.ValueOf(&unicode.Deseret).Elem(), - "Devanagari": reflect.ValueOf(&unicode.Devanagari).Elem(), - "Diacritic": reflect.ValueOf(&unicode.Diacritic).Elem(), - "Digit": reflect.ValueOf(&unicode.Digit).Elem(), - "Dives_Akuru": reflect.ValueOf(&unicode.Dives_Akuru).Elem(), - "Dogra": reflect.ValueOf(&unicode.Dogra).Elem(), - "Duployan": reflect.ValueOf(&unicode.Duployan).Elem(), - "Egyptian_Hieroglyphs": reflect.ValueOf(&unicode.Egyptian_Hieroglyphs).Elem(), - "Elbasan": reflect.ValueOf(&unicode.Elbasan).Elem(), - "Elymaic": reflect.ValueOf(&unicode.Elymaic).Elem(), - "Ethiopic": reflect.ValueOf(&unicode.Ethiopic).Elem(), - "Extender": reflect.ValueOf(&unicode.Extender).Elem(), - "FoldCategory": reflect.ValueOf(&unicode.FoldCategory).Elem(), - "FoldScript": reflect.ValueOf(&unicode.FoldScript).Elem(), - "Georgian": reflect.ValueOf(&unicode.Georgian).Elem(), - "Glagolitic": reflect.ValueOf(&unicode.Glagolitic).Elem(), - "Gothic": reflect.ValueOf(&unicode.Gothic).Elem(), - "Grantha": reflect.ValueOf(&unicode.Grantha).Elem(), - "GraphicRanges": reflect.ValueOf(&unicode.GraphicRanges).Elem(), - "Greek": reflect.ValueOf(&unicode.Greek).Elem(), - "Gujarati": reflect.ValueOf(&unicode.Gujarati).Elem(), - "Gunjala_Gondi": reflect.ValueOf(&unicode.Gunjala_Gondi).Elem(), - "Gurmukhi": reflect.ValueOf(&unicode.Gurmukhi).Elem(), - "Han": reflect.ValueOf(&unicode.Han).Elem(), - "Hangul": reflect.ValueOf(&unicode.Hangul).Elem(), - "Hanifi_Rohingya": reflect.ValueOf(&unicode.Hanifi_Rohingya).Elem(), - "Hanunoo": reflect.ValueOf(&unicode.Hanunoo).Elem(), - "Hatran": reflect.ValueOf(&unicode.Hatran).Elem(), - "Hebrew": reflect.ValueOf(&unicode.Hebrew).Elem(), - "Hex_Digit": reflect.ValueOf(&unicode.Hex_Digit).Elem(), - "Hiragana": reflect.ValueOf(&unicode.Hiragana).Elem(), - "Hyphen": reflect.ValueOf(&unicode.Hyphen).Elem(), - "IDS_Binary_Operator": reflect.ValueOf(&unicode.IDS_Binary_Operator).Elem(), - "IDS_Trinary_Operator": reflect.ValueOf(&unicode.IDS_Trinary_Operator).Elem(), - "Ideographic": reflect.ValueOf(&unicode.Ideographic).Elem(), - "Imperial_Aramaic": reflect.ValueOf(&unicode.Imperial_Aramaic).Elem(), - "In": reflect.ValueOf(unicode.In), - "Inherited": reflect.ValueOf(&unicode.Inherited).Elem(), - "Inscriptional_Pahlavi": reflect.ValueOf(&unicode.Inscriptional_Pahlavi).Elem(), - "Inscriptional_Parthian": reflect.ValueOf(&unicode.Inscriptional_Parthian).Elem(), - "Is": reflect.ValueOf(unicode.Is), - "IsControl": reflect.ValueOf(unicode.IsControl), - "IsDigit": reflect.ValueOf(unicode.IsDigit), - "IsGraphic": reflect.ValueOf(unicode.IsGraphic), - "IsLetter": reflect.ValueOf(unicode.IsLetter), - "IsLower": reflect.ValueOf(unicode.IsLower), - "IsMark": reflect.ValueOf(unicode.IsMark), - "IsNumber": reflect.ValueOf(unicode.IsNumber), - "IsOneOf": reflect.ValueOf(unicode.IsOneOf), - "IsPrint": reflect.ValueOf(unicode.IsPrint), - "IsPunct": reflect.ValueOf(unicode.IsPunct), - "IsSpace": reflect.ValueOf(unicode.IsSpace), - "IsSymbol": reflect.ValueOf(unicode.IsSymbol), - "IsTitle": reflect.ValueOf(unicode.IsTitle), - "IsUpper": reflect.ValueOf(unicode.IsUpper), - "Javanese": reflect.ValueOf(&unicode.Javanese).Elem(), - "Join_Control": reflect.ValueOf(&unicode.Join_Control).Elem(), - "Kaithi": reflect.ValueOf(&unicode.Kaithi).Elem(), - "Kannada": reflect.ValueOf(&unicode.Kannada).Elem(), - "Katakana": reflect.ValueOf(&unicode.Katakana).Elem(), - "Kayah_Li": reflect.ValueOf(&unicode.Kayah_Li).Elem(), - "Kharoshthi": reflect.ValueOf(&unicode.Kharoshthi).Elem(), - "Khitan_Small_Script": reflect.ValueOf(&unicode.Khitan_Small_Script).Elem(), - "Khmer": reflect.ValueOf(&unicode.Khmer).Elem(), - "Khojki": reflect.ValueOf(&unicode.Khojki).Elem(), - "Khudawadi": reflect.ValueOf(&unicode.Khudawadi).Elem(), - "L": reflect.ValueOf(&unicode.L).Elem(), - "Lao": reflect.ValueOf(&unicode.Lao).Elem(), - "Latin": reflect.ValueOf(&unicode.Latin).Elem(), - "Lepcha": reflect.ValueOf(&unicode.Lepcha).Elem(), - "Letter": reflect.ValueOf(&unicode.Letter).Elem(), - "Limbu": reflect.ValueOf(&unicode.Limbu).Elem(), - "Linear_A": reflect.ValueOf(&unicode.Linear_A).Elem(), - "Linear_B": reflect.ValueOf(&unicode.Linear_B).Elem(), - "Lisu": reflect.ValueOf(&unicode.Lisu).Elem(), - "Ll": reflect.ValueOf(&unicode.Ll).Elem(), - "Lm": reflect.ValueOf(&unicode.Lm).Elem(), - "Lo": reflect.ValueOf(&unicode.Lo).Elem(), - "Logical_Order_Exception": reflect.ValueOf(&unicode.Logical_Order_Exception).Elem(), - "Lower": reflect.ValueOf(&unicode.Lower).Elem(), - "LowerCase": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Lt": reflect.ValueOf(&unicode.Lt).Elem(), - "Lu": reflect.ValueOf(&unicode.Lu).Elem(), - "Lycian": reflect.ValueOf(&unicode.Lycian).Elem(), - "Lydian": reflect.ValueOf(&unicode.Lydian).Elem(), - "M": reflect.ValueOf(&unicode.M).Elem(), - "Mahajani": reflect.ValueOf(&unicode.Mahajani).Elem(), - "Makasar": reflect.ValueOf(&unicode.Makasar).Elem(), - "Malayalam": reflect.ValueOf(&unicode.Malayalam).Elem(), - "Mandaic": reflect.ValueOf(&unicode.Mandaic).Elem(), - "Manichaean": reflect.ValueOf(&unicode.Manichaean).Elem(), - "Marchen": reflect.ValueOf(&unicode.Marchen).Elem(), - "Mark": reflect.ValueOf(&unicode.Mark).Elem(), - "Masaram_Gondi": reflect.ValueOf(&unicode.Masaram_Gondi).Elem(), - "MaxASCII": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "MaxCase": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MaxLatin1": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), - "Mc": reflect.ValueOf(&unicode.Mc).Elem(), - "Me": reflect.ValueOf(&unicode.Me).Elem(), - "Medefaidrin": reflect.ValueOf(&unicode.Medefaidrin).Elem(), - "Meetei_Mayek": reflect.ValueOf(&unicode.Meetei_Mayek).Elem(), - "Mende_Kikakui": reflect.ValueOf(&unicode.Mende_Kikakui).Elem(), - "Meroitic_Cursive": reflect.ValueOf(&unicode.Meroitic_Cursive).Elem(), - "Meroitic_Hieroglyphs": reflect.ValueOf(&unicode.Meroitic_Hieroglyphs).Elem(), - "Miao": reflect.ValueOf(&unicode.Miao).Elem(), - "Mn": reflect.ValueOf(&unicode.Mn).Elem(), - "Modi": reflect.ValueOf(&unicode.Modi).Elem(), - "Mongolian": reflect.ValueOf(&unicode.Mongolian).Elem(), - "Mro": reflect.ValueOf(&unicode.Mro).Elem(), - "Multani": reflect.ValueOf(&unicode.Multani).Elem(), - "Myanmar": reflect.ValueOf(&unicode.Myanmar).Elem(), - "N": reflect.ValueOf(&unicode.N).Elem(), - "Nabataean": reflect.ValueOf(&unicode.Nabataean).Elem(), - "Nandinagari": reflect.ValueOf(&unicode.Nandinagari).Elem(), - "Nd": reflect.ValueOf(&unicode.Nd).Elem(), - "New_Tai_Lue": reflect.ValueOf(&unicode.New_Tai_Lue).Elem(), - "Newa": reflect.ValueOf(&unicode.Newa).Elem(), - "Nko": reflect.ValueOf(&unicode.Nko).Elem(), - "Nl": reflect.ValueOf(&unicode.Nl).Elem(), - "No": reflect.ValueOf(&unicode.No).Elem(), - "Noncharacter_Code_Point": reflect.ValueOf(&unicode.Noncharacter_Code_Point).Elem(), - "Number": reflect.ValueOf(&unicode.Number).Elem(), - "Nushu": reflect.ValueOf(&unicode.Nushu).Elem(), - "Nyiakeng_Puachue_Hmong": reflect.ValueOf(&unicode.Nyiakeng_Puachue_Hmong).Elem(), - "Ogham": reflect.ValueOf(&unicode.Ogham).Elem(), - "Ol_Chiki": reflect.ValueOf(&unicode.Ol_Chiki).Elem(), - "Old_Hungarian": reflect.ValueOf(&unicode.Old_Hungarian).Elem(), - "Old_Italic": reflect.ValueOf(&unicode.Old_Italic).Elem(), - "Old_North_Arabian": reflect.ValueOf(&unicode.Old_North_Arabian).Elem(), - "Old_Permic": reflect.ValueOf(&unicode.Old_Permic).Elem(), - "Old_Persian": reflect.ValueOf(&unicode.Old_Persian).Elem(), - "Old_Sogdian": reflect.ValueOf(&unicode.Old_Sogdian).Elem(), - "Old_South_Arabian": reflect.ValueOf(&unicode.Old_South_Arabian).Elem(), - "Old_Turkic": reflect.ValueOf(&unicode.Old_Turkic).Elem(), - "Oriya": reflect.ValueOf(&unicode.Oriya).Elem(), - "Osage": reflect.ValueOf(&unicode.Osage).Elem(), - "Osmanya": reflect.ValueOf(&unicode.Osmanya).Elem(), - "Other": reflect.ValueOf(&unicode.Other).Elem(), - "Other_Alphabetic": reflect.ValueOf(&unicode.Other_Alphabetic).Elem(), - "Other_Default_Ignorable_Code_Point": reflect.ValueOf(&unicode.Other_Default_Ignorable_Code_Point).Elem(), - "Other_Grapheme_Extend": reflect.ValueOf(&unicode.Other_Grapheme_Extend).Elem(), - "Other_ID_Continue": reflect.ValueOf(&unicode.Other_ID_Continue).Elem(), - "Other_ID_Start": reflect.ValueOf(&unicode.Other_ID_Start).Elem(), - "Other_Lowercase": reflect.ValueOf(&unicode.Other_Lowercase).Elem(), - "Other_Math": reflect.ValueOf(&unicode.Other_Math).Elem(), - "Other_Uppercase": reflect.ValueOf(&unicode.Other_Uppercase).Elem(), - "P": reflect.ValueOf(&unicode.P).Elem(), - "Pahawh_Hmong": reflect.ValueOf(&unicode.Pahawh_Hmong).Elem(), - "Palmyrene": reflect.ValueOf(&unicode.Palmyrene).Elem(), - "Pattern_Syntax": reflect.ValueOf(&unicode.Pattern_Syntax).Elem(), - "Pattern_White_Space": reflect.ValueOf(&unicode.Pattern_White_Space).Elem(), - "Pau_Cin_Hau": reflect.ValueOf(&unicode.Pau_Cin_Hau).Elem(), - "Pc": reflect.ValueOf(&unicode.Pc).Elem(), - "Pd": reflect.ValueOf(&unicode.Pd).Elem(), - "Pe": reflect.ValueOf(&unicode.Pe).Elem(), - "Pf": reflect.ValueOf(&unicode.Pf).Elem(), - "Phags_Pa": reflect.ValueOf(&unicode.Phags_Pa).Elem(), - "Phoenician": reflect.ValueOf(&unicode.Phoenician).Elem(), - "Pi": reflect.ValueOf(&unicode.Pi).Elem(), - "Po": reflect.ValueOf(&unicode.Po).Elem(), - "Prepended_Concatenation_Mark": reflect.ValueOf(&unicode.Prepended_Concatenation_Mark).Elem(), - "PrintRanges": reflect.ValueOf(&unicode.PrintRanges).Elem(), - "Properties": reflect.ValueOf(&unicode.Properties).Elem(), - "Ps": reflect.ValueOf(&unicode.Ps).Elem(), - "Psalter_Pahlavi": reflect.ValueOf(&unicode.Psalter_Pahlavi).Elem(), - "Punct": reflect.ValueOf(&unicode.Punct).Elem(), - "Quotation_Mark": reflect.ValueOf(&unicode.Quotation_Mark).Elem(), - "Radical": reflect.ValueOf(&unicode.Radical).Elem(), - "Regional_Indicator": reflect.ValueOf(&unicode.Regional_Indicator).Elem(), - "Rejang": reflect.ValueOf(&unicode.Rejang).Elem(), - "ReplacementChar": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "Runic": reflect.ValueOf(&unicode.Runic).Elem(), - "S": reflect.ValueOf(&unicode.S).Elem(), - "STerm": reflect.ValueOf(&unicode.STerm).Elem(), - "Samaritan": reflect.ValueOf(&unicode.Samaritan).Elem(), - "Saurashtra": reflect.ValueOf(&unicode.Saurashtra).Elem(), - "Sc": reflect.ValueOf(&unicode.Sc).Elem(), - "Scripts": reflect.ValueOf(&unicode.Scripts).Elem(), - "Sentence_Terminal": reflect.ValueOf(&unicode.Sentence_Terminal).Elem(), - "Sharada": reflect.ValueOf(&unicode.Sharada).Elem(), - "Shavian": reflect.ValueOf(&unicode.Shavian).Elem(), - "Siddham": reflect.ValueOf(&unicode.Siddham).Elem(), - "SignWriting": reflect.ValueOf(&unicode.SignWriting).Elem(), - "SimpleFold": reflect.ValueOf(unicode.SimpleFold), - "Sinhala": reflect.ValueOf(&unicode.Sinhala).Elem(), - "Sk": reflect.ValueOf(&unicode.Sk).Elem(), - "Sm": reflect.ValueOf(&unicode.Sm).Elem(), - "So": reflect.ValueOf(&unicode.So).Elem(), - "Soft_Dotted": reflect.ValueOf(&unicode.Soft_Dotted).Elem(), - "Sogdian": reflect.ValueOf(&unicode.Sogdian).Elem(), - "Sora_Sompeng": reflect.ValueOf(&unicode.Sora_Sompeng).Elem(), - "Soyombo": reflect.ValueOf(&unicode.Soyombo).Elem(), - "Space": reflect.ValueOf(&unicode.Space).Elem(), - "Sundanese": reflect.ValueOf(&unicode.Sundanese).Elem(), - "Syloti_Nagri": reflect.ValueOf(&unicode.Syloti_Nagri).Elem(), - "Symbol": reflect.ValueOf(&unicode.Symbol).Elem(), - "Syriac": reflect.ValueOf(&unicode.Syriac).Elem(), - "Tagalog": reflect.ValueOf(&unicode.Tagalog).Elem(), - "Tagbanwa": reflect.ValueOf(&unicode.Tagbanwa).Elem(), - "Tai_Le": reflect.ValueOf(&unicode.Tai_Le).Elem(), - "Tai_Tham": reflect.ValueOf(&unicode.Tai_Tham).Elem(), - "Tai_Viet": reflect.ValueOf(&unicode.Tai_Viet).Elem(), - "Takri": reflect.ValueOf(&unicode.Takri).Elem(), - "Tamil": reflect.ValueOf(&unicode.Tamil).Elem(), - "Tangut": reflect.ValueOf(&unicode.Tangut).Elem(), - "Telugu": reflect.ValueOf(&unicode.Telugu).Elem(), - "Terminal_Punctuation": reflect.ValueOf(&unicode.Terminal_Punctuation).Elem(), - "Thaana": reflect.ValueOf(&unicode.Thaana).Elem(), - "Thai": reflect.ValueOf(&unicode.Thai).Elem(), - "Tibetan": reflect.ValueOf(&unicode.Tibetan).Elem(), - "Tifinagh": reflect.ValueOf(&unicode.Tifinagh).Elem(), - "Tirhuta": reflect.ValueOf(&unicode.Tirhuta).Elem(), - "Title": reflect.ValueOf(&unicode.Title).Elem(), - "TitleCase": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "To": reflect.ValueOf(unicode.To), - "ToLower": reflect.ValueOf(unicode.ToLower), - "ToTitle": reflect.ValueOf(unicode.ToTitle), - "ToUpper": reflect.ValueOf(unicode.ToUpper), - "TurkishCase": reflect.ValueOf(&unicode.TurkishCase).Elem(), - "Ugaritic": reflect.ValueOf(&unicode.Ugaritic).Elem(), - "Unified_Ideograph": reflect.ValueOf(&unicode.Unified_Ideograph).Elem(), - "Upper": reflect.ValueOf(&unicode.Upper).Elem(), - "UpperCase": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "UpperLower": reflect.ValueOf(constant.MakeFromLiteral("1114112", token.INT, 0)), - "Vai": reflect.ValueOf(&unicode.Vai).Elem(), - "Variation_Selector": reflect.ValueOf(&unicode.Variation_Selector).Elem(), - "Version": reflect.ValueOf(constant.MakeFromLiteral("\"13.0.0\"", token.STRING, 0)), - "Wancho": reflect.ValueOf(&unicode.Wancho).Elem(), - "Warang_Citi": reflect.ValueOf(&unicode.Warang_Citi).Elem(), - "White_Space": reflect.ValueOf(&unicode.White_Space).Elem(), - "Yezidi": reflect.ValueOf(&unicode.Yezidi).Elem(), - "Yi": reflect.ValueOf(&unicode.Yi).Elem(), - "Z": reflect.ValueOf(&unicode.Z).Elem(), - "Zanabazar_Square": reflect.ValueOf(&unicode.Zanabazar_Square).Elem(), - "Zl": reflect.ValueOf(&unicode.Zl).Elem(), - "Zp": reflect.ValueOf(&unicode.Zp).Elem(), - "Zs": reflect.ValueOf(&unicode.Zs).Elem(), - - // type definitions - "CaseRange": reflect.ValueOf((*unicode.CaseRange)(nil)), - "Range16": reflect.ValueOf((*unicode.Range16)(nil)), - "Range32": reflect.ValueOf((*unicode.Range32)(nil)), - "RangeTable": reflect.ValueOf((*unicode.RangeTable)(nil)), - "SpecialCase": reflect.ValueOf((*unicode.SpecialCase)(nil)), - } -} diff --git a/stdlib/go1_16_unicode_utf16.go b/stdlib/go1_16_unicode_utf16.go deleted file mode 100644 index 3e99668a3..000000000 --- a/stdlib/go1_16_unicode_utf16.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "reflect" - "unicode/utf16" -) - -func init() { - Symbols["unicode/utf16/utf16"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(utf16.Decode), - "DecodeRune": reflect.ValueOf(utf16.DecodeRune), - "Encode": reflect.ValueOf(utf16.Encode), - "EncodeRune": reflect.ValueOf(utf16.EncodeRune), - "IsSurrogate": reflect.ValueOf(utf16.IsSurrogate), - } -} diff --git a/stdlib/go1_16_unicode_utf8.go b/stdlib/go1_16_unicode_utf8.go deleted file mode 100644 index 1327789ca..000000000 --- a/stdlib/go1_16_unicode_utf8.go +++ /dev/null @@ -1,36 +0,0 @@ -// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "unicode/utf8" -) - -func init() { - Symbols["unicode/utf8/utf8"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DecodeLastRune": reflect.ValueOf(utf8.DecodeLastRune), - "DecodeLastRuneInString": reflect.ValueOf(utf8.DecodeLastRuneInString), - "DecodeRune": reflect.ValueOf(utf8.DecodeRune), - "DecodeRuneInString": reflect.ValueOf(utf8.DecodeRuneInString), - "EncodeRune": reflect.ValueOf(utf8.EncodeRune), - "FullRune": reflect.ValueOf(utf8.FullRune), - "FullRuneInString": reflect.ValueOf(utf8.FullRuneInString), - "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), - "RuneCount": reflect.ValueOf(utf8.RuneCount), - "RuneCountInString": reflect.ValueOf(utf8.RuneCountInString), - "RuneError": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "RuneLen": reflect.ValueOf(utf8.RuneLen), - "RuneSelf": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RuneStart": reflect.ValueOf(utf8.RuneStart), - "UTFMax": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Valid": reflect.ValueOf(utf8.Valid), - "ValidRune": reflect.ValueOf(utf8.ValidRune), - "ValidString": reflect.ValueOf(utf8.ValidString), - } -} diff --git a/stdlib/go1_17_archive_tar.go b/stdlib/go1_17_archive_tar.go deleted file mode 100644 index 822acf66b..000000000 --- a/stdlib/go1_17_archive_tar.go +++ /dev/null @@ -1,50 +0,0 @@ -// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "archive/tar" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["archive/tar/tar"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrFieldTooLong": reflect.ValueOf(&tar.ErrFieldTooLong).Elem(), - "ErrHeader": reflect.ValueOf(&tar.ErrHeader).Elem(), - "ErrWriteAfterClose": reflect.ValueOf(&tar.ErrWriteAfterClose).Elem(), - "ErrWriteTooLong": reflect.ValueOf(&tar.ErrWriteTooLong).Elem(), - "FileInfoHeader": reflect.ValueOf(tar.FileInfoHeader), - "FormatGNU": reflect.ValueOf(tar.FormatGNU), - "FormatPAX": reflect.ValueOf(tar.FormatPAX), - "FormatUSTAR": reflect.ValueOf(tar.FormatUSTAR), - "FormatUnknown": reflect.ValueOf(tar.FormatUnknown), - "NewReader": reflect.ValueOf(tar.NewReader), - "NewWriter": reflect.ValueOf(tar.NewWriter), - "TypeBlock": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "TypeChar": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "TypeCont": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "TypeDir": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "TypeFifo": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "TypeGNULongLink": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "TypeGNULongName": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "TypeGNUSparse": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "TypeLink": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "TypeReg": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "TypeRegA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TypeSymlink": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "TypeXGlobalHeader": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "TypeXHeader": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - - // type definitions - "Format": reflect.ValueOf((*tar.Format)(nil)), - "Header": reflect.ValueOf((*tar.Header)(nil)), - "Reader": reflect.ValueOf((*tar.Reader)(nil)), - "Writer": reflect.ValueOf((*tar.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_archive_zip.go b/stdlib/go1_17_archive_zip.go deleted file mode 100644 index c91dc0c4f..000000000 --- a/stdlib/go1_17_archive_zip.go +++ /dev/null @@ -1,37 +0,0 @@ -// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "archive/zip" - "reflect" -) - -func init() { - Symbols["archive/zip/zip"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Deflate": reflect.ValueOf(zip.Deflate), - "ErrAlgorithm": reflect.ValueOf(&zip.ErrAlgorithm).Elem(), - "ErrChecksum": reflect.ValueOf(&zip.ErrChecksum).Elem(), - "ErrFormat": reflect.ValueOf(&zip.ErrFormat).Elem(), - "FileInfoHeader": reflect.ValueOf(zip.FileInfoHeader), - "NewReader": reflect.ValueOf(zip.NewReader), - "NewWriter": reflect.ValueOf(zip.NewWriter), - "OpenReader": reflect.ValueOf(zip.OpenReader), - "RegisterCompressor": reflect.ValueOf(zip.RegisterCompressor), - "RegisterDecompressor": reflect.ValueOf(zip.RegisterDecompressor), - "Store": reflect.ValueOf(zip.Store), - - // type definitions - "Compressor": reflect.ValueOf((*zip.Compressor)(nil)), - "Decompressor": reflect.ValueOf((*zip.Decompressor)(nil)), - "File": reflect.ValueOf((*zip.File)(nil)), - "FileHeader": reflect.ValueOf((*zip.FileHeader)(nil)), - "ReadCloser": reflect.ValueOf((*zip.ReadCloser)(nil)), - "Reader": reflect.ValueOf((*zip.Reader)(nil)), - "Writer": reflect.ValueOf((*zip.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_bufio.go b/stdlib/go1_17_bufio.go deleted file mode 100644 index 6ce40013d..000000000 --- a/stdlib/go1_17_bufio.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract bufio'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "bufio" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["bufio/bufio"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrAdvanceTooFar": reflect.ValueOf(&bufio.ErrAdvanceTooFar).Elem(), - "ErrBadReadCount": reflect.ValueOf(&bufio.ErrBadReadCount).Elem(), - "ErrBufferFull": reflect.ValueOf(&bufio.ErrBufferFull).Elem(), - "ErrFinalToken": reflect.ValueOf(&bufio.ErrFinalToken).Elem(), - "ErrInvalidUnreadByte": reflect.ValueOf(&bufio.ErrInvalidUnreadByte).Elem(), - "ErrInvalidUnreadRune": reflect.ValueOf(&bufio.ErrInvalidUnreadRune).Elem(), - "ErrNegativeAdvance": reflect.ValueOf(&bufio.ErrNegativeAdvance).Elem(), - "ErrNegativeCount": reflect.ValueOf(&bufio.ErrNegativeCount).Elem(), - "ErrTooLong": reflect.ValueOf(&bufio.ErrTooLong).Elem(), - "MaxScanTokenSize": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "NewReadWriter": reflect.ValueOf(bufio.NewReadWriter), - "NewReader": reflect.ValueOf(bufio.NewReader), - "NewReaderSize": reflect.ValueOf(bufio.NewReaderSize), - "NewScanner": reflect.ValueOf(bufio.NewScanner), - "NewWriter": reflect.ValueOf(bufio.NewWriter), - "NewWriterSize": reflect.ValueOf(bufio.NewWriterSize), - "ScanBytes": reflect.ValueOf(bufio.ScanBytes), - "ScanLines": reflect.ValueOf(bufio.ScanLines), - "ScanRunes": reflect.ValueOf(bufio.ScanRunes), - "ScanWords": reflect.ValueOf(bufio.ScanWords), - - // type definitions - "ReadWriter": reflect.ValueOf((*bufio.ReadWriter)(nil)), - "Reader": reflect.ValueOf((*bufio.Reader)(nil)), - "Scanner": reflect.ValueOf((*bufio.Scanner)(nil)), - "SplitFunc": reflect.ValueOf((*bufio.SplitFunc)(nil)), - "Writer": reflect.ValueOf((*bufio.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_bytes.go b/stdlib/go1_17_bytes.go deleted file mode 100644 index 6a89dc817..000000000 --- a/stdlib/go1_17_bytes.go +++ /dev/null @@ -1,75 +0,0 @@ -// Code generated by 'yaegi extract bytes'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "bytes" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["bytes/bytes"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compare": reflect.ValueOf(bytes.Compare), - "Contains": reflect.ValueOf(bytes.Contains), - "ContainsAny": reflect.ValueOf(bytes.ContainsAny), - "ContainsRune": reflect.ValueOf(bytes.ContainsRune), - "Count": reflect.ValueOf(bytes.Count), - "Equal": reflect.ValueOf(bytes.Equal), - "EqualFold": reflect.ValueOf(bytes.EqualFold), - "ErrTooLarge": reflect.ValueOf(&bytes.ErrTooLarge).Elem(), - "Fields": reflect.ValueOf(bytes.Fields), - "FieldsFunc": reflect.ValueOf(bytes.FieldsFunc), - "HasPrefix": reflect.ValueOf(bytes.HasPrefix), - "HasSuffix": reflect.ValueOf(bytes.HasSuffix), - "Index": reflect.ValueOf(bytes.Index), - "IndexAny": reflect.ValueOf(bytes.IndexAny), - "IndexByte": reflect.ValueOf(bytes.IndexByte), - "IndexFunc": reflect.ValueOf(bytes.IndexFunc), - "IndexRune": reflect.ValueOf(bytes.IndexRune), - "Join": reflect.ValueOf(bytes.Join), - "LastIndex": reflect.ValueOf(bytes.LastIndex), - "LastIndexAny": reflect.ValueOf(bytes.LastIndexAny), - "LastIndexByte": reflect.ValueOf(bytes.LastIndexByte), - "LastIndexFunc": reflect.ValueOf(bytes.LastIndexFunc), - "Map": reflect.ValueOf(bytes.Map), - "MinRead": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NewBuffer": reflect.ValueOf(bytes.NewBuffer), - "NewBufferString": reflect.ValueOf(bytes.NewBufferString), - "NewReader": reflect.ValueOf(bytes.NewReader), - "Repeat": reflect.ValueOf(bytes.Repeat), - "Replace": reflect.ValueOf(bytes.Replace), - "ReplaceAll": reflect.ValueOf(bytes.ReplaceAll), - "Runes": reflect.ValueOf(bytes.Runes), - "Split": reflect.ValueOf(bytes.Split), - "SplitAfter": reflect.ValueOf(bytes.SplitAfter), - "SplitAfterN": reflect.ValueOf(bytes.SplitAfterN), - "SplitN": reflect.ValueOf(bytes.SplitN), - "Title": reflect.ValueOf(bytes.Title), - "ToLower": reflect.ValueOf(bytes.ToLower), - "ToLowerSpecial": reflect.ValueOf(bytes.ToLowerSpecial), - "ToTitle": reflect.ValueOf(bytes.ToTitle), - "ToTitleSpecial": reflect.ValueOf(bytes.ToTitleSpecial), - "ToUpper": reflect.ValueOf(bytes.ToUpper), - "ToUpperSpecial": reflect.ValueOf(bytes.ToUpperSpecial), - "ToValidUTF8": reflect.ValueOf(bytes.ToValidUTF8), - "Trim": reflect.ValueOf(bytes.Trim), - "TrimFunc": reflect.ValueOf(bytes.TrimFunc), - "TrimLeft": reflect.ValueOf(bytes.TrimLeft), - "TrimLeftFunc": reflect.ValueOf(bytes.TrimLeftFunc), - "TrimPrefix": reflect.ValueOf(bytes.TrimPrefix), - "TrimRight": reflect.ValueOf(bytes.TrimRight), - "TrimRightFunc": reflect.ValueOf(bytes.TrimRightFunc), - "TrimSpace": reflect.ValueOf(bytes.TrimSpace), - "TrimSuffix": reflect.ValueOf(bytes.TrimSuffix), - - // type definitions - "Buffer": reflect.ValueOf((*bytes.Buffer)(nil)), - "Reader": reflect.ValueOf((*bytes.Reader)(nil)), - } -} diff --git a/stdlib/go1_17_compress_bzip2.go b/stdlib/go1_17_compress_bzip2.go deleted file mode 100644 index 5911bdc59..000000000 --- a/stdlib/go1_17_compress_bzip2.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "compress/bzip2" - "reflect" -) - -func init() { - Symbols["compress/bzip2/bzip2"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewReader": reflect.ValueOf(bzip2.NewReader), - - // type definitions - "StructuralError": reflect.ValueOf((*bzip2.StructuralError)(nil)), - } -} diff --git a/stdlib/go1_17_compress_flate.go b/stdlib/go1_17_compress_flate.go deleted file mode 100644 index 3c1b18b61..000000000 --- a/stdlib/go1_17_compress_flate.go +++ /dev/null @@ -1,66 +0,0 @@ -// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "compress/flate" - "go/constant" - "go/token" - "io" - "reflect" -) - -func init() { - Symbols["compress/flate/flate"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "NewReader": reflect.ValueOf(flate.NewReader), - "NewReaderDict": reflect.ValueOf(flate.NewReaderDict), - "NewWriter": reflect.ValueOf(flate.NewWriter), - "NewWriterDict": reflect.ValueOf(flate.NewWriterDict), - "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - - // type definitions - "CorruptInputError": reflect.ValueOf((*flate.CorruptInputError)(nil)), - "InternalError": reflect.ValueOf((*flate.InternalError)(nil)), - "ReadError": reflect.ValueOf((*flate.ReadError)(nil)), - "Reader": reflect.ValueOf((*flate.Reader)(nil)), - "Resetter": reflect.ValueOf((*flate.Resetter)(nil)), - "WriteError": reflect.ValueOf((*flate.WriteError)(nil)), - "Writer": reflect.ValueOf((*flate.Writer)(nil)), - - // interface wrapper definitions - "_Reader": reflect.ValueOf((*_compress_flate_Reader)(nil)), - "_Resetter": reflect.ValueOf((*_compress_flate_Resetter)(nil)), - } -} - -// _compress_flate_Reader is an interface wrapper for Reader type -type _compress_flate_Reader struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WReadByte func() (byte, error) -} - -func (W _compress_flate_Reader) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _compress_flate_Reader) ReadByte() (byte, error) { - return W.WReadByte() -} - -// _compress_flate_Resetter is an interface wrapper for Resetter type -type _compress_flate_Resetter struct { - IValue interface{} - WReset func(r io.Reader, dict []byte) error -} - -func (W _compress_flate_Resetter) Reset(r io.Reader, dict []byte) error { - return W.WReset(r, dict) -} diff --git a/stdlib/go1_17_compress_gzip.go b/stdlib/go1_17_compress_gzip.go deleted file mode 100644 index cf27c5d1a..000000000 --- a/stdlib/go1_17_compress_gzip.go +++ /dev/null @@ -1,34 +0,0 @@ -// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "compress/gzip" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["compress/gzip/gzip"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "ErrChecksum": reflect.ValueOf(&gzip.ErrChecksum).Elem(), - "ErrHeader": reflect.ValueOf(&gzip.ErrHeader).Elem(), - "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "NewReader": reflect.ValueOf(gzip.NewReader), - "NewWriter": reflect.ValueOf(gzip.NewWriter), - "NewWriterLevel": reflect.ValueOf(gzip.NewWriterLevel), - "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - - // type definitions - "Header": reflect.ValueOf((*gzip.Header)(nil)), - "Reader": reflect.ValueOf((*gzip.Reader)(nil)), - "Writer": reflect.ValueOf((*gzip.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_compress_lzw.go b/stdlib/go1_17_compress_lzw.go deleted file mode 100644 index 38edb3647..000000000 --- a/stdlib/go1_17_compress_lzw.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "compress/lzw" - "reflect" -) - -func init() { - Symbols["compress/lzw/lzw"] = map[string]reflect.Value{ - // function, constant and variable definitions - "LSB": reflect.ValueOf(lzw.LSB), - "MSB": reflect.ValueOf(lzw.MSB), - "NewReader": reflect.ValueOf(lzw.NewReader), - "NewWriter": reflect.ValueOf(lzw.NewWriter), - - // type definitions - "Order": reflect.ValueOf((*lzw.Order)(nil)), - "Reader": reflect.ValueOf((*lzw.Reader)(nil)), - "Writer": reflect.ValueOf((*lzw.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_compress_zlib.go b/stdlib/go1_17_compress_zlib.go deleted file mode 100644 index b7b9bd0d6..000000000 --- a/stdlib/go1_17_compress_zlib.go +++ /dev/null @@ -1,50 +0,0 @@ -// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "compress/zlib" - "go/constant" - "go/token" - "io" - "reflect" -) - -func init() { - Symbols["compress/zlib/zlib"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "ErrChecksum": reflect.ValueOf(&zlib.ErrChecksum).Elem(), - "ErrDictionary": reflect.ValueOf(&zlib.ErrDictionary).Elem(), - "ErrHeader": reflect.ValueOf(&zlib.ErrHeader).Elem(), - "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "NewReader": reflect.ValueOf(zlib.NewReader), - "NewReaderDict": reflect.ValueOf(zlib.NewReaderDict), - "NewWriter": reflect.ValueOf(zlib.NewWriter), - "NewWriterLevel": reflect.ValueOf(zlib.NewWriterLevel), - "NewWriterLevelDict": reflect.ValueOf(zlib.NewWriterLevelDict), - "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - - // type definitions - "Resetter": reflect.ValueOf((*zlib.Resetter)(nil)), - "Writer": reflect.ValueOf((*zlib.Writer)(nil)), - - // interface wrapper definitions - "_Resetter": reflect.ValueOf((*_compress_zlib_Resetter)(nil)), - } -} - -// _compress_zlib_Resetter is an interface wrapper for Resetter type -type _compress_zlib_Resetter struct { - IValue interface{} - WReset func(r io.Reader, dict []byte) error -} - -func (W _compress_zlib_Resetter) Reset(r io.Reader, dict []byte) error { - return W.WReset(r, dict) -} diff --git a/stdlib/go1_17_container_heap.go b/stdlib/go1_17_container_heap.go deleted file mode 100644 index fc8ca524b..000000000 --- a/stdlib/go1_17_container_heap.go +++ /dev/null @@ -1,54 +0,0 @@ -// Code generated by 'yaegi extract container/heap'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "container/heap" - "reflect" -) - -func init() { - Symbols["container/heap/heap"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Fix": reflect.ValueOf(heap.Fix), - "Init": reflect.ValueOf(heap.Init), - "Pop": reflect.ValueOf(heap.Pop), - "Push": reflect.ValueOf(heap.Push), - "Remove": reflect.ValueOf(heap.Remove), - - // type definitions - "Interface": reflect.ValueOf((*heap.Interface)(nil)), - - // interface wrapper definitions - "_Interface": reflect.ValueOf((*_container_heap_Interface)(nil)), - } -} - -// _container_heap_Interface is an interface wrapper for Interface type -type _container_heap_Interface struct { - IValue interface{} - WLen func() int - WLess func(i int, j int) bool - WPop func() interface{} - WPush func(x interface{}) - WSwap func(i int, j int) -} - -func (W _container_heap_Interface) Len() int { - return W.WLen() -} -func (W _container_heap_Interface) Less(i int, j int) bool { - return W.WLess(i, j) -} -func (W _container_heap_Interface) Pop() interface{} { - return W.WPop() -} -func (W _container_heap_Interface) Push(x interface{}) { - W.WPush(x) -} -func (W _container_heap_Interface) Swap(i int, j int) { - W.WSwap(i, j) -} diff --git a/stdlib/go1_17_container_list.go b/stdlib/go1_17_container_list.go deleted file mode 100644 index 4f17eac78..000000000 --- a/stdlib/go1_17_container_list.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract container/list'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "container/list" - "reflect" -) - -func init() { - Symbols["container/list/list"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(list.New), - - // type definitions - "Element": reflect.ValueOf((*list.Element)(nil)), - "List": reflect.ValueOf((*list.List)(nil)), - } -} diff --git a/stdlib/go1_17_container_ring.go b/stdlib/go1_17_container_ring.go deleted file mode 100644 index aaed92a2a..000000000 --- a/stdlib/go1_17_container_ring.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract container/ring'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "container/ring" - "reflect" -) - -func init() { - Symbols["container/ring/ring"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(ring.New), - - // type definitions - "Ring": reflect.ValueOf((*ring.Ring)(nil)), - } -} diff --git a/stdlib/go1_17_context.go b/stdlib/go1_17_context.go deleted file mode 100644 index 13c8db9c9..000000000 --- a/stdlib/go1_17_context.go +++ /dev/null @@ -1,55 +0,0 @@ -// Code generated by 'yaegi extract context'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "context" - "reflect" - "time" -) - -func init() { - Symbols["context/context"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Background": reflect.ValueOf(context.Background), - "Canceled": reflect.ValueOf(&context.Canceled).Elem(), - "DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(), - "TODO": reflect.ValueOf(context.TODO), - "WithCancel": reflect.ValueOf(context.WithCancel), - "WithDeadline": reflect.ValueOf(context.WithDeadline), - "WithTimeout": reflect.ValueOf(context.WithTimeout), - "WithValue": reflect.ValueOf(context.WithValue), - - // type definitions - "CancelFunc": reflect.ValueOf((*context.CancelFunc)(nil)), - "Context": reflect.ValueOf((*context.Context)(nil)), - - // interface wrapper definitions - "_Context": reflect.ValueOf((*_context_Context)(nil)), - } -} - -// _context_Context is an interface wrapper for Context type -type _context_Context struct { - IValue interface{} - WDeadline func() (deadline time.Time, ok bool) - WDone func() <-chan struct{} - WErr func() error - WValue func(key interface{}) interface{} -} - -func (W _context_Context) Deadline() (deadline time.Time, ok bool) { - return W.WDeadline() -} -func (W _context_Context) Done() <-chan struct{} { - return W.WDone() -} -func (W _context_Context) Err() error { - return W.WErr() -} -func (W _context_Context) Value(key interface{}) interface{} { - return W.WValue(key) -} diff --git a/stdlib/go1_17_crypto.go b/stdlib/go1_17_crypto.go deleted file mode 100644 index aaed53664..000000000 --- a/stdlib/go1_17_crypto.go +++ /dev/null @@ -1,108 +0,0 @@ -// Code generated by 'yaegi extract crypto'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto" - "io" - "reflect" -) - -func init() { - Symbols["crypto/crypto"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BLAKE2b_256": reflect.ValueOf(crypto.BLAKE2b_256), - "BLAKE2b_384": reflect.ValueOf(crypto.BLAKE2b_384), - "BLAKE2b_512": reflect.ValueOf(crypto.BLAKE2b_512), - "BLAKE2s_256": reflect.ValueOf(crypto.BLAKE2s_256), - "MD4": reflect.ValueOf(crypto.MD4), - "MD5": reflect.ValueOf(crypto.MD5), - "MD5SHA1": reflect.ValueOf(crypto.MD5SHA1), - "RIPEMD160": reflect.ValueOf(crypto.RIPEMD160), - "RegisterHash": reflect.ValueOf(crypto.RegisterHash), - "SHA1": reflect.ValueOf(crypto.SHA1), - "SHA224": reflect.ValueOf(crypto.SHA224), - "SHA256": reflect.ValueOf(crypto.SHA256), - "SHA384": reflect.ValueOf(crypto.SHA384), - "SHA3_224": reflect.ValueOf(crypto.SHA3_224), - "SHA3_256": reflect.ValueOf(crypto.SHA3_256), - "SHA3_384": reflect.ValueOf(crypto.SHA3_384), - "SHA3_512": reflect.ValueOf(crypto.SHA3_512), - "SHA512": reflect.ValueOf(crypto.SHA512), - "SHA512_224": reflect.ValueOf(crypto.SHA512_224), - "SHA512_256": reflect.ValueOf(crypto.SHA512_256), - - // type definitions - "Decrypter": reflect.ValueOf((*crypto.Decrypter)(nil)), - "DecrypterOpts": reflect.ValueOf((*crypto.DecrypterOpts)(nil)), - "Hash": reflect.ValueOf((*crypto.Hash)(nil)), - "PrivateKey": reflect.ValueOf((*crypto.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*crypto.PublicKey)(nil)), - "Signer": reflect.ValueOf((*crypto.Signer)(nil)), - "SignerOpts": reflect.ValueOf((*crypto.SignerOpts)(nil)), - - // interface wrapper definitions - "_Decrypter": reflect.ValueOf((*_crypto_Decrypter)(nil)), - "_DecrypterOpts": reflect.ValueOf((*_crypto_DecrypterOpts)(nil)), - "_PrivateKey": reflect.ValueOf((*_crypto_PrivateKey)(nil)), - "_PublicKey": reflect.ValueOf((*_crypto_PublicKey)(nil)), - "_Signer": reflect.ValueOf((*_crypto_Signer)(nil)), - "_SignerOpts": reflect.ValueOf((*_crypto_SignerOpts)(nil)), - } -} - -// _crypto_Decrypter is an interface wrapper for Decrypter type -type _crypto_Decrypter struct { - IValue interface{} - WDecrypt func(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) - WPublic func() crypto.PublicKey -} - -func (W _crypto_Decrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) { - return W.WDecrypt(rand, msg, opts) -} -func (W _crypto_Decrypter) Public() crypto.PublicKey { - return W.WPublic() -} - -// _crypto_DecrypterOpts is an interface wrapper for DecrypterOpts type -type _crypto_DecrypterOpts struct { - IValue interface{} -} - -// _crypto_PrivateKey is an interface wrapper for PrivateKey type -type _crypto_PrivateKey struct { - IValue interface{} -} - -// _crypto_PublicKey is an interface wrapper for PublicKey type -type _crypto_PublicKey struct { - IValue interface{} -} - -// _crypto_Signer is an interface wrapper for Signer type -type _crypto_Signer struct { - IValue interface{} - WPublic func() crypto.PublicKey - WSign func(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) -} - -func (W _crypto_Signer) Public() crypto.PublicKey { - return W.WPublic() -} -func (W _crypto_Signer) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) { - return W.WSign(rand, digest, opts) -} - -// _crypto_SignerOpts is an interface wrapper for SignerOpts type -type _crypto_SignerOpts struct { - IValue interface{} - WHashFunc func() crypto.Hash -} - -func (W _crypto_SignerOpts) HashFunc() crypto.Hash { - return W.WHashFunc() -} diff --git a/stdlib/go1_17_crypto_aes.go b/stdlib/go1_17_crypto_aes.go deleted file mode 100644 index cfa7ad97e..000000000 --- a/stdlib/go1_17_crypto_aes.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/aes" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/aes/aes"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NewCipher": reflect.ValueOf(aes.NewCipher), - - // type definitions - "KeySizeError": reflect.ValueOf((*aes.KeySizeError)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_cipher.go b/stdlib/go1_17_crypto_cipher.go deleted file mode 100644 index 49f5b54e7..000000000 --- a/stdlib/go1_17_crypto_cipher.go +++ /dev/null @@ -1,104 +0,0 @@ -// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/cipher" - "reflect" -) - -func init() { - Symbols["crypto/cipher/cipher"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewCBCDecrypter": reflect.ValueOf(cipher.NewCBCDecrypter), - "NewCBCEncrypter": reflect.ValueOf(cipher.NewCBCEncrypter), - "NewCFBDecrypter": reflect.ValueOf(cipher.NewCFBDecrypter), - "NewCFBEncrypter": reflect.ValueOf(cipher.NewCFBEncrypter), - "NewCTR": reflect.ValueOf(cipher.NewCTR), - "NewGCM": reflect.ValueOf(cipher.NewGCM), - "NewGCMWithNonceSize": reflect.ValueOf(cipher.NewGCMWithNonceSize), - "NewGCMWithTagSize": reflect.ValueOf(cipher.NewGCMWithTagSize), - "NewOFB": reflect.ValueOf(cipher.NewOFB), - - // type definitions - "AEAD": reflect.ValueOf((*cipher.AEAD)(nil)), - "Block": reflect.ValueOf((*cipher.Block)(nil)), - "BlockMode": reflect.ValueOf((*cipher.BlockMode)(nil)), - "Stream": reflect.ValueOf((*cipher.Stream)(nil)), - "StreamReader": reflect.ValueOf((*cipher.StreamReader)(nil)), - "StreamWriter": reflect.ValueOf((*cipher.StreamWriter)(nil)), - - // interface wrapper definitions - "_AEAD": reflect.ValueOf((*_crypto_cipher_AEAD)(nil)), - "_Block": reflect.ValueOf((*_crypto_cipher_Block)(nil)), - "_BlockMode": reflect.ValueOf((*_crypto_cipher_BlockMode)(nil)), - "_Stream": reflect.ValueOf((*_crypto_cipher_Stream)(nil)), - } -} - -// _crypto_cipher_AEAD is an interface wrapper for AEAD type -type _crypto_cipher_AEAD struct { - IValue interface{} - WNonceSize func() int - WOpen func(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) - WOverhead func() int - WSeal func(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte -} - -func (W _crypto_cipher_AEAD) NonceSize() int { - return W.WNonceSize() -} -func (W _crypto_cipher_AEAD) Open(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) { - return W.WOpen(dst, nonce, ciphertext, additionalData) -} -func (W _crypto_cipher_AEAD) Overhead() int { - return W.WOverhead() -} -func (W _crypto_cipher_AEAD) Seal(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte { - return W.WSeal(dst, nonce, plaintext, additionalData) -} - -// _crypto_cipher_Block is an interface wrapper for Block type -type _crypto_cipher_Block struct { - IValue interface{} - WBlockSize func() int - WDecrypt func(dst []byte, src []byte) - WEncrypt func(dst []byte, src []byte) -} - -func (W _crypto_cipher_Block) BlockSize() int { - return W.WBlockSize() -} -func (W _crypto_cipher_Block) Decrypt(dst []byte, src []byte) { - W.WDecrypt(dst, src) -} -func (W _crypto_cipher_Block) Encrypt(dst []byte, src []byte) { - W.WEncrypt(dst, src) -} - -// _crypto_cipher_BlockMode is an interface wrapper for BlockMode type -type _crypto_cipher_BlockMode struct { - IValue interface{} - WBlockSize func() int - WCryptBlocks func(dst []byte, src []byte) -} - -func (W _crypto_cipher_BlockMode) BlockSize() int { - return W.WBlockSize() -} -func (W _crypto_cipher_BlockMode) CryptBlocks(dst []byte, src []byte) { - W.WCryptBlocks(dst, src) -} - -// _crypto_cipher_Stream is an interface wrapper for Stream type -type _crypto_cipher_Stream struct { - IValue interface{} - WXORKeyStream func(dst []byte, src []byte) -} - -func (W _crypto_cipher_Stream) XORKeyStream(dst []byte, src []byte) { - W.WXORKeyStream(dst, src) -} diff --git a/stdlib/go1_17_crypto_des.go b/stdlib/go1_17_crypto_des.go deleted file mode 100644 index ab848fe6b..000000000 --- a/stdlib/go1_17_crypto_des.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/des" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/des/des"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NewCipher": reflect.ValueOf(des.NewCipher), - "NewTripleDESCipher": reflect.ValueOf(des.NewTripleDESCipher), - - // type definitions - "KeySizeError": reflect.ValueOf((*des.KeySizeError)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_dsa.go b/stdlib/go1_17_crypto_dsa.go deleted file mode 100644 index 3d1da4f49..000000000 --- a/stdlib/go1_17_crypto_dsa.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/dsa" - "reflect" -) - -func init() { - Symbols["crypto/dsa/dsa"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrInvalidPublicKey": reflect.ValueOf(&dsa.ErrInvalidPublicKey).Elem(), - "GenerateKey": reflect.ValueOf(dsa.GenerateKey), - "GenerateParameters": reflect.ValueOf(dsa.GenerateParameters), - "L1024N160": reflect.ValueOf(dsa.L1024N160), - "L2048N224": reflect.ValueOf(dsa.L2048N224), - "L2048N256": reflect.ValueOf(dsa.L2048N256), - "L3072N256": reflect.ValueOf(dsa.L3072N256), - "Sign": reflect.ValueOf(dsa.Sign), - "Verify": reflect.ValueOf(dsa.Verify), - - // type definitions - "ParameterSizes": reflect.ValueOf((*dsa.ParameterSizes)(nil)), - "Parameters": reflect.ValueOf((*dsa.Parameters)(nil)), - "PrivateKey": reflect.ValueOf((*dsa.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*dsa.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_ecdsa.go b/stdlib/go1_17_crypto_ecdsa.go deleted file mode 100644 index f75406603..000000000 --- a/stdlib/go1_17_crypto_ecdsa.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/ecdsa" - "reflect" -) - -func init() { - Symbols["crypto/ecdsa/ecdsa"] = map[string]reflect.Value{ - // function, constant and variable definitions - "GenerateKey": reflect.ValueOf(ecdsa.GenerateKey), - "Sign": reflect.ValueOf(ecdsa.Sign), - "SignASN1": reflect.ValueOf(ecdsa.SignASN1), - "Verify": reflect.ValueOf(ecdsa.Verify), - "VerifyASN1": reflect.ValueOf(ecdsa.VerifyASN1), - - // type definitions - "PrivateKey": reflect.ValueOf((*ecdsa.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*ecdsa.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_ed25519.go b/stdlib/go1_17_crypto_ed25519.go deleted file mode 100644 index 7d3ca8d44..000000000 --- a/stdlib/go1_17_crypto_ed25519.go +++ /dev/null @@ -1,31 +0,0 @@ -// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/ed25519" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/ed25519/ed25519"] = map[string]reflect.Value{ - // function, constant and variable definitions - "GenerateKey": reflect.ValueOf(ed25519.GenerateKey), - "NewKeyFromSeed": reflect.ValueOf(ed25519.NewKeyFromSeed), - "PrivateKeySize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PublicKeySize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SeedSize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Sign": reflect.ValueOf(ed25519.Sign), - "SignatureSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Verify": reflect.ValueOf(ed25519.Verify), - - // type definitions - "PrivateKey": reflect.ValueOf((*ed25519.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*ed25519.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_elliptic.go b/stdlib/go1_17_crypto_elliptic.go deleted file mode 100644 index eda39293f..000000000 --- a/stdlib/go1_17_crypto_elliptic.go +++ /dev/null @@ -1,64 +0,0 @@ -// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/elliptic" - "math/big" - "reflect" -) - -func init() { - Symbols["crypto/elliptic/elliptic"] = map[string]reflect.Value{ - // function, constant and variable definitions - "GenerateKey": reflect.ValueOf(elliptic.GenerateKey), - "Marshal": reflect.ValueOf(elliptic.Marshal), - "MarshalCompressed": reflect.ValueOf(elliptic.MarshalCompressed), - "P224": reflect.ValueOf(elliptic.P224), - "P256": reflect.ValueOf(elliptic.P256), - "P384": reflect.ValueOf(elliptic.P384), - "P521": reflect.ValueOf(elliptic.P521), - "Unmarshal": reflect.ValueOf(elliptic.Unmarshal), - "UnmarshalCompressed": reflect.ValueOf(elliptic.UnmarshalCompressed), - - // type definitions - "Curve": reflect.ValueOf((*elliptic.Curve)(nil)), - "CurveParams": reflect.ValueOf((*elliptic.CurveParams)(nil)), - - // interface wrapper definitions - "_Curve": reflect.ValueOf((*_crypto_elliptic_Curve)(nil)), - } -} - -// _crypto_elliptic_Curve is an interface wrapper for Curve type -type _crypto_elliptic_Curve struct { - IValue interface{} - WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) - WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) - WIsOnCurve func(x *big.Int, y *big.Int) bool - WParams func() *elliptic.CurveParams - WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int) - WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) -} - -func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) { - return W.WAdd(x1, y1, x2, y2) -} -func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) { - return W.WDouble(x1, y1) -} -func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { - return W.WIsOnCurve(x, y) -} -func (W _crypto_elliptic_Curve) Params() *elliptic.CurveParams { - return W.WParams() -} -func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) { - return W.WScalarBaseMult(k) -} -func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) { - return W.WScalarMult(x1, y1, k) -} diff --git a/stdlib/go1_17_crypto_hmac.go b/stdlib/go1_17_crypto_hmac.go deleted file mode 100644 index b768b9416..000000000 --- a/stdlib/go1_17_crypto_hmac.go +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/hmac" - "reflect" -) - -func init() { - Symbols["crypto/hmac/hmac"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Equal": reflect.ValueOf(hmac.Equal), - "New": reflect.ValueOf(hmac.New), - } -} diff --git a/stdlib/go1_17_crypto_md5.go b/stdlib/go1_17_crypto_md5.go deleted file mode 100644 index bea98377c..000000000 --- a/stdlib/go1_17_crypto_md5.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/md5" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/md5/md5"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "New": reflect.ValueOf(md5.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Sum": reflect.ValueOf(md5.Sum), - } -} diff --git a/stdlib/go1_17_crypto_rand.go b/stdlib/go1_17_crypto_rand.go deleted file mode 100644 index 3912ab949..000000000 --- a/stdlib/go1_17_crypto_rand.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/rand" - "reflect" -) - -func init() { - Symbols["crypto/rand/rand"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Int": reflect.ValueOf(rand.Int), - "Prime": reflect.ValueOf(rand.Prime), - "Read": reflect.ValueOf(rand.Read), - "Reader": reflect.ValueOf(&rand.Reader).Elem(), - } -} diff --git a/stdlib/go1_17_crypto_rc4.go b/stdlib/go1_17_crypto_rc4.go deleted file mode 100644 index 9f01c2537..000000000 --- a/stdlib/go1_17_crypto_rc4.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/rc4" - "reflect" -) - -func init() { - Symbols["crypto/rc4/rc4"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewCipher": reflect.ValueOf(rc4.NewCipher), - - // type definitions - "Cipher": reflect.ValueOf((*rc4.Cipher)(nil)), - "KeySizeError": reflect.ValueOf((*rc4.KeySizeError)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_rsa.go b/stdlib/go1_17_crypto_rsa.go deleted file mode 100644 index f807c330b..000000000 --- a/stdlib/go1_17_crypto_rsa.go +++ /dev/null @@ -1,44 +0,0 @@ -// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/rsa" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/rsa/rsa"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DecryptOAEP": reflect.ValueOf(rsa.DecryptOAEP), - "DecryptPKCS1v15": reflect.ValueOf(rsa.DecryptPKCS1v15), - "DecryptPKCS1v15SessionKey": reflect.ValueOf(rsa.DecryptPKCS1v15SessionKey), - "EncryptOAEP": reflect.ValueOf(rsa.EncryptOAEP), - "EncryptPKCS1v15": reflect.ValueOf(rsa.EncryptPKCS1v15), - "ErrDecryption": reflect.ValueOf(&rsa.ErrDecryption).Elem(), - "ErrMessageTooLong": reflect.ValueOf(&rsa.ErrMessageTooLong).Elem(), - "ErrVerification": reflect.ValueOf(&rsa.ErrVerification).Elem(), - "GenerateKey": reflect.ValueOf(rsa.GenerateKey), - "GenerateMultiPrimeKey": reflect.ValueOf(rsa.GenerateMultiPrimeKey), - "PSSSaltLengthAuto": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PSSSaltLengthEqualsHash": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "SignPKCS1v15": reflect.ValueOf(rsa.SignPKCS1v15), - "SignPSS": reflect.ValueOf(rsa.SignPSS), - "VerifyPKCS1v15": reflect.ValueOf(rsa.VerifyPKCS1v15), - "VerifyPSS": reflect.ValueOf(rsa.VerifyPSS), - - // type definitions - "CRTValue": reflect.ValueOf((*rsa.CRTValue)(nil)), - "OAEPOptions": reflect.ValueOf((*rsa.OAEPOptions)(nil)), - "PKCS1v15DecryptOptions": reflect.ValueOf((*rsa.PKCS1v15DecryptOptions)(nil)), - "PSSOptions": reflect.ValueOf((*rsa.PSSOptions)(nil)), - "PrecomputedValues": reflect.ValueOf((*rsa.PrecomputedValues)(nil)), - "PrivateKey": reflect.ValueOf((*rsa.PrivateKey)(nil)), - "PublicKey": reflect.ValueOf((*rsa.PublicKey)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_sha1.go b/stdlib/go1_17_crypto_sha1.go deleted file mode 100644 index db2329efb..000000000 --- a/stdlib/go1_17_crypto_sha1.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/sha1" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/sha1/sha1"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "New": reflect.ValueOf(sha1.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "Sum": reflect.ValueOf(sha1.Sum), - } -} diff --git a/stdlib/go1_17_crypto_sha256.go b/stdlib/go1_17_crypto_sha256.go deleted file mode 100644 index 421967bc2..000000000 --- a/stdlib/go1_17_crypto_sha256.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/sha256" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/sha256/sha256"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "New": reflect.ValueOf(sha256.New), - "New224": reflect.ValueOf(sha256.New224), - "Size": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "Sum224": reflect.ValueOf(sha256.Sum224), - "Sum256": reflect.ValueOf(sha256.Sum256), - } -} diff --git a/stdlib/go1_17_crypto_sha512.go b/stdlib/go1_17_crypto_sha512.go deleted file mode 100644 index 84506b486..000000000 --- a/stdlib/go1_17_crypto_sha512.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/sha512" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/sha512/sha512"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "New": reflect.ValueOf(sha512.New), - "New384": reflect.ValueOf(sha512.New384), - "New512_224": reflect.ValueOf(sha512.New512_224), - "New512_256": reflect.ValueOf(sha512.New512_256), - "Size": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "Size256": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Size384": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "Sum384": reflect.ValueOf(sha512.Sum384), - "Sum512": reflect.ValueOf(sha512.Sum512), - "Sum512_224": reflect.ValueOf(sha512.Sum512_224), - "Sum512_256": reflect.ValueOf(sha512.Sum512_256), - } -} diff --git a/stdlib/go1_17_crypto_subtle.go b/stdlib/go1_17_crypto_subtle.go deleted file mode 100644 index ca6187d2c..000000000 --- a/stdlib/go1_17_crypto_subtle.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/subtle" - "reflect" -) - -func init() { - Symbols["crypto/subtle/subtle"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ConstantTimeByteEq": reflect.ValueOf(subtle.ConstantTimeByteEq), - "ConstantTimeCompare": reflect.ValueOf(subtle.ConstantTimeCompare), - "ConstantTimeCopy": reflect.ValueOf(subtle.ConstantTimeCopy), - "ConstantTimeEq": reflect.ValueOf(subtle.ConstantTimeEq), - "ConstantTimeLessOrEq": reflect.ValueOf(subtle.ConstantTimeLessOrEq), - "ConstantTimeSelect": reflect.ValueOf(subtle.ConstantTimeSelect), - } -} diff --git a/stdlib/go1_17_crypto_tls.go b/stdlib/go1_17_crypto_tls.go deleted file mode 100644 index 99a86e1f6..000000000 --- a/stdlib/go1_17_crypto_tls.go +++ /dev/null @@ -1,122 +0,0 @@ -// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/tls" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["crypto/tls/tls"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CipherSuiteName": reflect.ValueOf(tls.CipherSuiteName), - "CipherSuites": reflect.ValueOf(tls.CipherSuites), - "Client": reflect.ValueOf(tls.Client), - "CurveP256": reflect.ValueOf(tls.CurveP256), - "CurveP384": reflect.ValueOf(tls.CurveP384), - "CurveP521": reflect.ValueOf(tls.CurveP521), - "Dial": reflect.ValueOf(tls.Dial), - "DialWithDialer": reflect.ValueOf(tls.DialWithDialer), - "ECDSAWithP256AndSHA256": reflect.ValueOf(tls.ECDSAWithP256AndSHA256), - "ECDSAWithP384AndSHA384": reflect.ValueOf(tls.ECDSAWithP384AndSHA384), - "ECDSAWithP521AndSHA512": reflect.ValueOf(tls.ECDSAWithP521AndSHA512), - "ECDSAWithSHA1": reflect.ValueOf(tls.ECDSAWithSHA1), - "Ed25519": reflect.ValueOf(tls.Ed25519), - "InsecureCipherSuites": reflect.ValueOf(tls.InsecureCipherSuites), - "Listen": reflect.ValueOf(tls.Listen), - "LoadX509KeyPair": reflect.ValueOf(tls.LoadX509KeyPair), - "NewLRUClientSessionCache": reflect.ValueOf(tls.NewLRUClientSessionCache), - "NewListener": reflect.ValueOf(tls.NewListener), - "NoClientCert": reflect.ValueOf(tls.NoClientCert), - "PKCS1WithSHA1": reflect.ValueOf(tls.PKCS1WithSHA1), - "PKCS1WithSHA256": reflect.ValueOf(tls.PKCS1WithSHA256), - "PKCS1WithSHA384": reflect.ValueOf(tls.PKCS1WithSHA384), - "PKCS1WithSHA512": reflect.ValueOf(tls.PKCS1WithSHA512), - "PSSWithSHA256": reflect.ValueOf(tls.PSSWithSHA256), - "PSSWithSHA384": reflect.ValueOf(tls.PSSWithSHA384), - "PSSWithSHA512": reflect.ValueOf(tls.PSSWithSHA512), - "RenegotiateFreelyAsClient": reflect.ValueOf(tls.RenegotiateFreelyAsClient), - "RenegotiateNever": reflect.ValueOf(tls.RenegotiateNever), - "RenegotiateOnceAsClient": reflect.ValueOf(tls.RenegotiateOnceAsClient), - "RequestClientCert": reflect.ValueOf(tls.RequestClientCert), - "RequireAndVerifyClientCert": reflect.ValueOf(tls.RequireAndVerifyClientCert), - "RequireAnyClientCert": reflect.ValueOf(tls.RequireAnyClientCert), - "Server": reflect.ValueOf(tls.Server), - "TLS_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_AES_128_GCM_SHA256), - "TLS_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_AES_256_GCM_SHA384), - "TLS_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_CHACHA20_POLY1305_SHA256), - "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA), - "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256), - "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256), - "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA), - "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384), - "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305), - "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256), - "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA), - "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA), - "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA), - "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256), - "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256), - "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA), - "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384), - "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305), - "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256), - "TLS_ECDHE_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA), - "TLS_FALLBACK_SCSV": reflect.ValueOf(tls.TLS_FALLBACK_SCSV), - "TLS_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA), - "TLS_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA), - "TLS_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA256), - "TLS_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_GCM_SHA256), - "TLS_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_CBC_SHA), - "TLS_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_GCM_SHA384), - "TLS_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_RC4_128_SHA), - "VerifyClientCertIfGiven": reflect.ValueOf(tls.VerifyClientCertIfGiven), - "VersionSSL30": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "VersionTLS10": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "VersionTLS11": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "VersionTLS12": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "VersionTLS13": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "X25519": reflect.ValueOf(tls.X25519), - "X509KeyPair": reflect.ValueOf(tls.X509KeyPair), - - // type definitions - "Certificate": reflect.ValueOf((*tls.Certificate)(nil)), - "CertificateRequestInfo": reflect.ValueOf((*tls.CertificateRequestInfo)(nil)), - "CipherSuite": reflect.ValueOf((*tls.CipherSuite)(nil)), - "ClientAuthType": reflect.ValueOf((*tls.ClientAuthType)(nil)), - "ClientHelloInfo": reflect.ValueOf((*tls.ClientHelloInfo)(nil)), - "ClientSessionCache": reflect.ValueOf((*tls.ClientSessionCache)(nil)), - "ClientSessionState": reflect.ValueOf((*tls.ClientSessionState)(nil)), - "Config": reflect.ValueOf((*tls.Config)(nil)), - "Conn": reflect.ValueOf((*tls.Conn)(nil)), - "ConnectionState": reflect.ValueOf((*tls.ConnectionState)(nil)), - "CurveID": reflect.ValueOf((*tls.CurveID)(nil)), - "Dialer": reflect.ValueOf((*tls.Dialer)(nil)), - "RecordHeaderError": reflect.ValueOf((*tls.RecordHeaderError)(nil)), - "RenegotiationSupport": reflect.ValueOf((*tls.RenegotiationSupport)(nil)), - "SignatureScheme": reflect.ValueOf((*tls.SignatureScheme)(nil)), - - // interface wrapper definitions - "_ClientSessionCache": reflect.ValueOf((*_crypto_tls_ClientSessionCache)(nil)), - } -} - -// _crypto_tls_ClientSessionCache is an interface wrapper for ClientSessionCache type -type _crypto_tls_ClientSessionCache struct { - IValue interface{} - WGet func(sessionKey string) (session *tls.ClientSessionState, ok bool) - WPut func(sessionKey string, cs *tls.ClientSessionState) -} - -func (W _crypto_tls_ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessionState, ok bool) { - return W.WGet(sessionKey) -} -func (W _crypto_tls_ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) { - W.WPut(sessionKey, cs) -} diff --git a/stdlib/go1_17_crypto_x509.go b/stdlib/go1_17_crypto_x509.go deleted file mode 100644 index d8b750246..000000000 --- a/stdlib/go1_17_crypto_x509.go +++ /dev/null @@ -1,122 +0,0 @@ -// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/x509" - "reflect" -) - -func init() { - Symbols["crypto/x509/x509"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CANotAuthorizedForExtKeyUsage": reflect.ValueOf(x509.CANotAuthorizedForExtKeyUsage), - "CANotAuthorizedForThisName": reflect.ValueOf(x509.CANotAuthorizedForThisName), - "CreateCertificate": reflect.ValueOf(x509.CreateCertificate), - "CreateCertificateRequest": reflect.ValueOf(x509.CreateCertificateRequest), - "CreateRevocationList": reflect.ValueOf(x509.CreateRevocationList), - "DSA": reflect.ValueOf(x509.DSA), - "DSAWithSHA1": reflect.ValueOf(x509.DSAWithSHA1), - "DSAWithSHA256": reflect.ValueOf(x509.DSAWithSHA256), - "DecryptPEMBlock": reflect.ValueOf(x509.DecryptPEMBlock), - "ECDSA": reflect.ValueOf(x509.ECDSA), - "ECDSAWithSHA1": reflect.ValueOf(x509.ECDSAWithSHA1), - "ECDSAWithSHA256": reflect.ValueOf(x509.ECDSAWithSHA256), - "ECDSAWithSHA384": reflect.ValueOf(x509.ECDSAWithSHA384), - "ECDSAWithSHA512": reflect.ValueOf(x509.ECDSAWithSHA512), - "Ed25519": reflect.ValueOf(x509.Ed25519), - "EncryptPEMBlock": reflect.ValueOf(x509.EncryptPEMBlock), - "ErrUnsupportedAlgorithm": reflect.ValueOf(&x509.ErrUnsupportedAlgorithm).Elem(), - "Expired": reflect.ValueOf(x509.Expired), - "ExtKeyUsageAny": reflect.ValueOf(x509.ExtKeyUsageAny), - "ExtKeyUsageClientAuth": reflect.ValueOf(x509.ExtKeyUsageClientAuth), - "ExtKeyUsageCodeSigning": reflect.ValueOf(x509.ExtKeyUsageCodeSigning), - "ExtKeyUsageEmailProtection": reflect.ValueOf(x509.ExtKeyUsageEmailProtection), - "ExtKeyUsageIPSECEndSystem": reflect.ValueOf(x509.ExtKeyUsageIPSECEndSystem), - "ExtKeyUsageIPSECTunnel": reflect.ValueOf(x509.ExtKeyUsageIPSECTunnel), - "ExtKeyUsageIPSECUser": reflect.ValueOf(x509.ExtKeyUsageIPSECUser), - "ExtKeyUsageMicrosoftCommercialCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftCommercialCodeSigning), - "ExtKeyUsageMicrosoftKernelCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftKernelCodeSigning), - "ExtKeyUsageMicrosoftServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageMicrosoftServerGatedCrypto), - "ExtKeyUsageNetscapeServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageNetscapeServerGatedCrypto), - "ExtKeyUsageOCSPSigning": reflect.ValueOf(x509.ExtKeyUsageOCSPSigning), - "ExtKeyUsageServerAuth": reflect.ValueOf(x509.ExtKeyUsageServerAuth), - "ExtKeyUsageTimeStamping": reflect.ValueOf(x509.ExtKeyUsageTimeStamping), - "IncompatibleUsage": reflect.ValueOf(x509.IncompatibleUsage), - "IncorrectPasswordError": reflect.ValueOf(&x509.IncorrectPasswordError).Elem(), - "IsEncryptedPEMBlock": reflect.ValueOf(x509.IsEncryptedPEMBlock), - "KeyUsageCRLSign": reflect.ValueOf(x509.KeyUsageCRLSign), - "KeyUsageCertSign": reflect.ValueOf(x509.KeyUsageCertSign), - "KeyUsageContentCommitment": reflect.ValueOf(x509.KeyUsageContentCommitment), - "KeyUsageDataEncipherment": reflect.ValueOf(x509.KeyUsageDataEncipherment), - "KeyUsageDecipherOnly": reflect.ValueOf(x509.KeyUsageDecipherOnly), - "KeyUsageDigitalSignature": reflect.ValueOf(x509.KeyUsageDigitalSignature), - "KeyUsageEncipherOnly": reflect.ValueOf(x509.KeyUsageEncipherOnly), - "KeyUsageKeyAgreement": reflect.ValueOf(x509.KeyUsageKeyAgreement), - "KeyUsageKeyEncipherment": reflect.ValueOf(x509.KeyUsageKeyEncipherment), - "MD2WithRSA": reflect.ValueOf(x509.MD2WithRSA), - "MD5WithRSA": reflect.ValueOf(x509.MD5WithRSA), - "MarshalECPrivateKey": reflect.ValueOf(x509.MarshalECPrivateKey), - "MarshalPKCS1PrivateKey": reflect.ValueOf(x509.MarshalPKCS1PrivateKey), - "MarshalPKCS1PublicKey": reflect.ValueOf(x509.MarshalPKCS1PublicKey), - "MarshalPKCS8PrivateKey": reflect.ValueOf(x509.MarshalPKCS8PrivateKey), - "MarshalPKIXPublicKey": reflect.ValueOf(x509.MarshalPKIXPublicKey), - "NameConstraintsWithoutSANs": reflect.ValueOf(x509.NameConstraintsWithoutSANs), - "NameMismatch": reflect.ValueOf(x509.NameMismatch), - "NewCertPool": reflect.ValueOf(x509.NewCertPool), - "NotAuthorizedToSign": reflect.ValueOf(x509.NotAuthorizedToSign), - "PEMCipher3DES": reflect.ValueOf(x509.PEMCipher3DES), - "PEMCipherAES128": reflect.ValueOf(x509.PEMCipherAES128), - "PEMCipherAES192": reflect.ValueOf(x509.PEMCipherAES192), - "PEMCipherAES256": reflect.ValueOf(x509.PEMCipherAES256), - "PEMCipherDES": reflect.ValueOf(x509.PEMCipherDES), - "ParseCRL": reflect.ValueOf(x509.ParseCRL), - "ParseCertificate": reflect.ValueOf(x509.ParseCertificate), - "ParseCertificateRequest": reflect.ValueOf(x509.ParseCertificateRequest), - "ParseCertificates": reflect.ValueOf(x509.ParseCertificates), - "ParseDERCRL": reflect.ValueOf(x509.ParseDERCRL), - "ParseECPrivateKey": reflect.ValueOf(x509.ParseECPrivateKey), - "ParsePKCS1PrivateKey": reflect.ValueOf(x509.ParsePKCS1PrivateKey), - "ParsePKCS1PublicKey": reflect.ValueOf(x509.ParsePKCS1PublicKey), - "ParsePKCS8PrivateKey": reflect.ValueOf(x509.ParsePKCS8PrivateKey), - "ParsePKIXPublicKey": reflect.ValueOf(x509.ParsePKIXPublicKey), - "PureEd25519": reflect.ValueOf(x509.PureEd25519), - "RSA": reflect.ValueOf(x509.RSA), - "SHA1WithRSA": reflect.ValueOf(x509.SHA1WithRSA), - "SHA256WithRSA": reflect.ValueOf(x509.SHA256WithRSA), - "SHA256WithRSAPSS": reflect.ValueOf(x509.SHA256WithRSAPSS), - "SHA384WithRSA": reflect.ValueOf(x509.SHA384WithRSA), - "SHA384WithRSAPSS": reflect.ValueOf(x509.SHA384WithRSAPSS), - "SHA512WithRSA": reflect.ValueOf(x509.SHA512WithRSA), - "SHA512WithRSAPSS": reflect.ValueOf(x509.SHA512WithRSAPSS), - "SystemCertPool": reflect.ValueOf(x509.SystemCertPool), - "TooManyConstraints": reflect.ValueOf(x509.TooManyConstraints), - "TooManyIntermediates": reflect.ValueOf(x509.TooManyIntermediates), - "UnconstrainedName": reflect.ValueOf(x509.UnconstrainedName), - "UnknownPublicKeyAlgorithm": reflect.ValueOf(x509.UnknownPublicKeyAlgorithm), - "UnknownSignatureAlgorithm": reflect.ValueOf(x509.UnknownSignatureAlgorithm), - - // type definitions - "CertPool": reflect.ValueOf((*x509.CertPool)(nil)), - "Certificate": reflect.ValueOf((*x509.Certificate)(nil)), - "CertificateInvalidError": reflect.ValueOf((*x509.CertificateInvalidError)(nil)), - "CertificateRequest": reflect.ValueOf((*x509.CertificateRequest)(nil)), - "ConstraintViolationError": reflect.ValueOf((*x509.ConstraintViolationError)(nil)), - "ExtKeyUsage": reflect.ValueOf((*x509.ExtKeyUsage)(nil)), - "HostnameError": reflect.ValueOf((*x509.HostnameError)(nil)), - "InsecureAlgorithmError": reflect.ValueOf((*x509.InsecureAlgorithmError)(nil)), - "InvalidReason": reflect.ValueOf((*x509.InvalidReason)(nil)), - "KeyUsage": reflect.ValueOf((*x509.KeyUsage)(nil)), - "PEMCipher": reflect.ValueOf((*x509.PEMCipher)(nil)), - "PublicKeyAlgorithm": reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)), - "RevocationList": reflect.ValueOf((*x509.RevocationList)(nil)), - "SignatureAlgorithm": reflect.ValueOf((*x509.SignatureAlgorithm)(nil)), - "SystemRootsError": reflect.ValueOf((*x509.SystemRootsError)(nil)), - "UnhandledCriticalExtension": reflect.ValueOf((*x509.UnhandledCriticalExtension)(nil)), - "UnknownAuthorityError": reflect.ValueOf((*x509.UnknownAuthorityError)(nil)), - "VerifyOptions": reflect.ValueOf((*x509.VerifyOptions)(nil)), - } -} diff --git a/stdlib/go1_17_crypto_x509_pkix.go b/stdlib/go1_17_crypto_x509_pkix.go deleted file mode 100644 index 3d3bfa273..000000000 --- a/stdlib/go1_17_crypto_x509_pkix.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "crypto/x509/pkix" - "reflect" -) - -func init() { - Symbols["crypto/x509/pkix/pkix"] = map[string]reflect.Value{ - // type definitions - "AlgorithmIdentifier": reflect.ValueOf((*pkix.AlgorithmIdentifier)(nil)), - "AttributeTypeAndValue": reflect.ValueOf((*pkix.AttributeTypeAndValue)(nil)), - "AttributeTypeAndValueSET": reflect.ValueOf((*pkix.AttributeTypeAndValueSET)(nil)), - "CertificateList": reflect.ValueOf((*pkix.CertificateList)(nil)), - "Extension": reflect.ValueOf((*pkix.Extension)(nil)), - "Name": reflect.ValueOf((*pkix.Name)(nil)), - "RDNSequence": reflect.ValueOf((*pkix.RDNSequence)(nil)), - "RelativeDistinguishedNameSET": reflect.ValueOf((*pkix.RelativeDistinguishedNameSET)(nil)), - "RevokedCertificate": reflect.ValueOf((*pkix.RevokedCertificate)(nil)), - "TBSCertificateList": reflect.ValueOf((*pkix.TBSCertificateList)(nil)), - } -} diff --git a/stdlib/go1_17_database_sql.go b/stdlib/go1_17_database_sql.go deleted file mode 100644 index f99572454..000000000 --- a/stdlib/go1_17_database_sql.go +++ /dev/null @@ -1,86 +0,0 @@ -// Code generated by 'yaegi extract database/sql'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "database/sql" - "reflect" -) - -func init() { - Symbols["database/sql/sql"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Drivers": reflect.ValueOf(sql.Drivers), - "ErrConnDone": reflect.ValueOf(&sql.ErrConnDone).Elem(), - "ErrNoRows": reflect.ValueOf(&sql.ErrNoRows).Elem(), - "ErrTxDone": reflect.ValueOf(&sql.ErrTxDone).Elem(), - "LevelDefault": reflect.ValueOf(sql.LevelDefault), - "LevelLinearizable": reflect.ValueOf(sql.LevelLinearizable), - "LevelReadCommitted": reflect.ValueOf(sql.LevelReadCommitted), - "LevelReadUncommitted": reflect.ValueOf(sql.LevelReadUncommitted), - "LevelRepeatableRead": reflect.ValueOf(sql.LevelRepeatableRead), - "LevelSerializable": reflect.ValueOf(sql.LevelSerializable), - "LevelSnapshot": reflect.ValueOf(sql.LevelSnapshot), - "LevelWriteCommitted": reflect.ValueOf(sql.LevelWriteCommitted), - "Named": reflect.ValueOf(sql.Named), - "Open": reflect.ValueOf(sql.Open), - "OpenDB": reflect.ValueOf(sql.OpenDB), - "Register": reflect.ValueOf(sql.Register), - - // type definitions - "ColumnType": reflect.ValueOf((*sql.ColumnType)(nil)), - "Conn": reflect.ValueOf((*sql.Conn)(nil)), - "DB": reflect.ValueOf((*sql.DB)(nil)), - "DBStats": reflect.ValueOf((*sql.DBStats)(nil)), - "IsolationLevel": reflect.ValueOf((*sql.IsolationLevel)(nil)), - "NamedArg": reflect.ValueOf((*sql.NamedArg)(nil)), - "NullBool": reflect.ValueOf((*sql.NullBool)(nil)), - "NullByte": reflect.ValueOf((*sql.NullByte)(nil)), - "NullFloat64": reflect.ValueOf((*sql.NullFloat64)(nil)), - "NullInt16": reflect.ValueOf((*sql.NullInt16)(nil)), - "NullInt32": reflect.ValueOf((*sql.NullInt32)(nil)), - "NullInt64": reflect.ValueOf((*sql.NullInt64)(nil)), - "NullString": reflect.ValueOf((*sql.NullString)(nil)), - "NullTime": reflect.ValueOf((*sql.NullTime)(nil)), - "Out": reflect.ValueOf((*sql.Out)(nil)), - "RawBytes": reflect.ValueOf((*sql.RawBytes)(nil)), - "Result": reflect.ValueOf((*sql.Result)(nil)), - "Row": reflect.ValueOf((*sql.Row)(nil)), - "Rows": reflect.ValueOf((*sql.Rows)(nil)), - "Scanner": reflect.ValueOf((*sql.Scanner)(nil)), - "Stmt": reflect.ValueOf((*sql.Stmt)(nil)), - "Tx": reflect.ValueOf((*sql.Tx)(nil)), - "TxOptions": reflect.ValueOf((*sql.TxOptions)(nil)), - - // interface wrapper definitions - "_Result": reflect.ValueOf((*_database_sql_Result)(nil)), - "_Scanner": reflect.ValueOf((*_database_sql_Scanner)(nil)), - } -} - -// _database_sql_Result is an interface wrapper for Result type -type _database_sql_Result struct { - IValue interface{} - WLastInsertId func() (int64, error) - WRowsAffected func() (int64, error) -} - -func (W _database_sql_Result) LastInsertId() (int64, error) { - return W.WLastInsertId() -} -func (W _database_sql_Result) RowsAffected() (int64, error) { - return W.WRowsAffected() -} - -// _database_sql_Scanner is an interface wrapper for Scanner type -type _database_sql_Scanner struct { - IValue interface{} - WScan func(src interface{}) error -} - -func (W _database_sql_Scanner) Scan(src interface{}) error { - return W.WScan(src) -} diff --git a/stdlib/go1_17_database_sql_driver.go b/stdlib/go1_17_database_sql_driver.go deleted file mode 100644 index eb0e90122..000000000 --- a/stdlib/go1_17_database_sql_driver.go +++ /dev/null @@ -1,509 +0,0 @@ -// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "context" - "database/sql/driver" - "reflect" -) - -func init() { - Symbols["database/sql/driver/driver"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Bool": reflect.ValueOf(&driver.Bool).Elem(), - "DefaultParameterConverter": reflect.ValueOf(&driver.DefaultParameterConverter).Elem(), - "ErrBadConn": reflect.ValueOf(&driver.ErrBadConn).Elem(), - "ErrRemoveArgument": reflect.ValueOf(&driver.ErrRemoveArgument).Elem(), - "ErrSkip": reflect.ValueOf(&driver.ErrSkip).Elem(), - "Int32": reflect.ValueOf(&driver.Int32).Elem(), - "IsScanValue": reflect.ValueOf(driver.IsScanValue), - "IsValue": reflect.ValueOf(driver.IsValue), - "ResultNoRows": reflect.ValueOf(&driver.ResultNoRows).Elem(), - "String": reflect.ValueOf(&driver.String).Elem(), - - // type definitions - "ColumnConverter": reflect.ValueOf((*driver.ColumnConverter)(nil)), - "Conn": reflect.ValueOf((*driver.Conn)(nil)), - "ConnBeginTx": reflect.ValueOf((*driver.ConnBeginTx)(nil)), - "ConnPrepareContext": reflect.ValueOf((*driver.ConnPrepareContext)(nil)), - "Connector": reflect.ValueOf((*driver.Connector)(nil)), - "Driver": reflect.ValueOf((*driver.Driver)(nil)), - "DriverContext": reflect.ValueOf((*driver.DriverContext)(nil)), - "Execer": reflect.ValueOf((*driver.Execer)(nil)), - "ExecerContext": reflect.ValueOf((*driver.ExecerContext)(nil)), - "IsolationLevel": reflect.ValueOf((*driver.IsolationLevel)(nil)), - "NamedValue": reflect.ValueOf((*driver.NamedValue)(nil)), - "NamedValueChecker": reflect.ValueOf((*driver.NamedValueChecker)(nil)), - "NotNull": reflect.ValueOf((*driver.NotNull)(nil)), - "Null": reflect.ValueOf((*driver.Null)(nil)), - "Pinger": reflect.ValueOf((*driver.Pinger)(nil)), - "Queryer": reflect.ValueOf((*driver.Queryer)(nil)), - "QueryerContext": reflect.ValueOf((*driver.QueryerContext)(nil)), - "Result": reflect.ValueOf((*driver.Result)(nil)), - "Rows": reflect.ValueOf((*driver.Rows)(nil)), - "RowsAffected": reflect.ValueOf((*driver.RowsAffected)(nil)), - "RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*driver.RowsColumnTypeDatabaseTypeName)(nil)), - "RowsColumnTypeLength": reflect.ValueOf((*driver.RowsColumnTypeLength)(nil)), - "RowsColumnTypeNullable": reflect.ValueOf((*driver.RowsColumnTypeNullable)(nil)), - "RowsColumnTypePrecisionScale": reflect.ValueOf((*driver.RowsColumnTypePrecisionScale)(nil)), - "RowsColumnTypeScanType": reflect.ValueOf((*driver.RowsColumnTypeScanType)(nil)), - "RowsNextResultSet": reflect.ValueOf((*driver.RowsNextResultSet)(nil)), - "SessionResetter": reflect.ValueOf((*driver.SessionResetter)(nil)), - "Stmt": reflect.ValueOf((*driver.Stmt)(nil)), - "StmtExecContext": reflect.ValueOf((*driver.StmtExecContext)(nil)), - "StmtQueryContext": reflect.ValueOf((*driver.StmtQueryContext)(nil)), - "Tx": reflect.ValueOf((*driver.Tx)(nil)), - "TxOptions": reflect.ValueOf((*driver.TxOptions)(nil)), - "Validator": reflect.ValueOf((*driver.Validator)(nil)), - "Value": reflect.ValueOf((*driver.Value)(nil)), - "ValueConverter": reflect.ValueOf((*driver.ValueConverter)(nil)), - "Valuer": reflect.ValueOf((*driver.Valuer)(nil)), - - // interface wrapper definitions - "_ColumnConverter": reflect.ValueOf((*_database_sql_driver_ColumnConverter)(nil)), - "_Conn": reflect.ValueOf((*_database_sql_driver_Conn)(nil)), - "_ConnBeginTx": reflect.ValueOf((*_database_sql_driver_ConnBeginTx)(nil)), - "_ConnPrepareContext": reflect.ValueOf((*_database_sql_driver_ConnPrepareContext)(nil)), - "_Connector": reflect.ValueOf((*_database_sql_driver_Connector)(nil)), - "_Driver": reflect.ValueOf((*_database_sql_driver_Driver)(nil)), - "_DriverContext": reflect.ValueOf((*_database_sql_driver_DriverContext)(nil)), - "_Execer": reflect.ValueOf((*_database_sql_driver_Execer)(nil)), - "_ExecerContext": reflect.ValueOf((*_database_sql_driver_ExecerContext)(nil)), - "_NamedValueChecker": reflect.ValueOf((*_database_sql_driver_NamedValueChecker)(nil)), - "_Pinger": reflect.ValueOf((*_database_sql_driver_Pinger)(nil)), - "_Queryer": reflect.ValueOf((*_database_sql_driver_Queryer)(nil)), - "_QueryerContext": reflect.ValueOf((*_database_sql_driver_QueryerContext)(nil)), - "_Result": reflect.ValueOf((*_database_sql_driver_Result)(nil)), - "_Rows": reflect.ValueOf((*_database_sql_driver_Rows)(nil)), - "_RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeDatabaseTypeName)(nil)), - "_RowsColumnTypeLength": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeLength)(nil)), - "_RowsColumnTypeNullable": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeNullable)(nil)), - "_RowsColumnTypePrecisionScale": reflect.ValueOf((*_database_sql_driver_RowsColumnTypePrecisionScale)(nil)), - "_RowsColumnTypeScanType": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeScanType)(nil)), - "_RowsNextResultSet": reflect.ValueOf((*_database_sql_driver_RowsNextResultSet)(nil)), - "_SessionResetter": reflect.ValueOf((*_database_sql_driver_SessionResetter)(nil)), - "_Stmt": reflect.ValueOf((*_database_sql_driver_Stmt)(nil)), - "_StmtExecContext": reflect.ValueOf((*_database_sql_driver_StmtExecContext)(nil)), - "_StmtQueryContext": reflect.ValueOf((*_database_sql_driver_StmtQueryContext)(nil)), - "_Tx": reflect.ValueOf((*_database_sql_driver_Tx)(nil)), - "_Validator": reflect.ValueOf((*_database_sql_driver_Validator)(nil)), - "_Value": reflect.ValueOf((*_database_sql_driver_Value)(nil)), - "_ValueConverter": reflect.ValueOf((*_database_sql_driver_ValueConverter)(nil)), - "_Valuer": reflect.ValueOf((*_database_sql_driver_Valuer)(nil)), - } -} - -// _database_sql_driver_ColumnConverter is an interface wrapper for ColumnConverter type -type _database_sql_driver_ColumnConverter struct { - IValue interface{} - WColumnConverter func(idx int) driver.ValueConverter -} - -func (W _database_sql_driver_ColumnConverter) ColumnConverter(idx int) driver.ValueConverter { - return W.WColumnConverter(idx) -} - -// _database_sql_driver_Conn is an interface wrapper for Conn type -type _database_sql_driver_Conn struct { - IValue interface{} - WBegin func() (driver.Tx, error) - WClose func() error - WPrepare func(query string) (driver.Stmt, error) -} - -func (W _database_sql_driver_Conn) Begin() (driver.Tx, error) { - return W.WBegin() -} -func (W _database_sql_driver_Conn) Close() error { - return W.WClose() -} -func (W _database_sql_driver_Conn) Prepare(query string) (driver.Stmt, error) { - return W.WPrepare(query) -} - -// _database_sql_driver_ConnBeginTx is an interface wrapper for ConnBeginTx type -type _database_sql_driver_ConnBeginTx struct { - IValue interface{} - WBeginTx func(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) -} - -func (W _database_sql_driver_ConnBeginTx) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) { - return W.WBeginTx(ctx, opts) -} - -// _database_sql_driver_ConnPrepareContext is an interface wrapper for ConnPrepareContext type -type _database_sql_driver_ConnPrepareContext struct { - IValue interface{} - WPrepareContext func(ctx context.Context, query string) (driver.Stmt, error) -} - -func (W _database_sql_driver_ConnPrepareContext) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) { - return W.WPrepareContext(ctx, query) -} - -// _database_sql_driver_Connector is an interface wrapper for Connector type -type _database_sql_driver_Connector struct { - IValue interface{} - WConnect func(a0 context.Context) (driver.Conn, error) - WDriver func() driver.Driver -} - -func (W _database_sql_driver_Connector) Connect(a0 context.Context) (driver.Conn, error) { - return W.WConnect(a0) -} -func (W _database_sql_driver_Connector) Driver() driver.Driver { - return W.WDriver() -} - -// _database_sql_driver_Driver is an interface wrapper for Driver type -type _database_sql_driver_Driver struct { - IValue interface{} - WOpen func(name string) (driver.Conn, error) -} - -func (W _database_sql_driver_Driver) Open(name string) (driver.Conn, error) { - return W.WOpen(name) -} - -// _database_sql_driver_DriverContext is an interface wrapper for DriverContext type -type _database_sql_driver_DriverContext struct { - IValue interface{} - WOpenConnector func(name string) (driver.Connector, error) -} - -func (W _database_sql_driver_DriverContext) OpenConnector(name string) (driver.Connector, error) { - return W.WOpenConnector(name) -} - -// _database_sql_driver_Execer is an interface wrapper for Execer type -type _database_sql_driver_Execer struct { - IValue interface{} - WExec func(query string, args []driver.Value) (driver.Result, error) -} - -func (W _database_sql_driver_Execer) Exec(query string, args []driver.Value) (driver.Result, error) { - return W.WExec(query, args) -} - -// _database_sql_driver_ExecerContext is an interface wrapper for ExecerContext type -type _database_sql_driver_ExecerContext struct { - IValue interface{} - WExecContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) -} - -func (W _database_sql_driver_ExecerContext) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) { - return W.WExecContext(ctx, query, args) -} - -// _database_sql_driver_NamedValueChecker is an interface wrapper for NamedValueChecker type -type _database_sql_driver_NamedValueChecker struct { - IValue interface{} - WCheckNamedValue func(a0 *driver.NamedValue) error -} - -func (W _database_sql_driver_NamedValueChecker) CheckNamedValue(a0 *driver.NamedValue) error { - return W.WCheckNamedValue(a0) -} - -// _database_sql_driver_Pinger is an interface wrapper for Pinger type -type _database_sql_driver_Pinger struct { - IValue interface{} - WPing func(ctx context.Context) error -} - -func (W _database_sql_driver_Pinger) Ping(ctx context.Context) error { - return W.WPing(ctx) -} - -// _database_sql_driver_Queryer is an interface wrapper for Queryer type -type _database_sql_driver_Queryer struct { - IValue interface{} - WQuery func(query string, args []driver.Value) (driver.Rows, error) -} - -func (W _database_sql_driver_Queryer) Query(query string, args []driver.Value) (driver.Rows, error) { - return W.WQuery(query, args) -} - -// _database_sql_driver_QueryerContext is an interface wrapper for QueryerContext type -type _database_sql_driver_QueryerContext struct { - IValue interface{} - WQueryContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) -} - -func (W _database_sql_driver_QueryerContext) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) { - return W.WQueryContext(ctx, query, args) -} - -// _database_sql_driver_Result is an interface wrapper for Result type -type _database_sql_driver_Result struct { - IValue interface{} - WLastInsertId func() (int64, error) - WRowsAffected func() (int64, error) -} - -func (W _database_sql_driver_Result) LastInsertId() (int64, error) { - return W.WLastInsertId() -} -func (W _database_sql_driver_Result) RowsAffected() (int64, error) { - return W.WRowsAffected() -} - -// _database_sql_driver_Rows is an interface wrapper for Rows type -type _database_sql_driver_Rows struct { - IValue interface{} - WClose func() error - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_Rows) Close() error { - return W.WClose() -} -func (W _database_sql_driver_Rows) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_Rows) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeDatabaseTypeName is an interface wrapper for RowsColumnTypeDatabaseTypeName type -type _database_sql_driver_RowsColumnTypeDatabaseTypeName struct { - IValue interface{} - WClose func() error - WColumnTypeDatabaseTypeName func(index int) string - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) ColumnTypeDatabaseTypeName(index int) string { - return W.WColumnTypeDatabaseTypeName(index) -} -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeLength is an interface wrapper for RowsColumnTypeLength type -type _database_sql_driver_RowsColumnTypeLength struct { - IValue interface{} - WClose func() error - WColumnTypeLength func(index int) (length int64, ok bool) - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeLength) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeLength) ColumnTypeLength(index int) (length int64, ok bool) { - return W.WColumnTypeLength(index) -} -func (W _database_sql_driver_RowsColumnTypeLength) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeLength) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeNullable is an interface wrapper for RowsColumnTypeNullable type -type _database_sql_driver_RowsColumnTypeNullable struct { - IValue interface{} - WClose func() error - WColumnTypeNullable func(index int) (nullable bool, ok bool) - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeNullable) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeNullable) ColumnTypeNullable(index int) (nullable bool, ok bool) { - return W.WColumnTypeNullable(index) -} -func (W _database_sql_driver_RowsColumnTypeNullable) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeNullable) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypePrecisionScale is an interface wrapper for RowsColumnTypePrecisionScale type -type _database_sql_driver_RowsColumnTypePrecisionScale struct { - IValue interface{} - WClose func() error - WColumnTypePrecisionScale func(index int) (precision int64, scale int64, ok bool) - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypePrecisionScale) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypePrecisionScale) ColumnTypePrecisionScale(index int) (precision int64, scale int64, ok bool) { - return W.WColumnTypePrecisionScale(index) -} -func (W _database_sql_driver_RowsColumnTypePrecisionScale) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypePrecisionScale) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsColumnTypeScanType is an interface wrapper for RowsColumnTypeScanType type -type _database_sql_driver_RowsColumnTypeScanType struct { - IValue interface{} - WClose func() error - WColumnTypeScanType func(index int) reflect.Type - WColumns func() []string - WNext func(dest []driver.Value) error -} - -func (W _database_sql_driver_RowsColumnTypeScanType) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsColumnTypeScanType) ColumnTypeScanType(index int) reflect.Type { - return W.WColumnTypeScanType(index) -} -func (W _database_sql_driver_RowsColumnTypeScanType) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsColumnTypeScanType) Next(dest []driver.Value) error { - return W.WNext(dest) -} - -// _database_sql_driver_RowsNextResultSet is an interface wrapper for RowsNextResultSet type -type _database_sql_driver_RowsNextResultSet struct { - IValue interface{} - WClose func() error - WColumns func() []string - WHasNextResultSet func() bool - WNext func(dest []driver.Value) error - WNextResultSet func() error -} - -func (W _database_sql_driver_RowsNextResultSet) Close() error { - return W.WClose() -} -func (W _database_sql_driver_RowsNextResultSet) Columns() []string { - return W.WColumns() -} -func (W _database_sql_driver_RowsNextResultSet) HasNextResultSet() bool { - return W.WHasNextResultSet() -} -func (W _database_sql_driver_RowsNextResultSet) Next(dest []driver.Value) error { - return W.WNext(dest) -} -func (W _database_sql_driver_RowsNextResultSet) NextResultSet() error { - return W.WNextResultSet() -} - -// _database_sql_driver_SessionResetter is an interface wrapper for SessionResetter type -type _database_sql_driver_SessionResetter struct { - IValue interface{} - WResetSession func(ctx context.Context) error -} - -func (W _database_sql_driver_SessionResetter) ResetSession(ctx context.Context) error { - return W.WResetSession(ctx) -} - -// _database_sql_driver_Stmt is an interface wrapper for Stmt type -type _database_sql_driver_Stmt struct { - IValue interface{} - WClose func() error - WExec func(args []driver.Value) (driver.Result, error) - WNumInput func() int - WQuery func(args []driver.Value) (driver.Rows, error) -} - -func (W _database_sql_driver_Stmt) Close() error { - return W.WClose() -} -func (W _database_sql_driver_Stmt) Exec(args []driver.Value) (driver.Result, error) { - return W.WExec(args) -} -func (W _database_sql_driver_Stmt) NumInput() int { - return W.WNumInput() -} -func (W _database_sql_driver_Stmt) Query(args []driver.Value) (driver.Rows, error) { - return W.WQuery(args) -} - -// _database_sql_driver_StmtExecContext is an interface wrapper for StmtExecContext type -type _database_sql_driver_StmtExecContext struct { - IValue interface{} - WExecContext func(ctx context.Context, args []driver.NamedValue) (driver.Result, error) -} - -func (W _database_sql_driver_StmtExecContext) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) { - return W.WExecContext(ctx, args) -} - -// _database_sql_driver_StmtQueryContext is an interface wrapper for StmtQueryContext type -type _database_sql_driver_StmtQueryContext struct { - IValue interface{} - WQueryContext func(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) -} - -func (W _database_sql_driver_StmtQueryContext) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { - return W.WQueryContext(ctx, args) -} - -// _database_sql_driver_Tx is an interface wrapper for Tx type -type _database_sql_driver_Tx struct { - IValue interface{} - WCommit func() error - WRollback func() error -} - -func (W _database_sql_driver_Tx) Commit() error { - return W.WCommit() -} -func (W _database_sql_driver_Tx) Rollback() error { - return W.WRollback() -} - -// _database_sql_driver_Validator is an interface wrapper for Validator type -type _database_sql_driver_Validator struct { - IValue interface{} - WIsValid func() bool -} - -func (W _database_sql_driver_Validator) IsValid() bool { - return W.WIsValid() -} - -// _database_sql_driver_Value is an interface wrapper for Value type -type _database_sql_driver_Value struct { - IValue interface{} -} - -// _database_sql_driver_ValueConverter is an interface wrapper for ValueConverter type -type _database_sql_driver_ValueConverter struct { - IValue interface{} - WConvertValue func(v interface{}) (driver.Value, error) -} - -func (W _database_sql_driver_ValueConverter) ConvertValue(v interface{}) (driver.Value, error) { - return W.WConvertValue(v) -} - -// _database_sql_driver_Valuer is an interface wrapper for Valuer type -type _database_sql_driver_Valuer struct { - IValue interface{} - WValue func() (driver.Value, error) -} - -func (W _database_sql_driver_Valuer) Value() (driver.Value, error) { - return W.WValue() -} diff --git a/stdlib/go1_17_debug_dwarf.go b/stdlib/go1_17_debug_dwarf.go deleted file mode 100644 index a2e429cef..000000000 --- a/stdlib/go1_17_debug_dwarf.go +++ /dev/null @@ -1,292 +0,0 @@ -// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "debug/dwarf" - "reflect" -) - -func init() { - Symbols["debug/dwarf/dwarf"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AttrAbstractOrigin": reflect.ValueOf(dwarf.AttrAbstractOrigin), - "AttrAccessibility": reflect.ValueOf(dwarf.AttrAccessibility), - "AttrAddrBase": reflect.ValueOf(dwarf.AttrAddrBase), - "AttrAddrClass": reflect.ValueOf(dwarf.AttrAddrClass), - "AttrAlignment": reflect.ValueOf(dwarf.AttrAlignment), - "AttrAllocated": reflect.ValueOf(dwarf.AttrAllocated), - "AttrArtificial": reflect.ValueOf(dwarf.AttrArtificial), - "AttrAssociated": reflect.ValueOf(dwarf.AttrAssociated), - "AttrBaseTypes": reflect.ValueOf(dwarf.AttrBaseTypes), - "AttrBinaryScale": reflect.ValueOf(dwarf.AttrBinaryScale), - "AttrBitOffset": reflect.ValueOf(dwarf.AttrBitOffset), - "AttrBitSize": reflect.ValueOf(dwarf.AttrBitSize), - "AttrByteSize": reflect.ValueOf(dwarf.AttrByteSize), - "AttrCallAllCalls": reflect.ValueOf(dwarf.AttrCallAllCalls), - "AttrCallAllSourceCalls": reflect.ValueOf(dwarf.AttrCallAllSourceCalls), - "AttrCallAllTailCalls": reflect.ValueOf(dwarf.AttrCallAllTailCalls), - "AttrCallColumn": reflect.ValueOf(dwarf.AttrCallColumn), - "AttrCallDataLocation": reflect.ValueOf(dwarf.AttrCallDataLocation), - "AttrCallDataValue": reflect.ValueOf(dwarf.AttrCallDataValue), - "AttrCallFile": reflect.ValueOf(dwarf.AttrCallFile), - "AttrCallLine": reflect.ValueOf(dwarf.AttrCallLine), - "AttrCallOrigin": reflect.ValueOf(dwarf.AttrCallOrigin), - "AttrCallPC": reflect.ValueOf(dwarf.AttrCallPC), - "AttrCallParameter": reflect.ValueOf(dwarf.AttrCallParameter), - "AttrCallReturnPC": reflect.ValueOf(dwarf.AttrCallReturnPC), - "AttrCallTailCall": reflect.ValueOf(dwarf.AttrCallTailCall), - "AttrCallTarget": reflect.ValueOf(dwarf.AttrCallTarget), - "AttrCallTargetClobbered": reflect.ValueOf(dwarf.AttrCallTargetClobbered), - "AttrCallValue": reflect.ValueOf(dwarf.AttrCallValue), - "AttrCalling": reflect.ValueOf(dwarf.AttrCalling), - "AttrCommonRef": reflect.ValueOf(dwarf.AttrCommonRef), - "AttrCompDir": reflect.ValueOf(dwarf.AttrCompDir), - "AttrConstExpr": reflect.ValueOf(dwarf.AttrConstExpr), - "AttrConstValue": reflect.ValueOf(dwarf.AttrConstValue), - "AttrContainingType": reflect.ValueOf(dwarf.AttrContainingType), - "AttrCount": reflect.ValueOf(dwarf.AttrCount), - "AttrDataBitOffset": reflect.ValueOf(dwarf.AttrDataBitOffset), - "AttrDataLocation": reflect.ValueOf(dwarf.AttrDataLocation), - "AttrDataMemberLoc": reflect.ValueOf(dwarf.AttrDataMemberLoc), - "AttrDecimalScale": reflect.ValueOf(dwarf.AttrDecimalScale), - "AttrDecimalSign": reflect.ValueOf(dwarf.AttrDecimalSign), - "AttrDeclColumn": reflect.ValueOf(dwarf.AttrDeclColumn), - "AttrDeclFile": reflect.ValueOf(dwarf.AttrDeclFile), - "AttrDeclLine": reflect.ValueOf(dwarf.AttrDeclLine), - "AttrDeclaration": reflect.ValueOf(dwarf.AttrDeclaration), - "AttrDefaultValue": reflect.ValueOf(dwarf.AttrDefaultValue), - "AttrDefaulted": reflect.ValueOf(dwarf.AttrDefaulted), - "AttrDeleted": reflect.ValueOf(dwarf.AttrDeleted), - "AttrDescription": reflect.ValueOf(dwarf.AttrDescription), - "AttrDigitCount": reflect.ValueOf(dwarf.AttrDigitCount), - "AttrDiscr": reflect.ValueOf(dwarf.AttrDiscr), - "AttrDiscrList": reflect.ValueOf(dwarf.AttrDiscrList), - "AttrDiscrValue": reflect.ValueOf(dwarf.AttrDiscrValue), - "AttrDwoName": reflect.ValueOf(dwarf.AttrDwoName), - "AttrElemental": reflect.ValueOf(dwarf.AttrElemental), - "AttrEncoding": reflect.ValueOf(dwarf.AttrEncoding), - "AttrEndianity": reflect.ValueOf(dwarf.AttrEndianity), - "AttrEntrypc": reflect.ValueOf(dwarf.AttrEntrypc), - "AttrEnumClass": reflect.ValueOf(dwarf.AttrEnumClass), - "AttrExplicit": reflect.ValueOf(dwarf.AttrExplicit), - "AttrExportSymbols": reflect.ValueOf(dwarf.AttrExportSymbols), - "AttrExtension": reflect.ValueOf(dwarf.AttrExtension), - "AttrExternal": reflect.ValueOf(dwarf.AttrExternal), - "AttrFrameBase": reflect.ValueOf(dwarf.AttrFrameBase), - "AttrFriend": reflect.ValueOf(dwarf.AttrFriend), - "AttrHighpc": reflect.ValueOf(dwarf.AttrHighpc), - "AttrIdentifierCase": reflect.ValueOf(dwarf.AttrIdentifierCase), - "AttrImport": reflect.ValueOf(dwarf.AttrImport), - "AttrInline": reflect.ValueOf(dwarf.AttrInline), - "AttrIsOptional": reflect.ValueOf(dwarf.AttrIsOptional), - "AttrLanguage": reflect.ValueOf(dwarf.AttrLanguage), - "AttrLinkageName": reflect.ValueOf(dwarf.AttrLinkageName), - "AttrLocation": reflect.ValueOf(dwarf.AttrLocation), - "AttrLoclistsBase": reflect.ValueOf(dwarf.AttrLoclistsBase), - "AttrLowerBound": reflect.ValueOf(dwarf.AttrLowerBound), - "AttrLowpc": reflect.ValueOf(dwarf.AttrLowpc), - "AttrMacroInfo": reflect.ValueOf(dwarf.AttrMacroInfo), - "AttrMacros": reflect.ValueOf(dwarf.AttrMacros), - "AttrMainSubprogram": reflect.ValueOf(dwarf.AttrMainSubprogram), - "AttrMutable": reflect.ValueOf(dwarf.AttrMutable), - "AttrName": reflect.ValueOf(dwarf.AttrName), - "AttrNamelistItem": reflect.ValueOf(dwarf.AttrNamelistItem), - "AttrNoreturn": reflect.ValueOf(dwarf.AttrNoreturn), - "AttrObjectPointer": reflect.ValueOf(dwarf.AttrObjectPointer), - "AttrOrdering": reflect.ValueOf(dwarf.AttrOrdering), - "AttrPictureString": reflect.ValueOf(dwarf.AttrPictureString), - "AttrPriority": reflect.ValueOf(dwarf.AttrPriority), - "AttrProducer": reflect.ValueOf(dwarf.AttrProducer), - "AttrPrototyped": reflect.ValueOf(dwarf.AttrPrototyped), - "AttrPure": reflect.ValueOf(dwarf.AttrPure), - "AttrRanges": reflect.ValueOf(dwarf.AttrRanges), - "AttrRank": reflect.ValueOf(dwarf.AttrRank), - "AttrRecursive": reflect.ValueOf(dwarf.AttrRecursive), - "AttrReference": reflect.ValueOf(dwarf.AttrReference), - "AttrReturnAddr": reflect.ValueOf(dwarf.AttrReturnAddr), - "AttrRnglistsBase": reflect.ValueOf(dwarf.AttrRnglistsBase), - "AttrRvalueReference": reflect.ValueOf(dwarf.AttrRvalueReference), - "AttrSegment": reflect.ValueOf(dwarf.AttrSegment), - "AttrSibling": reflect.ValueOf(dwarf.AttrSibling), - "AttrSignature": reflect.ValueOf(dwarf.AttrSignature), - "AttrSmall": reflect.ValueOf(dwarf.AttrSmall), - "AttrSpecification": reflect.ValueOf(dwarf.AttrSpecification), - "AttrStartScope": reflect.ValueOf(dwarf.AttrStartScope), - "AttrStaticLink": reflect.ValueOf(dwarf.AttrStaticLink), - "AttrStmtList": reflect.ValueOf(dwarf.AttrStmtList), - "AttrStrOffsetsBase": reflect.ValueOf(dwarf.AttrStrOffsetsBase), - "AttrStride": reflect.ValueOf(dwarf.AttrStride), - "AttrStrideSize": reflect.ValueOf(dwarf.AttrStrideSize), - "AttrStringLength": reflect.ValueOf(dwarf.AttrStringLength), - "AttrStringLengthBitSize": reflect.ValueOf(dwarf.AttrStringLengthBitSize), - "AttrStringLengthByteSize": reflect.ValueOf(dwarf.AttrStringLengthByteSize), - "AttrThreadsScaled": reflect.ValueOf(dwarf.AttrThreadsScaled), - "AttrTrampoline": reflect.ValueOf(dwarf.AttrTrampoline), - "AttrType": reflect.ValueOf(dwarf.AttrType), - "AttrUpperBound": reflect.ValueOf(dwarf.AttrUpperBound), - "AttrUseLocation": reflect.ValueOf(dwarf.AttrUseLocation), - "AttrUseUTF8": reflect.ValueOf(dwarf.AttrUseUTF8), - "AttrVarParam": reflect.ValueOf(dwarf.AttrVarParam), - "AttrVirtuality": reflect.ValueOf(dwarf.AttrVirtuality), - "AttrVisibility": reflect.ValueOf(dwarf.AttrVisibility), - "AttrVtableElemLoc": reflect.ValueOf(dwarf.AttrVtableElemLoc), - "ClassAddrPtr": reflect.ValueOf(dwarf.ClassAddrPtr), - "ClassAddress": reflect.ValueOf(dwarf.ClassAddress), - "ClassBlock": reflect.ValueOf(dwarf.ClassBlock), - "ClassConstant": reflect.ValueOf(dwarf.ClassConstant), - "ClassExprLoc": reflect.ValueOf(dwarf.ClassExprLoc), - "ClassFlag": reflect.ValueOf(dwarf.ClassFlag), - "ClassLinePtr": reflect.ValueOf(dwarf.ClassLinePtr), - "ClassLocList": reflect.ValueOf(dwarf.ClassLocList), - "ClassLocListPtr": reflect.ValueOf(dwarf.ClassLocListPtr), - "ClassMacPtr": reflect.ValueOf(dwarf.ClassMacPtr), - "ClassRangeListPtr": reflect.ValueOf(dwarf.ClassRangeListPtr), - "ClassReference": reflect.ValueOf(dwarf.ClassReference), - "ClassReferenceAlt": reflect.ValueOf(dwarf.ClassReferenceAlt), - "ClassReferenceSig": reflect.ValueOf(dwarf.ClassReferenceSig), - "ClassRngList": reflect.ValueOf(dwarf.ClassRngList), - "ClassRngListsPtr": reflect.ValueOf(dwarf.ClassRngListsPtr), - "ClassStrOffsetsPtr": reflect.ValueOf(dwarf.ClassStrOffsetsPtr), - "ClassString": reflect.ValueOf(dwarf.ClassString), - "ClassStringAlt": reflect.ValueOf(dwarf.ClassStringAlt), - "ClassUnknown": reflect.ValueOf(dwarf.ClassUnknown), - "ErrUnknownPC": reflect.ValueOf(&dwarf.ErrUnknownPC).Elem(), - "New": reflect.ValueOf(dwarf.New), - "TagAccessDeclaration": reflect.ValueOf(dwarf.TagAccessDeclaration), - "TagArrayType": reflect.ValueOf(dwarf.TagArrayType), - "TagAtomicType": reflect.ValueOf(dwarf.TagAtomicType), - "TagBaseType": reflect.ValueOf(dwarf.TagBaseType), - "TagCallSite": reflect.ValueOf(dwarf.TagCallSite), - "TagCallSiteParameter": reflect.ValueOf(dwarf.TagCallSiteParameter), - "TagCatchDwarfBlock": reflect.ValueOf(dwarf.TagCatchDwarfBlock), - "TagClassType": reflect.ValueOf(dwarf.TagClassType), - "TagCoarrayType": reflect.ValueOf(dwarf.TagCoarrayType), - "TagCommonDwarfBlock": reflect.ValueOf(dwarf.TagCommonDwarfBlock), - "TagCommonInclusion": reflect.ValueOf(dwarf.TagCommonInclusion), - "TagCompileUnit": reflect.ValueOf(dwarf.TagCompileUnit), - "TagCondition": reflect.ValueOf(dwarf.TagCondition), - "TagConstType": reflect.ValueOf(dwarf.TagConstType), - "TagConstant": reflect.ValueOf(dwarf.TagConstant), - "TagDwarfProcedure": reflect.ValueOf(dwarf.TagDwarfProcedure), - "TagDynamicType": reflect.ValueOf(dwarf.TagDynamicType), - "TagEntryPoint": reflect.ValueOf(dwarf.TagEntryPoint), - "TagEnumerationType": reflect.ValueOf(dwarf.TagEnumerationType), - "TagEnumerator": reflect.ValueOf(dwarf.TagEnumerator), - "TagFileType": reflect.ValueOf(dwarf.TagFileType), - "TagFormalParameter": reflect.ValueOf(dwarf.TagFormalParameter), - "TagFriend": reflect.ValueOf(dwarf.TagFriend), - "TagGenericSubrange": reflect.ValueOf(dwarf.TagGenericSubrange), - "TagImmutableType": reflect.ValueOf(dwarf.TagImmutableType), - "TagImportedDeclaration": reflect.ValueOf(dwarf.TagImportedDeclaration), - "TagImportedModule": reflect.ValueOf(dwarf.TagImportedModule), - "TagImportedUnit": reflect.ValueOf(dwarf.TagImportedUnit), - "TagInheritance": reflect.ValueOf(dwarf.TagInheritance), - "TagInlinedSubroutine": reflect.ValueOf(dwarf.TagInlinedSubroutine), - "TagInterfaceType": reflect.ValueOf(dwarf.TagInterfaceType), - "TagLabel": reflect.ValueOf(dwarf.TagLabel), - "TagLexDwarfBlock": reflect.ValueOf(dwarf.TagLexDwarfBlock), - "TagMember": reflect.ValueOf(dwarf.TagMember), - "TagModule": reflect.ValueOf(dwarf.TagModule), - "TagMutableType": reflect.ValueOf(dwarf.TagMutableType), - "TagNamelist": reflect.ValueOf(dwarf.TagNamelist), - "TagNamelistItem": reflect.ValueOf(dwarf.TagNamelistItem), - "TagNamespace": reflect.ValueOf(dwarf.TagNamespace), - "TagPackedType": reflect.ValueOf(dwarf.TagPackedType), - "TagPartialUnit": reflect.ValueOf(dwarf.TagPartialUnit), - "TagPointerType": reflect.ValueOf(dwarf.TagPointerType), - "TagPtrToMemberType": reflect.ValueOf(dwarf.TagPtrToMemberType), - "TagReferenceType": reflect.ValueOf(dwarf.TagReferenceType), - "TagRestrictType": reflect.ValueOf(dwarf.TagRestrictType), - "TagRvalueReferenceType": reflect.ValueOf(dwarf.TagRvalueReferenceType), - "TagSetType": reflect.ValueOf(dwarf.TagSetType), - "TagSharedType": reflect.ValueOf(dwarf.TagSharedType), - "TagSkeletonUnit": reflect.ValueOf(dwarf.TagSkeletonUnit), - "TagStringType": reflect.ValueOf(dwarf.TagStringType), - "TagStructType": reflect.ValueOf(dwarf.TagStructType), - "TagSubprogram": reflect.ValueOf(dwarf.TagSubprogram), - "TagSubrangeType": reflect.ValueOf(dwarf.TagSubrangeType), - "TagSubroutineType": reflect.ValueOf(dwarf.TagSubroutineType), - "TagTemplateAlias": reflect.ValueOf(dwarf.TagTemplateAlias), - "TagTemplateTypeParameter": reflect.ValueOf(dwarf.TagTemplateTypeParameter), - "TagTemplateValueParameter": reflect.ValueOf(dwarf.TagTemplateValueParameter), - "TagThrownType": reflect.ValueOf(dwarf.TagThrownType), - "TagTryDwarfBlock": reflect.ValueOf(dwarf.TagTryDwarfBlock), - "TagTypeUnit": reflect.ValueOf(dwarf.TagTypeUnit), - "TagTypedef": reflect.ValueOf(dwarf.TagTypedef), - "TagUnionType": reflect.ValueOf(dwarf.TagUnionType), - "TagUnspecifiedParameters": reflect.ValueOf(dwarf.TagUnspecifiedParameters), - "TagUnspecifiedType": reflect.ValueOf(dwarf.TagUnspecifiedType), - "TagVariable": reflect.ValueOf(dwarf.TagVariable), - "TagVariant": reflect.ValueOf(dwarf.TagVariant), - "TagVariantPart": reflect.ValueOf(dwarf.TagVariantPart), - "TagVolatileType": reflect.ValueOf(dwarf.TagVolatileType), - "TagWithStmt": reflect.ValueOf(dwarf.TagWithStmt), - - // type definitions - "AddrType": reflect.ValueOf((*dwarf.AddrType)(nil)), - "ArrayType": reflect.ValueOf((*dwarf.ArrayType)(nil)), - "Attr": reflect.ValueOf((*dwarf.Attr)(nil)), - "BasicType": reflect.ValueOf((*dwarf.BasicType)(nil)), - "BoolType": reflect.ValueOf((*dwarf.BoolType)(nil)), - "CharType": reflect.ValueOf((*dwarf.CharType)(nil)), - "Class": reflect.ValueOf((*dwarf.Class)(nil)), - "CommonType": reflect.ValueOf((*dwarf.CommonType)(nil)), - "ComplexType": reflect.ValueOf((*dwarf.ComplexType)(nil)), - "Data": reflect.ValueOf((*dwarf.Data)(nil)), - "DecodeError": reflect.ValueOf((*dwarf.DecodeError)(nil)), - "DotDotDotType": reflect.ValueOf((*dwarf.DotDotDotType)(nil)), - "Entry": reflect.ValueOf((*dwarf.Entry)(nil)), - "EnumType": reflect.ValueOf((*dwarf.EnumType)(nil)), - "EnumValue": reflect.ValueOf((*dwarf.EnumValue)(nil)), - "Field": reflect.ValueOf((*dwarf.Field)(nil)), - "FloatType": reflect.ValueOf((*dwarf.FloatType)(nil)), - "FuncType": reflect.ValueOf((*dwarf.FuncType)(nil)), - "IntType": reflect.ValueOf((*dwarf.IntType)(nil)), - "LineEntry": reflect.ValueOf((*dwarf.LineEntry)(nil)), - "LineFile": reflect.ValueOf((*dwarf.LineFile)(nil)), - "LineReader": reflect.ValueOf((*dwarf.LineReader)(nil)), - "LineReaderPos": reflect.ValueOf((*dwarf.LineReaderPos)(nil)), - "Offset": reflect.ValueOf((*dwarf.Offset)(nil)), - "PtrType": reflect.ValueOf((*dwarf.PtrType)(nil)), - "QualType": reflect.ValueOf((*dwarf.QualType)(nil)), - "Reader": reflect.ValueOf((*dwarf.Reader)(nil)), - "StructField": reflect.ValueOf((*dwarf.StructField)(nil)), - "StructType": reflect.ValueOf((*dwarf.StructType)(nil)), - "Tag": reflect.ValueOf((*dwarf.Tag)(nil)), - "Type": reflect.ValueOf((*dwarf.Type)(nil)), - "TypedefType": reflect.ValueOf((*dwarf.TypedefType)(nil)), - "UcharType": reflect.ValueOf((*dwarf.UcharType)(nil)), - "UintType": reflect.ValueOf((*dwarf.UintType)(nil)), - "UnspecifiedType": reflect.ValueOf((*dwarf.UnspecifiedType)(nil)), - "UnsupportedType": reflect.ValueOf((*dwarf.UnsupportedType)(nil)), - "VoidType": reflect.ValueOf((*dwarf.VoidType)(nil)), - - // interface wrapper definitions - "_Type": reflect.ValueOf((*_debug_dwarf_Type)(nil)), - } -} - -// _debug_dwarf_Type is an interface wrapper for Type type -type _debug_dwarf_Type struct { - IValue interface{} - WCommon func() *dwarf.CommonType - WSize func() int64 - WString func() string -} - -func (W _debug_dwarf_Type) Common() *dwarf.CommonType { - return W.WCommon() -} -func (W _debug_dwarf_Type) Size() int64 { - return W.WSize() -} -func (W _debug_dwarf_Type) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_debug_elf.go b/stdlib/go1_17_debug_elf.go deleted file mode 100644 index 363aa3c14..000000000 --- a/stdlib/go1_17_debug_elf.go +++ /dev/null @@ -1,1365 +0,0 @@ -// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "debug/elf" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["debug/elf/elf"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ARM_MAGIC_TRAMP_NUMBER": reflect.ValueOf(constant.MakeFromLiteral("1543503875", token.INT, 0)), - "COMPRESS_HIOS": reflect.ValueOf(elf.COMPRESS_HIOS), - "COMPRESS_HIPROC": reflect.ValueOf(elf.COMPRESS_HIPROC), - "COMPRESS_LOOS": reflect.ValueOf(elf.COMPRESS_LOOS), - "COMPRESS_LOPROC": reflect.ValueOf(elf.COMPRESS_LOPROC), - "COMPRESS_ZLIB": reflect.ValueOf(elf.COMPRESS_ZLIB), - "DF_BIND_NOW": reflect.ValueOf(elf.DF_BIND_NOW), - "DF_ORIGIN": reflect.ValueOf(elf.DF_ORIGIN), - "DF_STATIC_TLS": reflect.ValueOf(elf.DF_STATIC_TLS), - "DF_SYMBOLIC": reflect.ValueOf(elf.DF_SYMBOLIC), - "DF_TEXTREL": reflect.ValueOf(elf.DF_TEXTREL), - "DT_ADDRRNGHI": reflect.ValueOf(elf.DT_ADDRRNGHI), - "DT_ADDRRNGLO": reflect.ValueOf(elf.DT_ADDRRNGLO), - "DT_AUDIT": reflect.ValueOf(elf.DT_AUDIT), - "DT_AUXILIARY": reflect.ValueOf(elf.DT_AUXILIARY), - "DT_BIND_NOW": reflect.ValueOf(elf.DT_BIND_NOW), - "DT_CHECKSUM": reflect.ValueOf(elf.DT_CHECKSUM), - "DT_CONFIG": reflect.ValueOf(elf.DT_CONFIG), - "DT_DEBUG": reflect.ValueOf(elf.DT_DEBUG), - "DT_DEPAUDIT": reflect.ValueOf(elf.DT_DEPAUDIT), - "DT_ENCODING": reflect.ValueOf(elf.DT_ENCODING), - "DT_FEATURE": reflect.ValueOf(elf.DT_FEATURE), - "DT_FILTER": reflect.ValueOf(elf.DT_FILTER), - "DT_FINI": reflect.ValueOf(elf.DT_FINI), - "DT_FINI_ARRAY": reflect.ValueOf(elf.DT_FINI_ARRAY), - "DT_FINI_ARRAYSZ": reflect.ValueOf(elf.DT_FINI_ARRAYSZ), - "DT_FLAGS": reflect.ValueOf(elf.DT_FLAGS), - "DT_FLAGS_1": reflect.ValueOf(elf.DT_FLAGS_1), - "DT_GNU_CONFLICT": reflect.ValueOf(elf.DT_GNU_CONFLICT), - "DT_GNU_CONFLICTSZ": reflect.ValueOf(elf.DT_GNU_CONFLICTSZ), - "DT_GNU_HASH": reflect.ValueOf(elf.DT_GNU_HASH), - "DT_GNU_LIBLIST": reflect.ValueOf(elf.DT_GNU_LIBLIST), - "DT_GNU_LIBLISTSZ": reflect.ValueOf(elf.DT_GNU_LIBLISTSZ), - "DT_GNU_PRELINKED": reflect.ValueOf(elf.DT_GNU_PRELINKED), - "DT_HASH": reflect.ValueOf(elf.DT_HASH), - "DT_HIOS": reflect.ValueOf(elf.DT_HIOS), - "DT_HIPROC": reflect.ValueOf(elf.DT_HIPROC), - "DT_INIT": reflect.ValueOf(elf.DT_INIT), - "DT_INIT_ARRAY": reflect.ValueOf(elf.DT_INIT_ARRAY), - "DT_INIT_ARRAYSZ": reflect.ValueOf(elf.DT_INIT_ARRAYSZ), - "DT_JMPREL": reflect.ValueOf(elf.DT_JMPREL), - "DT_LOOS": reflect.ValueOf(elf.DT_LOOS), - "DT_LOPROC": reflect.ValueOf(elf.DT_LOPROC), - "DT_MIPS_AUX_DYNAMIC": reflect.ValueOf(elf.DT_MIPS_AUX_DYNAMIC), - "DT_MIPS_BASE_ADDRESS": reflect.ValueOf(elf.DT_MIPS_BASE_ADDRESS), - "DT_MIPS_COMPACT_SIZE": reflect.ValueOf(elf.DT_MIPS_COMPACT_SIZE), - "DT_MIPS_CONFLICT": reflect.ValueOf(elf.DT_MIPS_CONFLICT), - "DT_MIPS_CONFLICTNO": reflect.ValueOf(elf.DT_MIPS_CONFLICTNO), - "DT_MIPS_CXX_FLAGS": reflect.ValueOf(elf.DT_MIPS_CXX_FLAGS), - "DT_MIPS_DELTA_CLASS": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS), - "DT_MIPS_DELTA_CLASSSYM": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM), - "DT_MIPS_DELTA_CLASSSYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM_NO), - "DT_MIPS_DELTA_CLASS_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS_NO), - "DT_MIPS_DELTA_INSTANCE": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE), - "DT_MIPS_DELTA_INSTANCE_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE_NO), - "DT_MIPS_DELTA_RELOC": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC), - "DT_MIPS_DELTA_RELOC_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC_NO), - "DT_MIPS_DELTA_SYM": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM), - "DT_MIPS_DELTA_SYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM_NO), - "DT_MIPS_DYNSTR_ALIGN": reflect.ValueOf(elf.DT_MIPS_DYNSTR_ALIGN), - "DT_MIPS_FLAGS": reflect.ValueOf(elf.DT_MIPS_FLAGS), - "DT_MIPS_GOTSYM": reflect.ValueOf(elf.DT_MIPS_GOTSYM), - "DT_MIPS_GP_VALUE": reflect.ValueOf(elf.DT_MIPS_GP_VALUE), - "DT_MIPS_HIDDEN_GOTIDX": reflect.ValueOf(elf.DT_MIPS_HIDDEN_GOTIDX), - "DT_MIPS_HIPAGENO": reflect.ValueOf(elf.DT_MIPS_HIPAGENO), - "DT_MIPS_ICHECKSUM": reflect.ValueOf(elf.DT_MIPS_ICHECKSUM), - "DT_MIPS_INTERFACE": reflect.ValueOf(elf.DT_MIPS_INTERFACE), - "DT_MIPS_INTERFACE_SIZE": reflect.ValueOf(elf.DT_MIPS_INTERFACE_SIZE), - "DT_MIPS_IVERSION": reflect.ValueOf(elf.DT_MIPS_IVERSION), - "DT_MIPS_LIBLIST": reflect.ValueOf(elf.DT_MIPS_LIBLIST), - "DT_MIPS_LIBLISTNO": reflect.ValueOf(elf.DT_MIPS_LIBLISTNO), - "DT_MIPS_LOCALPAGE_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCALPAGE_GOTIDX), - "DT_MIPS_LOCAL_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTIDX), - "DT_MIPS_LOCAL_GOTNO": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTNO), - "DT_MIPS_MSYM": reflect.ValueOf(elf.DT_MIPS_MSYM), - "DT_MIPS_OPTIONS": reflect.ValueOf(elf.DT_MIPS_OPTIONS), - "DT_MIPS_PERF_SUFFIX": reflect.ValueOf(elf.DT_MIPS_PERF_SUFFIX), - "DT_MIPS_PIXIE_INIT": reflect.ValueOf(elf.DT_MIPS_PIXIE_INIT), - "DT_MIPS_PLTGOT": reflect.ValueOf(elf.DT_MIPS_PLTGOT), - "DT_MIPS_PROTECTED_GOTIDX": reflect.ValueOf(elf.DT_MIPS_PROTECTED_GOTIDX), - "DT_MIPS_RLD_MAP": reflect.ValueOf(elf.DT_MIPS_RLD_MAP), - "DT_MIPS_RLD_MAP_REL": reflect.ValueOf(elf.DT_MIPS_RLD_MAP_REL), - "DT_MIPS_RLD_TEXT_RESOLVE_ADDR": reflect.ValueOf(elf.DT_MIPS_RLD_TEXT_RESOLVE_ADDR), - "DT_MIPS_RLD_VERSION": reflect.ValueOf(elf.DT_MIPS_RLD_VERSION), - "DT_MIPS_RWPLT": reflect.ValueOf(elf.DT_MIPS_RWPLT), - "DT_MIPS_SYMBOL_LIB": reflect.ValueOf(elf.DT_MIPS_SYMBOL_LIB), - "DT_MIPS_SYMTABNO": reflect.ValueOf(elf.DT_MIPS_SYMTABNO), - "DT_MIPS_TIME_STAMP": reflect.ValueOf(elf.DT_MIPS_TIME_STAMP), - "DT_MIPS_UNREFEXTNO": reflect.ValueOf(elf.DT_MIPS_UNREFEXTNO), - "DT_MOVEENT": reflect.ValueOf(elf.DT_MOVEENT), - "DT_MOVESZ": reflect.ValueOf(elf.DT_MOVESZ), - "DT_MOVETAB": reflect.ValueOf(elf.DT_MOVETAB), - "DT_NEEDED": reflect.ValueOf(elf.DT_NEEDED), - "DT_NULL": reflect.ValueOf(elf.DT_NULL), - "DT_PLTGOT": reflect.ValueOf(elf.DT_PLTGOT), - "DT_PLTPAD": reflect.ValueOf(elf.DT_PLTPAD), - "DT_PLTPADSZ": reflect.ValueOf(elf.DT_PLTPADSZ), - "DT_PLTREL": reflect.ValueOf(elf.DT_PLTREL), - "DT_PLTRELSZ": reflect.ValueOf(elf.DT_PLTRELSZ), - "DT_POSFLAG_1": reflect.ValueOf(elf.DT_POSFLAG_1), - "DT_PPC64_GLINK": reflect.ValueOf(elf.DT_PPC64_GLINK), - "DT_PPC64_OPD": reflect.ValueOf(elf.DT_PPC64_OPD), - "DT_PPC64_OPDSZ": reflect.ValueOf(elf.DT_PPC64_OPDSZ), - "DT_PPC64_OPT": reflect.ValueOf(elf.DT_PPC64_OPT), - "DT_PPC_GOT": reflect.ValueOf(elf.DT_PPC_GOT), - "DT_PPC_OPT": reflect.ValueOf(elf.DT_PPC_OPT), - "DT_PREINIT_ARRAY": reflect.ValueOf(elf.DT_PREINIT_ARRAY), - "DT_PREINIT_ARRAYSZ": reflect.ValueOf(elf.DT_PREINIT_ARRAYSZ), - "DT_REL": reflect.ValueOf(elf.DT_REL), - "DT_RELA": reflect.ValueOf(elf.DT_RELA), - "DT_RELACOUNT": reflect.ValueOf(elf.DT_RELACOUNT), - "DT_RELAENT": reflect.ValueOf(elf.DT_RELAENT), - "DT_RELASZ": reflect.ValueOf(elf.DT_RELASZ), - "DT_RELCOUNT": reflect.ValueOf(elf.DT_RELCOUNT), - "DT_RELENT": reflect.ValueOf(elf.DT_RELENT), - "DT_RELSZ": reflect.ValueOf(elf.DT_RELSZ), - "DT_RPATH": reflect.ValueOf(elf.DT_RPATH), - "DT_RUNPATH": reflect.ValueOf(elf.DT_RUNPATH), - "DT_SONAME": reflect.ValueOf(elf.DT_SONAME), - "DT_SPARC_REGISTER": reflect.ValueOf(elf.DT_SPARC_REGISTER), - "DT_STRSZ": reflect.ValueOf(elf.DT_STRSZ), - "DT_STRTAB": reflect.ValueOf(elf.DT_STRTAB), - "DT_SYMBOLIC": reflect.ValueOf(elf.DT_SYMBOLIC), - "DT_SYMENT": reflect.ValueOf(elf.DT_SYMENT), - "DT_SYMINENT": reflect.ValueOf(elf.DT_SYMINENT), - "DT_SYMINFO": reflect.ValueOf(elf.DT_SYMINFO), - "DT_SYMINSZ": reflect.ValueOf(elf.DT_SYMINSZ), - "DT_SYMTAB": reflect.ValueOf(elf.DT_SYMTAB), - "DT_SYMTAB_SHNDX": reflect.ValueOf(elf.DT_SYMTAB_SHNDX), - "DT_TEXTREL": reflect.ValueOf(elf.DT_TEXTREL), - "DT_TLSDESC_GOT": reflect.ValueOf(elf.DT_TLSDESC_GOT), - "DT_TLSDESC_PLT": reflect.ValueOf(elf.DT_TLSDESC_PLT), - "DT_USED": reflect.ValueOf(elf.DT_USED), - "DT_VALRNGHI": reflect.ValueOf(elf.DT_VALRNGHI), - "DT_VALRNGLO": reflect.ValueOf(elf.DT_VALRNGLO), - "DT_VERDEF": reflect.ValueOf(elf.DT_VERDEF), - "DT_VERDEFNUM": reflect.ValueOf(elf.DT_VERDEFNUM), - "DT_VERNEED": reflect.ValueOf(elf.DT_VERNEED), - "DT_VERNEEDNUM": reflect.ValueOf(elf.DT_VERNEEDNUM), - "DT_VERSYM": reflect.ValueOf(elf.DT_VERSYM), - "EI_ABIVERSION": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EI_CLASS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EI_DATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EI_NIDENT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EI_OSABI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EI_PAD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "EI_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ELFCLASS32": reflect.ValueOf(elf.ELFCLASS32), - "ELFCLASS64": reflect.ValueOf(elf.ELFCLASS64), - "ELFCLASSNONE": reflect.ValueOf(elf.ELFCLASSNONE), - "ELFDATA2LSB": reflect.ValueOf(elf.ELFDATA2LSB), - "ELFDATA2MSB": reflect.ValueOf(elf.ELFDATA2MSB), - "ELFDATANONE": reflect.ValueOf(elf.ELFDATANONE), - "ELFMAG": reflect.ValueOf(constant.MakeFromLiteral("\"\\u007fELF\"", token.STRING, 0)), - "ELFOSABI_86OPEN": reflect.ValueOf(elf.ELFOSABI_86OPEN), - "ELFOSABI_AIX": reflect.ValueOf(elf.ELFOSABI_AIX), - "ELFOSABI_ARM": reflect.ValueOf(elf.ELFOSABI_ARM), - "ELFOSABI_AROS": reflect.ValueOf(elf.ELFOSABI_AROS), - "ELFOSABI_CLOUDABI": reflect.ValueOf(elf.ELFOSABI_CLOUDABI), - "ELFOSABI_FENIXOS": reflect.ValueOf(elf.ELFOSABI_FENIXOS), - "ELFOSABI_FREEBSD": reflect.ValueOf(elf.ELFOSABI_FREEBSD), - "ELFOSABI_HPUX": reflect.ValueOf(elf.ELFOSABI_HPUX), - "ELFOSABI_HURD": reflect.ValueOf(elf.ELFOSABI_HURD), - "ELFOSABI_IRIX": reflect.ValueOf(elf.ELFOSABI_IRIX), - "ELFOSABI_LINUX": reflect.ValueOf(elf.ELFOSABI_LINUX), - "ELFOSABI_MODESTO": reflect.ValueOf(elf.ELFOSABI_MODESTO), - "ELFOSABI_NETBSD": reflect.ValueOf(elf.ELFOSABI_NETBSD), - "ELFOSABI_NONE": reflect.ValueOf(elf.ELFOSABI_NONE), - "ELFOSABI_NSK": reflect.ValueOf(elf.ELFOSABI_NSK), - "ELFOSABI_OPENBSD": reflect.ValueOf(elf.ELFOSABI_OPENBSD), - "ELFOSABI_OPENVMS": reflect.ValueOf(elf.ELFOSABI_OPENVMS), - "ELFOSABI_SOLARIS": reflect.ValueOf(elf.ELFOSABI_SOLARIS), - "ELFOSABI_STANDALONE": reflect.ValueOf(elf.ELFOSABI_STANDALONE), - "ELFOSABI_TRU64": reflect.ValueOf(elf.ELFOSABI_TRU64), - "EM_386": reflect.ValueOf(elf.EM_386), - "EM_486": reflect.ValueOf(elf.EM_486), - "EM_56800EX": reflect.ValueOf(elf.EM_56800EX), - "EM_68HC05": reflect.ValueOf(elf.EM_68HC05), - "EM_68HC08": reflect.ValueOf(elf.EM_68HC08), - "EM_68HC11": reflect.ValueOf(elf.EM_68HC11), - "EM_68HC12": reflect.ValueOf(elf.EM_68HC12), - "EM_68HC16": reflect.ValueOf(elf.EM_68HC16), - "EM_68K": reflect.ValueOf(elf.EM_68K), - "EM_78KOR": reflect.ValueOf(elf.EM_78KOR), - "EM_8051": reflect.ValueOf(elf.EM_8051), - "EM_860": reflect.ValueOf(elf.EM_860), - "EM_88K": reflect.ValueOf(elf.EM_88K), - "EM_960": reflect.ValueOf(elf.EM_960), - "EM_AARCH64": reflect.ValueOf(elf.EM_AARCH64), - "EM_ALPHA": reflect.ValueOf(elf.EM_ALPHA), - "EM_ALPHA_STD": reflect.ValueOf(elf.EM_ALPHA_STD), - "EM_ALTERA_NIOS2": reflect.ValueOf(elf.EM_ALTERA_NIOS2), - "EM_AMDGPU": reflect.ValueOf(elf.EM_AMDGPU), - "EM_ARC": reflect.ValueOf(elf.EM_ARC), - "EM_ARCA": reflect.ValueOf(elf.EM_ARCA), - "EM_ARC_COMPACT": reflect.ValueOf(elf.EM_ARC_COMPACT), - "EM_ARC_COMPACT2": reflect.ValueOf(elf.EM_ARC_COMPACT2), - "EM_ARM": reflect.ValueOf(elf.EM_ARM), - "EM_AVR": reflect.ValueOf(elf.EM_AVR), - "EM_AVR32": reflect.ValueOf(elf.EM_AVR32), - "EM_BA1": reflect.ValueOf(elf.EM_BA1), - "EM_BA2": reflect.ValueOf(elf.EM_BA2), - "EM_BLACKFIN": reflect.ValueOf(elf.EM_BLACKFIN), - "EM_BPF": reflect.ValueOf(elf.EM_BPF), - "EM_C166": reflect.ValueOf(elf.EM_C166), - "EM_CDP": reflect.ValueOf(elf.EM_CDP), - "EM_CE": reflect.ValueOf(elf.EM_CE), - "EM_CLOUDSHIELD": reflect.ValueOf(elf.EM_CLOUDSHIELD), - "EM_COGE": reflect.ValueOf(elf.EM_COGE), - "EM_COLDFIRE": reflect.ValueOf(elf.EM_COLDFIRE), - "EM_COOL": reflect.ValueOf(elf.EM_COOL), - "EM_COREA_1ST": reflect.ValueOf(elf.EM_COREA_1ST), - "EM_COREA_2ND": reflect.ValueOf(elf.EM_COREA_2ND), - "EM_CR": reflect.ValueOf(elf.EM_CR), - "EM_CR16": reflect.ValueOf(elf.EM_CR16), - "EM_CRAYNV2": reflect.ValueOf(elf.EM_CRAYNV2), - "EM_CRIS": reflect.ValueOf(elf.EM_CRIS), - "EM_CRX": reflect.ValueOf(elf.EM_CRX), - "EM_CSR_KALIMBA": reflect.ValueOf(elf.EM_CSR_KALIMBA), - "EM_CUDA": reflect.ValueOf(elf.EM_CUDA), - "EM_CYPRESS_M8C": reflect.ValueOf(elf.EM_CYPRESS_M8C), - "EM_D10V": reflect.ValueOf(elf.EM_D10V), - "EM_D30V": reflect.ValueOf(elf.EM_D30V), - "EM_DSP24": reflect.ValueOf(elf.EM_DSP24), - "EM_DSPIC30F": reflect.ValueOf(elf.EM_DSPIC30F), - "EM_DXP": reflect.ValueOf(elf.EM_DXP), - "EM_ECOG1": reflect.ValueOf(elf.EM_ECOG1), - "EM_ECOG16": reflect.ValueOf(elf.EM_ECOG16), - "EM_ECOG1X": reflect.ValueOf(elf.EM_ECOG1X), - "EM_ECOG2": reflect.ValueOf(elf.EM_ECOG2), - "EM_ETPU": reflect.ValueOf(elf.EM_ETPU), - "EM_EXCESS": reflect.ValueOf(elf.EM_EXCESS), - "EM_F2MC16": reflect.ValueOf(elf.EM_F2MC16), - "EM_FIREPATH": reflect.ValueOf(elf.EM_FIREPATH), - "EM_FR20": reflect.ValueOf(elf.EM_FR20), - "EM_FR30": reflect.ValueOf(elf.EM_FR30), - "EM_FT32": reflect.ValueOf(elf.EM_FT32), - "EM_FX66": reflect.ValueOf(elf.EM_FX66), - "EM_H8S": reflect.ValueOf(elf.EM_H8S), - "EM_H8_300": reflect.ValueOf(elf.EM_H8_300), - "EM_H8_300H": reflect.ValueOf(elf.EM_H8_300H), - "EM_H8_500": reflect.ValueOf(elf.EM_H8_500), - "EM_HUANY": reflect.ValueOf(elf.EM_HUANY), - "EM_IA_64": reflect.ValueOf(elf.EM_IA_64), - "EM_INTEL205": reflect.ValueOf(elf.EM_INTEL205), - "EM_INTEL206": reflect.ValueOf(elf.EM_INTEL206), - "EM_INTEL207": reflect.ValueOf(elf.EM_INTEL207), - "EM_INTEL208": reflect.ValueOf(elf.EM_INTEL208), - "EM_INTEL209": reflect.ValueOf(elf.EM_INTEL209), - "EM_IP2K": reflect.ValueOf(elf.EM_IP2K), - "EM_JAVELIN": reflect.ValueOf(elf.EM_JAVELIN), - "EM_K10M": reflect.ValueOf(elf.EM_K10M), - "EM_KM32": reflect.ValueOf(elf.EM_KM32), - "EM_KMX16": reflect.ValueOf(elf.EM_KMX16), - "EM_KMX32": reflect.ValueOf(elf.EM_KMX32), - "EM_KMX8": reflect.ValueOf(elf.EM_KMX8), - "EM_KVARC": reflect.ValueOf(elf.EM_KVARC), - "EM_L10M": reflect.ValueOf(elf.EM_L10M), - "EM_LANAI": reflect.ValueOf(elf.EM_LANAI), - "EM_LATTICEMICO32": reflect.ValueOf(elf.EM_LATTICEMICO32), - "EM_M16C": reflect.ValueOf(elf.EM_M16C), - "EM_M32": reflect.ValueOf(elf.EM_M32), - "EM_M32C": reflect.ValueOf(elf.EM_M32C), - "EM_M32R": reflect.ValueOf(elf.EM_M32R), - "EM_MANIK": reflect.ValueOf(elf.EM_MANIK), - "EM_MAX": reflect.ValueOf(elf.EM_MAX), - "EM_MAXQ30": reflect.ValueOf(elf.EM_MAXQ30), - "EM_MCHP_PIC": reflect.ValueOf(elf.EM_MCHP_PIC), - "EM_MCST_ELBRUS": reflect.ValueOf(elf.EM_MCST_ELBRUS), - "EM_ME16": reflect.ValueOf(elf.EM_ME16), - "EM_METAG": reflect.ValueOf(elf.EM_METAG), - "EM_MICROBLAZE": reflect.ValueOf(elf.EM_MICROBLAZE), - "EM_MIPS": reflect.ValueOf(elf.EM_MIPS), - "EM_MIPS_RS3_LE": reflect.ValueOf(elf.EM_MIPS_RS3_LE), - "EM_MIPS_RS4_BE": reflect.ValueOf(elf.EM_MIPS_RS4_BE), - "EM_MIPS_X": reflect.ValueOf(elf.EM_MIPS_X), - "EM_MMA": reflect.ValueOf(elf.EM_MMA), - "EM_MMDSP_PLUS": reflect.ValueOf(elf.EM_MMDSP_PLUS), - "EM_MMIX": reflect.ValueOf(elf.EM_MMIX), - "EM_MN10200": reflect.ValueOf(elf.EM_MN10200), - "EM_MN10300": reflect.ValueOf(elf.EM_MN10300), - "EM_MOXIE": reflect.ValueOf(elf.EM_MOXIE), - "EM_MSP430": reflect.ValueOf(elf.EM_MSP430), - "EM_NCPU": reflect.ValueOf(elf.EM_NCPU), - "EM_NDR1": reflect.ValueOf(elf.EM_NDR1), - "EM_NDS32": reflect.ValueOf(elf.EM_NDS32), - "EM_NONE": reflect.ValueOf(elf.EM_NONE), - "EM_NORC": reflect.ValueOf(elf.EM_NORC), - "EM_NS32K": reflect.ValueOf(elf.EM_NS32K), - "EM_OPEN8": reflect.ValueOf(elf.EM_OPEN8), - "EM_OPENRISC": reflect.ValueOf(elf.EM_OPENRISC), - "EM_PARISC": reflect.ValueOf(elf.EM_PARISC), - "EM_PCP": reflect.ValueOf(elf.EM_PCP), - "EM_PDP10": reflect.ValueOf(elf.EM_PDP10), - "EM_PDP11": reflect.ValueOf(elf.EM_PDP11), - "EM_PDSP": reflect.ValueOf(elf.EM_PDSP), - "EM_PJ": reflect.ValueOf(elf.EM_PJ), - "EM_PPC": reflect.ValueOf(elf.EM_PPC), - "EM_PPC64": reflect.ValueOf(elf.EM_PPC64), - "EM_PRISM": reflect.ValueOf(elf.EM_PRISM), - "EM_QDSP6": reflect.ValueOf(elf.EM_QDSP6), - "EM_R32C": reflect.ValueOf(elf.EM_R32C), - "EM_RCE": reflect.ValueOf(elf.EM_RCE), - "EM_RH32": reflect.ValueOf(elf.EM_RH32), - "EM_RISCV": reflect.ValueOf(elf.EM_RISCV), - "EM_RL78": reflect.ValueOf(elf.EM_RL78), - "EM_RS08": reflect.ValueOf(elf.EM_RS08), - "EM_RX": reflect.ValueOf(elf.EM_RX), - "EM_S370": reflect.ValueOf(elf.EM_S370), - "EM_S390": reflect.ValueOf(elf.EM_S390), - "EM_SCORE7": reflect.ValueOf(elf.EM_SCORE7), - "EM_SEP": reflect.ValueOf(elf.EM_SEP), - "EM_SE_C17": reflect.ValueOf(elf.EM_SE_C17), - "EM_SE_C33": reflect.ValueOf(elf.EM_SE_C33), - "EM_SH": reflect.ValueOf(elf.EM_SH), - "EM_SHARC": reflect.ValueOf(elf.EM_SHARC), - "EM_SLE9X": reflect.ValueOf(elf.EM_SLE9X), - "EM_SNP1K": reflect.ValueOf(elf.EM_SNP1K), - "EM_SPARC": reflect.ValueOf(elf.EM_SPARC), - "EM_SPARC32PLUS": reflect.ValueOf(elf.EM_SPARC32PLUS), - "EM_SPARCV9": reflect.ValueOf(elf.EM_SPARCV9), - "EM_ST100": reflect.ValueOf(elf.EM_ST100), - "EM_ST19": reflect.ValueOf(elf.EM_ST19), - "EM_ST200": reflect.ValueOf(elf.EM_ST200), - "EM_ST7": reflect.ValueOf(elf.EM_ST7), - "EM_ST9PLUS": reflect.ValueOf(elf.EM_ST9PLUS), - "EM_STARCORE": reflect.ValueOf(elf.EM_STARCORE), - "EM_STM8": reflect.ValueOf(elf.EM_STM8), - "EM_STXP7X": reflect.ValueOf(elf.EM_STXP7X), - "EM_SVX": reflect.ValueOf(elf.EM_SVX), - "EM_TILE64": reflect.ValueOf(elf.EM_TILE64), - "EM_TILEGX": reflect.ValueOf(elf.EM_TILEGX), - "EM_TILEPRO": reflect.ValueOf(elf.EM_TILEPRO), - "EM_TINYJ": reflect.ValueOf(elf.EM_TINYJ), - "EM_TI_ARP32": reflect.ValueOf(elf.EM_TI_ARP32), - "EM_TI_C2000": reflect.ValueOf(elf.EM_TI_C2000), - "EM_TI_C5500": reflect.ValueOf(elf.EM_TI_C5500), - "EM_TI_C6000": reflect.ValueOf(elf.EM_TI_C6000), - "EM_TI_PRU": reflect.ValueOf(elf.EM_TI_PRU), - "EM_TMM_GPP": reflect.ValueOf(elf.EM_TMM_GPP), - "EM_TPC": reflect.ValueOf(elf.EM_TPC), - "EM_TRICORE": reflect.ValueOf(elf.EM_TRICORE), - "EM_TRIMEDIA": reflect.ValueOf(elf.EM_TRIMEDIA), - "EM_TSK3000": reflect.ValueOf(elf.EM_TSK3000), - "EM_UNICORE": reflect.ValueOf(elf.EM_UNICORE), - "EM_V800": reflect.ValueOf(elf.EM_V800), - "EM_V850": reflect.ValueOf(elf.EM_V850), - "EM_VAX": reflect.ValueOf(elf.EM_VAX), - "EM_VIDEOCORE": reflect.ValueOf(elf.EM_VIDEOCORE), - "EM_VIDEOCORE3": reflect.ValueOf(elf.EM_VIDEOCORE3), - "EM_VIDEOCORE5": reflect.ValueOf(elf.EM_VIDEOCORE5), - "EM_VISIUM": reflect.ValueOf(elf.EM_VISIUM), - "EM_VPP500": reflect.ValueOf(elf.EM_VPP500), - "EM_X86_64": reflect.ValueOf(elf.EM_X86_64), - "EM_XCORE": reflect.ValueOf(elf.EM_XCORE), - "EM_XGATE": reflect.ValueOf(elf.EM_XGATE), - "EM_XIMO16": reflect.ValueOf(elf.EM_XIMO16), - "EM_XTENSA": reflect.ValueOf(elf.EM_XTENSA), - "EM_Z80": reflect.ValueOf(elf.EM_Z80), - "EM_ZSP": reflect.ValueOf(elf.EM_ZSP), - "ET_CORE": reflect.ValueOf(elf.ET_CORE), - "ET_DYN": reflect.ValueOf(elf.ET_DYN), - "ET_EXEC": reflect.ValueOf(elf.ET_EXEC), - "ET_HIOS": reflect.ValueOf(elf.ET_HIOS), - "ET_HIPROC": reflect.ValueOf(elf.ET_HIPROC), - "ET_LOOS": reflect.ValueOf(elf.ET_LOOS), - "ET_LOPROC": reflect.ValueOf(elf.ET_LOPROC), - "ET_NONE": reflect.ValueOf(elf.ET_NONE), - "ET_REL": reflect.ValueOf(elf.ET_REL), - "EV_CURRENT": reflect.ValueOf(elf.EV_CURRENT), - "EV_NONE": reflect.ValueOf(elf.EV_NONE), - "ErrNoSymbols": reflect.ValueOf(&elf.ErrNoSymbols).Elem(), - "NT_FPREGSET": reflect.ValueOf(elf.NT_FPREGSET), - "NT_PRPSINFO": reflect.ValueOf(elf.NT_PRPSINFO), - "NT_PRSTATUS": reflect.ValueOf(elf.NT_PRSTATUS), - "NewFile": reflect.ValueOf(elf.NewFile), - "Open": reflect.ValueOf(elf.Open), - "PF_MASKOS": reflect.ValueOf(elf.PF_MASKOS), - "PF_MASKPROC": reflect.ValueOf(elf.PF_MASKPROC), - "PF_R": reflect.ValueOf(elf.PF_R), - "PF_W": reflect.ValueOf(elf.PF_W), - "PF_X": reflect.ValueOf(elf.PF_X), - "PT_AARCH64_ARCHEXT": reflect.ValueOf(elf.PT_AARCH64_ARCHEXT), - "PT_AARCH64_UNWIND": reflect.ValueOf(elf.PT_AARCH64_UNWIND), - "PT_ARM_ARCHEXT": reflect.ValueOf(elf.PT_ARM_ARCHEXT), - "PT_ARM_EXIDX": reflect.ValueOf(elf.PT_ARM_EXIDX), - "PT_DYNAMIC": reflect.ValueOf(elf.PT_DYNAMIC), - "PT_GNU_EH_FRAME": reflect.ValueOf(elf.PT_GNU_EH_FRAME), - "PT_GNU_MBIND_HI": reflect.ValueOf(elf.PT_GNU_MBIND_HI), - "PT_GNU_MBIND_LO": reflect.ValueOf(elf.PT_GNU_MBIND_LO), - "PT_GNU_PROPERTY": reflect.ValueOf(elf.PT_GNU_PROPERTY), - "PT_GNU_RELRO": reflect.ValueOf(elf.PT_GNU_RELRO), - "PT_GNU_STACK": reflect.ValueOf(elf.PT_GNU_STACK), - "PT_HIOS": reflect.ValueOf(elf.PT_HIOS), - "PT_HIPROC": reflect.ValueOf(elf.PT_HIPROC), - "PT_INTERP": reflect.ValueOf(elf.PT_INTERP), - "PT_LOAD": reflect.ValueOf(elf.PT_LOAD), - "PT_LOOS": reflect.ValueOf(elf.PT_LOOS), - "PT_LOPROC": reflect.ValueOf(elf.PT_LOPROC), - "PT_MIPS_ABIFLAGS": reflect.ValueOf(elf.PT_MIPS_ABIFLAGS), - "PT_MIPS_OPTIONS": reflect.ValueOf(elf.PT_MIPS_OPTIONS), - "PT_MIPS_REGINFO": reflect.ValueOf(elf.PT_MIPS_REGINFO), - "PT_MIPS_RTPROC": reflect.ValueOf(elf.PT_MIPS_RTPROC), - "PT_NOTE": reflect.ValueOf(elf.PT_NOTE), - "PT_NULL": reflect.ValueOf(elf.PT_NULL), - "PT_OPENBSD_BOOTDATA": reflect.ValueOf(elf.PT_OPENBSD_BOOTDATA), - "PT_OPENBSD_RANDOMIZE": reflect.ValueOf(elf.PT_OPENBSD_RANDOMIZE), - "PT_OPENBSD_WXNEEDED": reflect.ValueOf(elf.PT_OPENBSD_WXNEEDED), - "PT_PAX_FLAGS": reflect.ValueOf(elf.PT_PAX_FLAGS), - "PT_PHDR": reflect.ValueOf(elf.PT_PHDR), - "PT_S390_PGSTE": reflect.ValueOf(elf.PT_S390_PGSTE), - "PT_SHLIB": reflect.ValueOf(elf.PT_SHLIB), - "PT_SUNWSTACK": reflect.ValueOf(elf.PT_SUNWSTACK), - "PT_SUNW_EH_FRAME": reflect.ValueOf(elf.PT_SUNW_EH_FRAME), - "PT_TLS": reflect.ValueOf(elf.PT_TLS), - "R_386_16": reflect.ValueOf(elf.R_386_16), - "R_386_32": reflect.ValueOf(elf.R_386_32), - "R_386_32PLT": reflect.ValueOf(elf.R_386_32PLT), - "R_386_8": reflect.ValueOf(elf.R_386_8), - "R_386_COPY": reflect.ValueOf(elf.R_386_COPY), - "R_386_GLOB_DAT": reflect.ValueOf(elf.R_386_GLOB_DAT), - "R_386_GOT32": reflect.ValueOf(elf.R_386_GOT32), - "R_386_GOT32X": reflect.ValueOf(elf.R_386_GOT32X), - "R_386_GOTOFF": reflect.ValueOf(elf.R_386_GOTOFF), - "R_386_GOTPC": reflect.ValueOf(elf.R_386_GOTPC), - "R_386_IRELATIVE": reflect.ValueOf(elf.R_386_IRELATIVE), - "R_386_JMP_SLOT": reflect.ValueOf(elf.R_386_JMP_SLOT), - "R_386_NONE": reflect.ValueOf(elf.R_386_NONE), - "R_386_PC16": reflect.ValueOf(elf.R_386_PC16), - "R_386_PC32": reflect.ValueOf(elf.R_386_PC32), - "R_386_PC8": reflect.ValueOf(elf.R_386_PC8), - "R_386_PLT32": reflect.ValueOf(elf.R_386_PLT32), - "R_386_RELATIVE": reflect.ValueOf(elf.R_386_RELATIVE), - "R_386_SIZE32": reflect.ValueOf(elf.R_386_SIZE32), - "R_386_TLS_DESC": reflect.ValueOf(elf.R_386_TLS_DESC), - "R_386_TLS_DESC_CALL": reflect.ValueOf(elf.R_386_TLS_DESC_CALL), - "R_386_TLS_DTPMOD32": reflect.ValueOf(elf.R_386_TLS_DTPMOD32), - "R_386_TLS_DTPOFF32": reflect.ValueOf(elf.R_386_TLS_DTPOFF32), - "R_386_TLS_GD": reflect.ValueOf(elf.R_386_TLS_GD), - "R_386_TLS_GD_32": reflect.ValueOf(elf.R_386_TLS_GD_32), - "R_386_TLS_GD_CALL": reflect.ValueOf(elf.R_386_TLS_GD_CALL), - "R_386_TLS_GD_POP": reflect.ValueOf(elf.R_386_TLS_GD_POP), - "R_386_TLS_GD_PUSH": reflect.ValueOf(elf.R_386_TLS_GD_PUSH), - "R_386_TLS_GOTDESC": reflect.ValueOf(elf.R_386_TLS_GOTDESC), - "R_386_TLS_GOTIE": reflect.ValueOf(elf.R_386_TLS_GOTIE), - "R_386_TLS_IE": reflect.ValueOf(elf.R_386_TLS_IE), - "R_386_TLS_IE_32": reflect.ValueOf(elf.R_386_TLS_IE_32), - "R_386_TLS_LDM": reflect.ValueOf(elf.R_386_TLS_LDM), - "R_386_TLS_LDM_32": reflect.ValueOf(elf.R_386_TLS_LDM_32), - "R_386_TLS_LDM_CALL": reflect.ValueOf(elf.R_386_TLS_LDM_CALL), - "R_386_TLS_LDM_POP": reflect.ValueOf(elf.R_386_TLS_LDM_POP), - "R_386_TLS_LDM_PUSH": reflect.ValueOf(elf.R_386_TLS_LDM_PUSH), - "R_386_TLS_LDO_32": reflect.ValueOf(elf.R_386_TLS_LDO_32), - "R_386_TLS_LE": reflect.ValueOf(elf.R_386_TLS_LE), - "R_386_TLS_LE_32": reflect.ValueOf(elf.R_386_TLS_LE_32), - "R_386_TLS_TPOFF": reflect.ValueOf(elf.R_386_TLS_TPOFF), - "R_386_TLS_TPOFF32": reflect.ValueOf(elf.R_386_TLS_TPOFF32), - "R_390_12": reflect.ValueOf(elf.R_390_12), - "R_390_16": reflect.ValueOf(elf.R_390_16), - "R_390_20": reflect.ValueOf(elf.R_390_20), - "R_390_32": reflect.ValueOf(elf.R_390_32), - "R_390_64": reflect.ValueOf(elf.R_390_64), - "R_390_8": reflect.ValueOf(elf.R_390_8), - "R_390_COPY": reflect.ValueOf(elf.R_390_COPY), - "R_390_GLOB_DAT": reflect.ValueOf(elf.R_390_GLOB_DAT), - "R_390_GOT12": reflect.ValueOf(elf.R_390_GOT12), - "R_390_GOT16": reflect.ValueOf(elf.R_390_GOT16), - "R_390_GOT20": reflect.ValueOf(elf.R_390_GOT20), - "R_390_GOT32": reflect.ValueOf(elf.R_390_GOT32), - "R_390_GOT64": reflect.ValueOf(elf.R_390_GOT64), - "R_390_GOTENT": reflect.ValueOf(elf.R_390_GOTENT), - "R_390_GOTOFF": reflect.ValueOf(elf.R_390_GOTOFF), - "R_390_GOTOFF16": reflect.ValueOf(elf.R_390_GOTOFF16), - "R_390_GOTOFF64": reflect.ValueOf(elf.R_390_GOTOFF64), - "R_390_GOTPC": reflect.ValueOf(elf.R_390_GOTPC), - "R_390_GOTPCDBL": reflect.ValueOf(elf.R_390_GOTPCDBL), - "R_390_GOTPLT12": reflect.ValueOf(elf.R_390_GOTPLT12), - "R_390_GOTPLT16": reflect.ValueOf(elf.R_390_GOTPLT16), - "R_390_GOTPLT20": reflect.ValueOf(elf.R_390_GOTPLT20), - "R_390_GOTPLT32": reflect.ValueOf(elf.R_390_GOTPLT32), - "R_390_GOTPLT64": reflect.ValueOf(elf.R_390_GOTPLT64), - "R_390_GOTPLTENT": reflect.ValueOf(elf.R_390_GOTPLTENT), - "R_390_GOTPLTOFF16": reflect.ValueOf(elf.R_390_GOTPLTOFF16), - "R_390_GOTPLTOFF32": reflect.ValueOf(elf.R_390_GOTPLTOFF32), - "R_390_GOTPLTOFF64": reflect.ValueOf(elf.R_390_GOTPLTOFF64), - "R_390_JMP_SLOT": reflect.ValueOf(elf.R_390_JMP_SLOT), - "R_390_NONE": reflect.ValueOf(elf.R_390_NONE), - "R_390_PC16": reflect.ValueOf(elf.R_390_PC16), - "R_390_PC16DBL": reflect.ValueOf(elf.R_390_PC16DBL), - "R_390_PC32": reflect.ValueOf(elf.R_390_PC32), - "R_390_PC32DBL": reflect.ValueOf(elf.R_390_PC32DBL), - "R_390_PC64": reflect.ValueOf(elf.R_390_PC64), - "R_390_PLT16DBL": reflect.ValueOf(elf.R_390_PLT16DBL), - "R_390_PLT32": reflect.ValueOf(elf.R_390_PLT32), - "R_390_PLT32DBL": reflect.ValueOf(elf.R_390_PLT32DBL), - "R_390_PLT64": reflect.ValueOf(elf.R_390_PLT64), - "R_390_RELATIVE": reflect.ValueOf(elf.R_390_RELATIVE), - "R_390_TLS_DTPMOD": reflect.ValueOf(elf.R_390_TLS_DTPMOD), - "R_390_TLS_DTPOFF": reflect.ValueOf(elf.R_390_TLS_DTPOFF), - "R_390_TLS_GD32": reflect.ValueOf(elf.R_390_TLS_GD32), - "R_390_TLS_GD64": reflect.ValueOf(elf.R_390_TLS_GD64), - "R_390_TLS_GDCALL": reflect.ValueOf(elf.R_390_TLS_GDCALL), - "R_390_TLS_GOTIE12": reflect.ValueOf(elf.R_390_TLS_GOTIE12), - "R_390_TLS_GOTIE20": reflect.ValueOf(elf.R_390_TLS_GOTIE20), - "R_390_TLS_GOTIE32": reflect.ValueOf(elf.R_390_TLS_GOTIE32), - "R_390_TLS_GOTIE64": reflect.ValueOf(elf.R_390_TLS_GOTIE64), - "R_390_TLS_IE32": reflect.ValueOf(elf.R_390_TLS_IE32), - "R_390_TLS_IE64": reflect.ValueOf(elf.R_390_TLS_IE64), - "R_390_TLS_IEENT": reflect.ValueOf(elf.R_390_TLS_IEENT), - "R_390_TLS_LDCALL": reflect.ValueOf(elf.R_390_TLS_LDCALL), - "R_390_TLS_LDM32": reflect.ValueOf(elf.R_390_TLS_LDM32), - "R_390_TLS_LDM64": reflect.ValueOf(elf.R_390_TLS_LDM64), - "R_390_TLS_LDO32": reflect.ValueOf(elf.R_390_TLS_LDO32), - "R_390_TLS_LDO64": reflect.ValueOf(elf.R_390_TLS_LDO64), - "R_390_TLS_LE32": reflect.ValueOf(elf.R_390_TLS_LE32), - "R_390_TLS_LE64": reflect.ValueOf(elf.R_390_TLS_LE64), - "R_390_TLS_LOAD": reflect.ValueOf(elf.R_390_TLS_LOAD), - "R_390_TLS_TPOFF": reflect.ValueOf(elf.R_390_TLS_TPOFF), - "R_AARCH64_ABS16": reflect.ValueOf(elf.R_AARCH64_ABS16), - "R_AARCH64_ABS32": reflect.ValueOf(elf.R_AARCH64_ABS32), - "R_AARCH64_ABS64": reflect.ValueOf(elf.R_AARCH64_ABS64), - "R_AARCH64_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_ADD_ABS_LO12_NC), - "R_AARCH64_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_ADR_GOT_PAGE), - "R_AARCH64_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_LO21), - "R_AARCH64_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21), - "R_AARCH64_ADR_PREL_PG_HI21_NC": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21_NC), - "R_AARCH64_CALL26": reflect.ValueOf(elf.R_AARCH64_CALL26), - "R_AARCH64_CONDBR19": reflect.ValueOf(elf.R_AARCH64_CONDBR19), - "R_AARCH64_COPY": reflect.ValueOf(elf.R_AARCH64_COPY), - "R_AARCH64_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_GLOB_DAT), - "R_AARCH64_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_GOT_LD_PREL19), - "R_AARCH64_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_IRELATIVE), - "R_AARCH64_JUMP26": reflect.ValueOf(elf.R_AARCH64_JUMP26), - "R_AARCH64_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_JUMP_SLOT), - "R_AARCH64_LD64_GOTOFF_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTOFF_LO15), - "R_AARCH64_LD64_GOTPAGE_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTPAGE_LO15), - "R_AARCH64_LD64_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LD64_GOT_LO12_NC), - "R_AARCH64_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST128_ABS_LO12_NC), - "R_AARCH64_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST16_ABS_LO12_NC), - "R_AARCH64_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST32_ABS_LO12_NC), - "R_AARCH64_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST64_ABS_LO12_NC), - "R_AARCH64_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST8_ABS_LO12_NC), - "R_AARCH64_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_LD_PREL_LO19), - "R_AARCH64_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G0), - "R_AARCH64_MOVW_SABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G1), - "R_AARCH64_MOVW_SABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G2), - "R_AARCH64_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0), - "R_AARCH64_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0_NC), - "R_AARCH64_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1), - "R_AARCH64_MOVW_UABS_G1_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1_NC), - "R_AARCH64_MOVW_UABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2), - "R_AARCH64_MOVW_UABS_G2_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2_NC), - "R_AARCH64_MOVW_UABS_G3": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G3), - "R_AARCH64_NONE": reflect.ValueOf(elf.R_AARCH64_NONE), - "R_AARCH64_NULL": reflect.ValueOf(elf.R_AARCH64_NULL), - "R_AARCH64_P32_ABS16": reflect.ValueOf(elf.R_AARCH64_P32_ABS16), - "R_AARCH64_P32_ABS32": reflect.ValueOf(elf.R_AARCH64_P32_ABS32), - "R_AARCH64_P32_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_ADD_ABS_LO12_NC), - "R_AARCH64_P32_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_P32_ADR_GOT_PAGE), - "R_AARCH64_P32_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_LO21), - "R_AARCH64_P32_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_PG_HI21), - "R_AARCH64_P32_CALL26": reflect.ValueOf(elf.R_AARCH64_P32_CALL26), - "R_AARCH64_P32_CONDBR19": reflect.ValueOf(elf.R_AARCH64_P32_CONDBR19), - "R_AARCH64_P32_COPY": reflect.ValueOf(elf.R_AARCH64_P32_COPY), - "R_AARCH64_P32_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_P32_GLOB_DAT), - "R_AARCH64_P32_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_GOT_LD_PREL19), - "R_AARCH64_P32_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_IRELATIVE), - "R_AARCH64_P32_JUMP26": reflect.ValueOf(elf.R_AARCH64_P32_JUMP26), - "R_AARCH64_P32_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_P32_JUMP_SLOT), - "R_AARCH64_P32_LD32_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LD32_GOT_LO12_NC), - "R_AARCH64_P32_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST128_ABS_LO12_NC), - "R_AARCH64_P32_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST16_ABS_LO12_NC), - "R_AARCH64_P32_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST32_ABS_LO12_NC), - "R_AARCH64_P32_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST64_ABS_LO12_NC), - "R_AARCH64_P32_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST8_ABS_LO12_NC), - "R_AARCH64_P32_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_P32_LD_PREL_LO19), - "R_AARCH64_P32_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_SABS_G0), - "R_AARCH64_P32_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0), - "R_AARCH64_P32_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0_NC), - "R_AARCH64_P32_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G1), - "R_AARCH64_P32_PREL16": reflect.ValueOf(elf.R_AARCH64_P32_PREL16), - "R_AARCH64_P32_PREL32": reflect.ValueOf(elf.R_AARCH64_P32_PREL32), - "R_AARCH64_P32_RELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_RELATIVE), - "R_AARCH64_P32_TLSDESC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC), - "R_AARCH64_P32_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADD_LO12_NC), - "R_AARCH64_P32_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PAGE21), - "R_AARCH64_P32_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PREL21), - "R_AARCH64_P32_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_CALL), - "R_AARCH64_P32_TLSDESC_LD32_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD32_LO12_NC), - "R_AARCH64_P32_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD_PREL19), - "R_AARCH64_P32_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADD_LO12_NC), - "R_AARCH64_P32_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADR_PAGE21), - "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21), - "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC), - "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19), - "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12), - "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12), - "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC), - "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0), - "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC), - "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1), - "R_AARCH64_P32_TLS_DTPMOD": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPMOD), - "R_AARCH64_P32_TLS_DTPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPREL), - "R_AARCH64_P32_TLS_TPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_TPREL), - "R_AARCH64_P32_TSTBR14": reflect.ValueOf(elf.R_AARCH64_P32_TSTBR14), - "R_AARCH64_PREL16": reflect.ValueOf(elf.R_AARCH64_PREL16), - "R_AARCH64_PREL32": reflect.ValueOf(elf.R_AARCH64_PREL32), - "R_AARCH64_PREL64": reflect.ValueOf(elf.R_AARCH64_PREL64), - "R_AARCH64_RELATIVE": reflect.ValueOf(elf.R_AARCH64_RELATIVE), - "R_AARCH64_TLSDESC": reflect.ValueOf(elf.R_AARCH64_TLSDESC), - "R_AARCH64_TLSDESC_ADD": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD), - "R_AARCH64_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD_LO12_NC), - "R_AARCH64_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PAGE21), - "R_AARCH64_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PREL21), - "R_AARCH64_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_TLSDESC_CALL), - "R_AARCH64_TLSDESC_LD64_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD64_LO12_NC), - "R_AARCH64_TLSDESC_LDR": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LDR), - "R_AARCH64_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD_PREL19), - "R_AARCH64_TLSDESC_OFF_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G0_NC), - "R_AARCH64_TLSDESC_OFF_G1": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G1), - "R_AARCH64_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADD_LO12_NC), - "R_AARCH64_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PAGE21), - "R_AARCH64_TLSGD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PREL21), - "R_AARCH64_TLSGD_MOVW_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G0_NC), - "R_AARCH64_TLSGD_MOVW_G1": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G1), - "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21), - "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC), - "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19), - "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC), - "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1), - "R_AARCH64_TLSLD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PAGE21), - "R_AARCH64_TLSLD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PREL21), - "R_AARCH64_TLSLD_LDST128_DTPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12), - "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC), - "R_AARCH64_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_HI12), - "R_AARCH64_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12), - "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC), - "R_AARCH64_TLSLE_LDST128_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12), - "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC), - "R_AARCH64_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0), - "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC), - "R_AARCH64_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1), - "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC), - "R_AARCH64_TLSLE_MOVW_TPREL_G2": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G2), - "R_AARCH64_TLS_DTPMOD64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPMOD64), - "R_AARCH64_TLS_DTPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPREL64), - "R_AARCH64_TLS_TPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_TPREL64), - "R_AARCH64_TSTBR14": reflect.ValueOf(elf.R_AARCH64_TSTBR14), - "R_ALPHA_BRADDR": reflect.ValueOf(elf.R_ALPHA_BRADDR), - "R_ALPHA_COPY": reflect.ValueOf(elf.R_ALPHA_COPY), - "R_ALPHA_GLOB_DAT": reflect.ValueOf(elf.R_ALPHA_GLOB_DAT), - "R_ALPHA_GPDISP": reflect.ValueOf(elf.R_ALPHA_GPDISP), - "R_ALPHA_GPREL32": reflect.ValueOf(elf.R_ALPHA_GPREL32), - "R_ALPHA_GPRELHIGH": reflect.ValueOf(elf.R_ALPHA_GPRELHIGH), - "R_ALPHA_GPRELLOW": reflect.ValueOf(elf.R_ALPHA_GPRELLOW), - "R_ALPHA_GPVALUE": reflect.ValueOf(elf.R_ALPHA_GPVALUE), - "R_ALPHA_HINT": reflect.ValueOf(elf.R_ALPHA_HINT), - "R_ALPHA_IMMED_BR_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_BR_HI32), - "R_ALPHA_IMMED_GP_16": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_16), - "R_ALPHA_IMMED_GP_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_HI32), - "R_ALPHA_IMMED_LO32": reflect.ValueOf(elf.R_ALPHA_IMMED_LO32), - "R_ALPHA_IMMED_SCN_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_SCN_HI32), - "R_ALPHA_JMP_SLOT": reflect.ValueOf(elf.R_ALPHA_JMP_SLOT), - "R_ALPHA_LITERAL": reflect.ValueOf(elf.R_ALPHA_LITERAL), - "R_ALPHA_LITUSE": reflect.ValueOf(elf.R_ALPHA_LITUSE), - "R_ALPHA_NONE": reflect.ValueOf(elf.R_ALPHA_NONE), - "R_ALPHA_OP_PRSHIFT": reflect.ValueOf(elf.R_ALPHA_OP_PRSHIFT), - "R_ALPHA_OP_PSUB": reflect.ValueOf(elf.R_ALPHA_OP_PSUB), - "R_ALPHA_OP_PUSH": reflect.ValueOf(elf.R_ALPHA_OP_PUSH), - "R_ALPHA_OP_STORE": reflect.ValueOf(elf.R_ALPHA_OP_STORE), - "R_ALPHA_REFLONG": reflect.ValueOf(elf.R_ALPHA_REFLONG), - "R_ALPHA_REFQUAD": reflect.ValueOf(elf.R_ALPHA_REFQUAD), - "R_ALPHA_RELATIVE": reflect.ValueOf(elf.R_ALPHA_RELATIVE), - "R_ALPHA_SREL16": reflect.ValueOf(elf.R_ALPHA_SREL16), - "R_ALPHA_SREL32": reflect.ValueOf(elf.R_ALPHA_SREL32), - "R_ALPHA_SREL64": reflect.ValueOf(elf.R_ALPHA_SREL64), - "R_ARM_ABS12": reflect.ValueOf(elf.R_ARM_ABS12), - "R_ARM_ABS16": reflect.ValueOf(elf.R_ARM_ABS16), - "R_ARM_ABS32": reflect.ValueOf(elf.R_ARM_ABS32), - "R_ARM_ABS32_NOI": reflect.ValueOf(elf.R_ARM_ABS32_NOI), - "R_ARM_ABS8": reflect.ValueOf(elf.R_ARM_ABS8), - "R_ARM_ALU_PCREL_15_8": reflect.ValueOf(elf.R_ARM_ALU_PCREL_15_8), - "R_ARM_ALU_PCREL_23_15": reflect.ValueOf(elf.R_ARM_ALU_PCREL_23_15), - "R_ARM_ALU_PCREL_7_0": reflect.ValueOf(elf.R_ARM_ALU_PCREL_7_0), - "R_ARM_ALU_PC_G0": reflect.ValueOf(elf.R_ARM_ALU_PC_G0), - "R_ARM_ALU_PC_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G0_NC), - "R_ARM_ALU_PC_G1": reflect.ValueOf(elf.R_ARM_ALU_PC_G1), - "R_ARM_ALU_PC_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G1_NC), - "R_ARM_ALU_PC_G2": reflect.ValueOf(elf.R_ARM_ALU_PC_G2), - "R_ARM_ALU_SBREL_19_12_NC": reflect.ValueOf(elf.R_ARM_ALU_SBREL_19_12_NC), - "R_ARM_ALU_SBREL_27_20_CK": reflect.ValueOf(elf.R_ARM_ALU_SBREL_27_20_CK), - "R_ARM_ALU_SB_G0": reflect.ValueOf(elf.R_ARM_ALU_SB_G0), - "R_ARM_ALU_SB_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G0_NC), - "R_ARM_ALU_SB_G1": reflect.ValueOf(elf.R_ARM_ALU_SB_G1), - "R_ARM_ALU_SB_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G1_NC), - "R_ARM_ALU_SB_G2": reflect.ValueOf(elf.R_ARM_ALU_SB_G2), - "R_ARM_AMP_VCALL9": reflect.ValueOf(elf.R_ARM_AMP_VCALL9), - "R_ARM_BASE_ABS": reflect.ValueOf(elf.R_ARM_BASE_ABS), - "R_ARM_CALL": reflect.ValueOf(elf.R_ARM_CALL), - "R_ARM_COPY": reflect.ValueOf(elf.R_ARM_COPY), - "R_ARM_GLOB_DAT": reflect.ValueOf(elf.R_ARM_GLOB_DAT), - "R_ARM_GNU_VTENTRY": reflect.ValueOf(elf.R_ARM_GNU_VTENTRY), - "R_ARM_GNU_VTINHERIT": reflect.ValueOf(elf.R_ARM_GNU_VTINHERIT), - "R_ARM_GOT32": reflect.ValueOf(elf.R_ARM_GOT32), - "R_ARM_GOTOFF": reflect.ValueOf(elf.R_ARM_GOTOFF), - "R_ARM_GOTOFF12": reflect.ValueOf(elf.R_ARM_GOTOFF12), - "R_ARM_GOTPC": reflect.ValueOf(elf.R_ARM_GOTPC), - "R_ARM_GOTRELAX": reflect.ValueOf(elf.R_ARM_GOTRELAX), - "R_ARM_GOT_ABS": reflect.ValueOf(elf.R_ARM_GOT_ABS), - "R_ARM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_GOT_BREL12), - "R_ARM_GOT_PREL": reflect.ValueOf(elf.R_ARM_GOT_PREL), - "R_ARM_IRELATIVE": reflect.ValueOf(elf.R_ARM_IRELATIVE), - "R_ARM_JUMP24": reflect.ValueOf(elf.R_ARM_JUMP24), - "R_ARM_JUMP_SLOT": reflect.ValueOf(elf.R_ARM_JUMP_SLOT), - "R_ARM_LDC_PC_G0": reflect.ValueOf(elf.R_ARM_LDC_PC_G0), - "R_ARM_LDC_PC_G1": reflect.ValueOf(elf.R_ARM_LDC_PC_G1), - "R_ARM_LDC_PC_G2": reflect.ValueOf(elf.R_ARM_LDC_PC_G2), - "R_ARM_LDC_SB_G0": reflect.ValueOf(elf.R_ARM_LDC_SB_G0), - "R_ARM_LDC_SB_G1": reflect.ValueOf(elf.R_ARM_LDC_SB_G1), - "R_ARM_LDC_SB_G2": reflect.ValueOf(elf.R_ARM_LDC_SB_G2), - "R_ARM_LDRS_PC_G0": reflect.ValueOf(elf.R_ARM_LDRS_PC_G0), - "R_ARM_LDRS_PC_G1": reflect.ValueOf(elf.R_ARM_LDRS_PC_G1), - "R_ARM_LDRS_PC_G2": reflect.ValueOf(elf.R_ARM_LDRS_PC_G2), - "R_ARM_LDRS_SB_G0": reflect.ValueOf(elf.R_ARM_LDRS_SB_G0), - "R_ARM_LDRS_SB_G1": reflect.ValueOf(elf.R_ARM_LDRS_SB_G1), - "R_ARM_LDRS_SB_G2": reflect.ValueOf(elf.R_ARM_LDRS_SB_G2), - "R_ARM_LDR_PC_G1": reflect.ValueOf(elf.R_ARM_LDR_PC_G1), - "R_ARM_LDR_PC_G2": reflect.ValueOf(elf.R_ARM_LDR_PC_G2), - "R_ARM_LDR_SBREL_11_10_NC": reflect.ValueOf(elf.R_ARM_LDR_SBREL_11_10_NC), - "R_ARM_LDR_SB_G0": reflect.ValueOf(elf.R_ARM_LDR_SB_G0), - "R_ARM_LDR_SB_G1": reflect.ValueOf(elf.R_ARM_LDR_SB_G1), - "R_ARM_LDR_SB_G2": reflect.ValueOf(elf.R_ARM_LDR_SB_G2), - "R_ARM_ME_TOO": reflect.ValueOf(elf.R_ARM_ME_TOO), - "R_ARM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_MOVT_ABS), - "R_ARM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_MOVT_BREL), - "R_ARM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_MOVT_PREL), - "R_ARM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_MOVW_ABS_NC), - "R_ARM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_MOVW_BREL), - "R_ARM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_BREL_NC), - "R_ARM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_PREL_NC), - "R_ARM_NONE": reflect.ValueOf(elf.R_ARM_NONE), - "R_ARM_PC13": reflect.ValueOf(elf.R_ARM_PC13), - "R_ARM_PC24": reflect.ValueOf(elf.R_ARM_PC24), - "R_ARM_PLT32": reflect.ValueOf(elf.R_ARM_PLT32), - "R_ARM_PLT32_ABS": reflect.ValueOf(elf.R_ARM_PLT32_ABS), - "R_ARM_PREL31": reflect.ValueOf(elf.R_ARM_PREL31), - "R_ARM_PRIVATE_0": reflect.ValueOf(elf.R_ARM_PRIVATE_0), - "R_ARM_PRIVATE_1": reflect.ValueOf(elf.R_ARM_PRIVATE_1), - "R_ARM_PRIVATE_10": reflect.ValueOf(elf.R_ARM_PRIVATE_10), - "R_ARM_PRIVATE_11": reflect.ValueOf(elf.R_ARM_PRIVATE_11), - "R_ARM_PRIVATE_12": reflect.ValueOf(elf.R_ARM_PRIVATE_12), - "R_ARM_PRIVATE_13": reflect.ValueOf(elf.R_ARM_PRIVATE_13), - "R_ARM_PRIVATE_14": reflect.ValueOf(elf.R_ARM_PRIVATE_14), - "R_ARM_PRIVATE_15": reflect.ValueOf(elf.R_ARM_PRIVATE_15), - "R_ARM_PRIVATE_2": reflect.ValueOf(elf.R_ARM_PRIVATE_2), - "R_ARM_PRIVATE_3": reflect.ValueOf(elf.R_ARM_PRIVATE_3), - "R_ARM_PRIVATE_4": reflect.ValueOf(elf.R_ARM_PRIVATE_4), - "R_ARM_PRIVATE_5": reflect.ValueOf(elf.R_ARM_PRIVATE_5), - "R_ARM_PRIVATE_6": reflect.ValueOf(elf.R_ARM_PRIVATE_6), - "R_ARM_PRIVATE_7": reflect.ValueOf(elf.R_ARM_PRIVATE_7), - "R_ARM_PRIVATE_8": reflect.ValueOf(elf.R_ARM_PRIVATE_8), - "R_ARM_PRIVATE_9": reflect.ValueOf(elf.R_ARM_PRIVATE_9), - "R_ARM_RABS32": reflect.ValueOf(elf.R_ARM_RABS32), - "R_ARM_RBASE": reflect.ValueOf(elf.R_ARM_RBASE), - "R_ARM_REL32": reflect.ValueOf(elf.R_ARM_REL32), - "R_ARM_REL32_NOI": reflect.ValueOf(elf.R_ARM_REL32_NOI), - "R_ARM_RELATIVE": reflect.ValueOf(elf.R_ARM_RELATIVE), - "R_ARM_RPC24": reflect.ValueOf(elf.R_ARM_RPC24), - "R_ARM_RREL32": reflect.ValueOf(elf.R_ARM_RREL32), - "R_ARM_RSBREL32": reflect.ValueOf(elf.R_ARM_RSBREL32), - "R_ARM_RXPC25": reflect.ValueOf(elf.R_ARM_RXPC25), - "R_ARM_SBREL31": reflect.ValueOf(elf.R_ARM_SBREL31), - "R_ARM_SBREL32": reflect.ValueOf(elf.R_ARM_SBREL32), - "R_ARM_SWI24": reflect.ValueOf(elf.R_ARM_SWI24), - "R_ARM_TARGET1": reflect.ValueOf(elf.R_ARM_TARGET1), - "R_ARM_TARGET2": reflect.ValueOf(elf.R_ARM_TARGET2), - "R_ARM_THM_ABS5": reflect.ValueOf(elf.R_ARM_THM_ABS5), - "R_ARM_THM_ALU_ABS_G0_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G0_NC), - "R_ARM_THM_ALU_ABS_G1_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G1_NC), - "R_ARM_THM_ALU_ABS_G2_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G2_NC), - "R_ARM_THM_ALU_ABS_G3": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G3), - "R_ARM_THM_ALU_PREL_11_0": reflect.ValueOf(elf.R_ARM_THM_ALU_PREL_11_0), - "R_ARM_THM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_THM_GOT_BREL12), - "R_ARM_THM_JUMP11": reflect.ValueOf(elf.R_ARM_THM_JUMP11), - "R_ARM_THM_JUMP19": reflect.ValueOf(elf.R_ARM_THM_JUMP19), - "R_ARM_THM_JUMP24": reflect.ValueOf(elf.R_ARM_THM_JUMP24), - "R_ARM_THM_JUMP6": reflect.ValueOf(elf.R_ARM_THM_JUMP6), - "R_ARM_THM_JUMP8": reflect.ValueOf(elf.R_ARM_THM_JUMP8), - "R_ARM_THM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_THM_MOVT_ABS), - "R_ARM_THM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_BREL), - "R_ARM_THM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_PREL), - "R_ARM_THM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_ABS_NC), - "R_ARM_THM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL), - "R_ARM_THM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL_NC), - "R_ARM_THM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_PREL_NC), - "R_ARM_THM_PC12": reflect.ValueOf(elf.R_ARM_THM_PC12), - "R_ARM_THM_PC22": reflect.ValueOf(elf.R_ARM_THM_PC22), - "R_ARM_THM_PC8": reflect.ValueOf(elf.R_ARM_THM_PC8), - "R_ARM_THM_RPC22": reflect.ValueOf(elf.R_ARM_THM_RPC22), - "R_ARM_THM_SWI8": reflect.ValueOf(elf.R_ARM_THM_SWI8), - "R_ARM_THM_TLS_CALL": reflect.ValueOf(elf.R_ARM_THM_TLS_CALL), - "R_ARM_THM_TLS_DESCSEQ16": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ16), - "R_ARM_THM_TLS_DESCSEQ32": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ32), - "R_ARM_THM_XPC22": reflect.ValueOf(elf.R_ARM_THM_XPC22), - "R_ARM_TLS_CALL": reflect.ValueOf(elf.R_ARM_TLS_CALL), - "R_ARM_TLS_DESCSEQ": reflect.ValueOf(elf.R_ARM_TLS_DESCSEQ), - "R_ARM_TLS_DTPMOD32": reflect.ValueOf(elf.R_ARM_TLS_DTPMOD32), - "R_ARM_TLS_DTPOFF32": reflect.ValueOf(elf.R_ARM_TLS_DTPOFF32), - "R_ARM_TLS_GD32": reflect.ValueOf(elf.R_ARM_TLS_GD32), - "R_ARM_TLS_GOTDESC": reflect.ValueOf(elf.R_ARM_TLS_GOTDESC), - "R_ARM_TLS_IE12GP": reflect.ValueOf(elf.R_ARM_TLS_IE12GP), - "R_ARM_TLS_IE32": reflect.ValueOf(elf.R_ARM_TLS_IE32), - "R_ARM_TLS_LDM32": reflect.ValueOf(elf.R_ARM_TLS_LDM32), - "R_ARM_TLS_LDO12": reflect.ValueOf(elf.R_ARM_TLS_LDO12), - "R_ARM_TLS_LDO32": reflect.ValueOf(elf.R_ARM_TLS_LDO32), - "R_ARM_TLS_LE12": reflect.ValueOf(elf.R_ARM_TLS_LE12), - "R_ARM_TLS_LE32": reflect.ValueOf(elf.R_ARM_TLS_LE32), - "R_ARM_TLS_TPOFF32": reflect.ValueOf(elf.R_ARM_TLS_TPOFF32), - "R_ARM_V4BX": reflect.ValueOf(elf.R_ARM_V4BX), - "R_ARM_XPC25": reflect.ValueOf(elf.R_ARM_XPC25), - "R_INFO": reflect.ValueOf(elf.R_INFO), - "R_INFO32": reflect.ValueOf(elf.R_INFO32), - "R_MIPS_16": reflect.ValueOf(elf.R_MIPS_16), - "R_MIPS_26": reflect.ValueOf(elf.R_MIPS_26), - "R_MIPS_32": reflect.ValueOf(elf.R_MIPS_32), - "R_MIPS_64": reflect.ValueOf(elf.R_MIPS_64), - "R_MIPS_ADD_IMMEDIATE": reflect.ValueOf(elf.R_MIPS_ADD_IMMEDIATE), - "R_MIPS_CALL16": reflect.ValueOf(elf.R_MIPS_CALL16), - "R_MIPS_CALL_HI16": reflect.ValueOf(elf.R_MIPS_CALL_HI16), - "R_MIPS_CALL_LO16": reflect.ValueOf(elf.R_MIPS_CALL_LO16), - "R_MIPS_DELETE": reflect.ValueOf(elf.R_MIPS_DELETE), - "R_MIPS_GOT16": reflect.ValueOf(elf.R_MIPS_GOT16), - "R_MIPS_GOT_DISP": reflect.ValueOf(elf.R_MIPS_GOT_DISP), - "R_MIPS_GOT_HI16": reflect.ValueOf(elf.R_MIPS_GOT_HI16), - "R_MIPS_GOT_LO16": reflect.ValueOf(elf.R_MIPS_GOT_LO16), - "R_MIPS_GOT_OFST": reflect.ValueOf(elf.R_MIPS_GOT_OFST), - "R_MIPS_GOT_PAGE": reflect.ValueOf(elf.R_MIPS_GOT_PAGE), - "R_MIPS_GPREL16": reflect.ValueOf(elf.R_MIPS_GPREL16), - "R_MIPS_GPREL32": reflect.ValueOf(elf.R_MIPS_GPREL32), - "R_MIPS_HI16": reflect.ValueOf(elf.R_MIPS_HI16), - "R_MIPS_HIGHER": reflect.ValueOf(elf.R_MIPS_HIGHER), - "R_MIPS_HIGHEST": reflect.ValueOf(elf.R_MIPS_HIGHEST), - "R_MIPS_INSERT_A": reflect.ValueOf(elf.R_MIPS_INSERT_A), - "R_MIPS_INSERT_B": reflect.ValueOf(elf.R_MIPS_INSERT_B), - "R_MIPS_JALR": reflect.ValueOf(elf.R_MIPS_JALR), - "R_MIPS_LITERAL": reflect.ValueOf(elf.R_MIPS_LITERAL), - "R_MIPS_LO16": reflect.ValueOf(elf.R_MIPS_LO16), - "R_MIPS_NONE": reflect.ValueOf(elf.R_MIPS_NONE), - "R_MIPS_PC16": reflect.ValueOf(elf.R_MIPS_PC16), - "R_MIPS_PJUMP": reflect.ValueOf(elf.R_MIPS_PJUMP), - "R_MIPS_REL16": reflect.ValueOf(elf.R_MIPS_REL16), - "R_MIPS_REL32": reflect.ValueOf(elf.R_MIPS_REL32), - "R_MIPS_RELGOT": reflect.ValueOf(elf.R_MIPS_RELGOT), - "R_MIPS_SCN_DISP": reflect.ValueOf(elf.R_MIPS_SCN_DISP), - "R_MIPS_SHIFT5": reflect.ValueOf(elf.R_MIPS_SHIFT5), - "R_MIPS_SHIFT6": reflect.ValueOf(elf.R_MIPS_SHIFT6), - "R_MIPS_SUB": reflect.ValueOf(elf.R_MIPS_SUB), - "R_MIPS_TLS_DTPMOD32": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD32), - "R_MIPS_TLS_DTPMOD64": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD64), - "R_MIPS_TLS_DTPREL32": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL32), - "R_MIPS_TLS_DTPREL64": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL64), - "R_MIPS_TLS_DTPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_HI16), - "R_MIPS_TLS_DTPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_LO16), - "R_MIPS_TLS_GD": reflect.ValueOf(elf.R_MIPS_TLS_GD), - "R_MIPS_TLS_GOTTPREL": reflect.ValueOf(elf.R_MIPS_TLS_GOTTPREL), - "R_MIPS_TLS_LDM": reflect.ValueOf(elf.R_MIPS_TLS_LDM), - "R_MIPS_TLS_TPREL32": reflect.ValueOf(elf.R_MIPS_TLS_TPREL32), - "R_MIPS_TLS_TPREL64": reflect.ValueOf(elf.R_MIPS_TLS_TPREL64), - "R_MIPS_TLS_TPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_HI16), - "R_MIPS_TLS_TPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_LO16), - "R_PPC64_ADDR14": reflect.ValueOf(elf.R_PPC64_ADDR14), - "R_PPC64_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRNTAKEN), - "R_PPC64_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRTAKEN), - "R_PPC64_ADDR16": reflect.ValueOf(elf.R_PPC64_ADDR16), - "R_PPC64_ADDR16_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_DS), - "R_PPC64_ADDR16_HA": reflect.ValueOf(elf.R_PPC64_ADDR16_HA), - "R_PPC64_ADDR16_HI": reflect.ValueOf(elf.R_PPC64_ADDR16_HI), - "R_PPC64_ADDR16_HIGH": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGH), - "R_PPC64_ADDR16_HIGHA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHA), - "R_PPC64_ADDR16_HIGHER": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER), - "R_PPC64_ADDR16_HIGHERA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA), - "R_PPC64_ADDR16_HIGHEST": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST), - "R_PPC64_ADDR16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA), - "R_PPC64_ADDR16_LO": reflect.ValueOf(elf.R_PPC64_ADDR16_LO), - "R_PPC64_ADDR16_LO_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_LO_DS), - "R_PPC64_ADDR24": reflect.ValueOf(elf.R_PPC64_ADDR24), - "R_PPC64_ADDR32": reflect.ValueOf(elf.R_PPC64_ADDR32), - "R_PPC64_ADDR64": reflect.ValueOf(elf.R_PPC64_ADDR64), - "R_PPC64_ADDR64_LOCAL": reflect.ValueOf(elf.R_PPC64_ADDR64_LOCAL), - "R_PPC64_DTPMOD64": reflect.ValueOf(elf.R_PPC64_DTPMOD64), - "R_PPC64_DTPREL16": reflect.ValueOf(elf.R_PPC64_DTPREL16), - "R_PPC64_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_DS), - "R_PPC64_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HA), - "R_PPC64_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_DTPREL16_HI), - "R_PPC64_DTPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGH), - "R_PPC64_DTPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHA), - "R_PPC64_DTPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHER), - "R_PPC64_DTPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHERA), - "R_PPC64_DTPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHEST), - "R_PPC64_DTPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHESTA), - "R_PPC64_DTPREL16_LO": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO), - "R_PPC64_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO_DS), - "R_PPC64_DTPREL64": reflect.ValueOf(elf.R_PPC64_DTPREL64), - "R_PPC64_ENTRY": reflect.ValueOf(elf.R_PPC64_ENTRY), - "R_PPC64_GOT16": reflect.ValueOf(elf.R_PPC64_GOT16), - "R_PPC64_GOT16_DS": reflect.ValueOf(elf.R_PPC64_GOT16_DS), - "R_PPC64_GOT16_HA": reflect.ValueOf(elf.R_PPC64_GOT16_HA), - "R_PPC64_GOT16_HI": reflect.ValueOf(elf.R_PPC64_GOT16_HI), - "R_PPC64_GOT16_LO": reflect.ValueOf(elf.R_PPC64_GOT16_LO), - "R_PPC64_GOT16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT16_LO_DS), - "R_PPC64_GOT_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_DS), - "R_PPC64_GOT_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HA), - "R_PPC64_GOT_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HI), - "R_PPC64_GOT_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_LO_DS), - "R_PPC64_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16), - "R_PPC64_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HA), - "R_PPC64_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HI), - "R_PPC64_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_LO), - "R_PPC64_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16), - "R_PPC64_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HA), - "R_PPC64_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HI), - "R_PPC64_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_LO), - "R_PPC64_GOT_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_DS), - "R_PPC64_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HA), - "R_PPC64_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HI), - "R_PPC64_GOT_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_LO_DS), - "R_PPC64_IRELATIVE": reflect.ValueOf(elf.R_PPC64_IRELATIVE), - "R_PPC64_JMP_IREL": reflect.ValueOf(elf.R_PPC64_JMP_IREL), - "R_PPC64_JMP_SLOT": reflect.ValueOf(elf.R_PPC64_JMP_SLOT), - "R_PPC64_NONE": reflect.ValueOf(elf.R_PPC64_NONE), - "R_PPC64_PLT16_LO_DS": reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS), - "R_PPC64_PLTGOT16": reflect.ValueOf(elf.R_PPC64_PLTGOT16), - "R_PPC64_PLTGOT16_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT16_DS), - "R_PPC64_PLTGOT16_HA": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HA), - "R_PPC64_PLTGOT16_HI": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HI), - "R_PPC64_PLTGOT16_LO": reflect.ValueOf(elf.R_PPC64_PLTGOT16_LO), - "R_PPC64_PLTGOT_LO_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT_LO_DS), - "R_PPC64_REL14": reflect.ValueOf(elf.R_PPC64_REL14), - "R_PPC64_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRNTAKEN), - "R_PPC64_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRTAKEN), - "R_PPC64_REL16": reflect.ValueOf(elf.R_PPC64_REL16), - "R_PPC64_REL16DX_HA": reflect.ValueOf(elf.R_PPC64_REL16DX_HA), - "R_PPC64_REL16_HA": reflect.ValueOf(elf.R_PPC64_REL16_HA), - "R_PPC64_REL16_HI": reflect.ValueOf(elf.R_PPC64_REL16_HI), - "R_PPC64_REL16_LO": reflect.ValueOf(elf.R_PPC64_REL16_LO), - "R_PPC64_REL24": reflect.ValueOf(elf.R_PPC64_REL24), - "R_PPC64_REL24_NOTOC": reflect.ValueOf(elf.R_PPC64_REL24_NOTOC), - "R_PPC64_REL32": reflect.ValueOf(elf.R_PPC64_REL32), - "R_PPC64_REL64": reflect.ValueOf(elf.R_PPC64_REL64), - "R_PPC64_SECTOFF_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_DS), - "R_PPC64_SECTOFF_LO_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_LO_DS), - "R_PPC64_TLS": reflect.ValueOf(elf.R_PPC64_TLS), - "R_PPC64_TLSGD": reflect.ValueOf(elf.R_PPC64_TLSGD), - "R_PPC64_TLSLD": reflect.ValueOf(elf.R_PPC64_TLSLD), - "R_PPC64_TOC": reflect.ValueOf(elf.R_PPC64_TOC), - "R_PPC64_TOC16": reflect.ValueOf(elf.R_PPC64_TOC16), - "R_PPC64_TOC16_DS": reflect.ValueOf(elf.R_PPC64_TOC16_DS), - "R_PPC64_TOC16_HA": reflect.ValueOf(elf.R_PPC64_TOC16_HA), - "R_PPC64_TOC16_HI": reflect.ValueOf(elf.R_PPC64_TOC16_HI), - "R_PPC64_TOC16_LO": reflect.ValueOf(elf.R_PPC64_TOC16_LO), - "R_PPC64_TOC16_LO_DS": reflect.ValueOf(elf.R_PPC64_TOC16_LO_DS), - "R_PPC64_TOCSAVE": reflect.ValueOf(elf.R_PPC64_TOCSAVE), - "R_PPC64_TPREL16": reflect.ValueOf(elf.R_PPC64_TPREL16), - "R_PPC64_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_DS), - "R_PPC64_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_TPREL16_HA), - "R_PPC64_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_TPREL16_HI), - "R_PPC64_TPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGH), - "R_PPC64_TPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHA), - "R_PPC64_TPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHER), - "R_PPC64_TPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHERA), - "R_PPC64_TPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHEST), - "R_PPC64_TPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHESTA), - "R_PPC64_TPREL16_LO": reflect.ValueOf(elf.R_PPC64_TPREL16_LO), - "R_PPC64_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_LO_DS), - "R_PPC64_TPREL64": reflect.ValueOf(elf.R_PPC64_TPREL64), - "R_PPC_ADDR14": reflect.ValueOf(elf.R_PPC_ADDR14), - "R_PPC_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRNTAKEN), - "R_PPC_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRTAKEN), - "R_PPC_ADDR16": reflect.ValueOf(elf.R_PPC_ADDR16), - "R_PPC_ADDR16_HA": reflect.ValueOf(elf.R_PPC_ADDR16_HA), - "R_PPC_ADDR16_HI": reflect.ValueOf(elf.R_PPC_ADDR16_HI), - "R_PPC_ADDR16_LO": reflect.ValueOf(elf.R_PPC_ADDR16_LO), - "R_PPC_ADDR24": reflect.ValueOf(elf.R_PPC_ADDR24), - "R_PPC_ADDR32": reflect.ValueOf(elf.R_PPC_ADDR32), - "R_PPC_COPY": reflect.ValueOf(elf.R_PPC_COPY), - "R_PPC_DTPMOD32": reflect.ValueOf(elf.R_PPC_DTPMOD32), - "R_PPC_DTPREL16": reflect.ValueOf(elf.R_PPC_DTPREL16), - "R_PPC_DTPREL16_HA": reflect.ValueOf(elf.R_PPC_DTPREL16_HA), - "R_PPC_DTPREL16_HI": reflect.ValueOf(elf.R_PPC_DTPREL16_HI), - "R_PPC_DTPREL16_LO": reflect.ValueOf(elf.R_PPC_DTPREL16_LO), - "R_PPC_DTPREL32": reflect.ValueOf(elf.R_PPC_DTPREL32), - "R_PPC_EMB_BIT_FLD": reflect.ValueOf(elf.R_PPC_EMB_BIT_FLD), - "R_PPC_EMB_MRKREF": reflect.ValueOf(elf.R_PPC_EMB_MRKREF), - "R_PPC_EMB_NADDR16": reflect.ValueOf(elf.R_PPC_EMB_NADDR16), - "R_PPC_EMB_NADDR16_HA": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HA), - "R_PPC_EMB_NADDR16_HI": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HI), - "R_PPC_EMB_NADDR16_LO": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_LO), - "R_PPC_EMB_NADDR32": reflect.ValueOf(elf.R_PPC_EMB_NADDR32), - "R_PPC_EMB_RELSDA": reflect.ValueOf(elf.R_PPC_EMB_RELSDA), - "R_PPC_EMB_RELSEC16": reflect.ValueOf(elf.R_PPC_EMB_RELSEC16), - "R_PPC_EMB_RELST_HA": reflect.ValueOf(elf.R_PPC_EMB_RELST_HA), - "R_PPC_EMB_RELST_HI": reflect.ValueOf(elf.R_PPC_EMB_RELST_HI), - "R_PPC_EMB_RELST_LO": reflect.ValueOf(elf.R_PPC_EMB_RELST_LO), - "R_PPC_EMB_SDA21": reflect.ValueOf(elf.R_PPC_EMB_SDA21), - "R_PPC_EMB_SDA2I16": reflect.ValueOf(elf.R_PPC_EMB_SDA2I16), - "R_PPC_EMB_SDA2REL": reflect.ValueOf(elf.R_PPC_EMB_SDA2REL), - "R_PPC_EMB_SDAI16": reflect.ValueOf(elf.R_PPC_EMB_SDAI16), - "R_PPC_GLOB_DAT": reflect.ValueOf(elf.R_PPC_GLOB_DAT), - "R_PPC_GOT16": reflect.ValueOf(elf.R_PPC_GOT16), - "R_PPC_GOT16_HA": reflect.ValueOf(elf.R_PPC_GOT16_HA), - "R_PPC_GOT16_HI": reflect.ValueOf(elf.R_PPC_GOT16_HI), - "R_PPC_GOT16_LO": reflect.ValueOf(elf.R_PPC_GOT16_LO), - "R_PPC_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16), - "R_PPC_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HA), - "R_PPC_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HI), - "R_PPC_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_LO), - "R_PPC_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16), - "R_PPC_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HA), - "R_PPC_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HI), - "R_PPC_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_LO), - "R_PPC_GOT_TPREL16": reflect.ValueOf(elf.R_PPC_GOT_TPREL16), - "R_PPC_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HA), - "R_PPC_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HI), - "R_PPC_GOT_TPREL16_LO": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_LO), - "R_PPC_JMP_SLOT": reflect.ValueOf(elf.R_PPC_JMP_SLOT), - "R_PPC_LOCAL24PC": reflect.ValueOf(elf.R_PPC_LOCAL24PC), - "R_PPC_NONE": reflect.ValueOf(elf.R_PPC_NONE), - "R_PPC_PLT16_HA": reflect.ValueOf(elf.R_PPC_PLT16_HA), - "R_PPC_PLT16_HI": reflect.ValueOf(elf.R_PPC_PLT16_HI), - "R_PPC_PLT16_LO": reflect.ValueOf(elf.R_PPC_PLT16_LO), - "R_PPC_PLT32": reflect.ValueOf(elf.R_PPC_PLT32), - "R_PPC_PLTREL24": reflect.ValueOf(elf.R_PPC_PLTREL24), - "R_PPC_PLTREL32": reflect.ValueOf(elf.R_PPC_PLTREL32), - "R_PPC_REL14": reflect.ValueOf(elf.R_PPC_REL14), - "R_PPC_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRNTAKEN), - "R_PPC_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRTAKEN), - "R_PPC_REL24": reflect.ValueOf(elf.R_PPC_REL24), - "R_PPC_REL32": reflect.ValueOf(elf.R_PPC_REL32), - "R_PPC_RELATIVE": reflect.ValueOf(elf.R_PPC_RELATIVE), - "R_PPC_SDAREL16": reflect.ValueOf(elf.R_PPC_SDAREL16), - "R_PPC_SECTOFF": reflect.ValueOf(elf.R_PPC_SECTOFF), - "R_PPC_SECTOFF_HA": reflect.ValueOf(elf.R_PPC_SECTOFF_HA), - "R_PPC_SECTOFF_HI": reflect.ValueOf(elf.R_PPC_SECTOFF_HI), - "R_PPC_SECTOFF_LO": reflect.ValueOf(elf.R_PPC_SECTOFF_LO), - "R_PPC_TLS": reflect.ValueOf(elf.R_PPC_TLS), - "R_PPC_TPREL16": reflect.ValueOf(elf.R_PPC_TPREL16), - "R_PPC_TPREL16_HA": reflect.ValueOf(elf.R_PPC_TPREL16_HA), - "R_PPC_TPREL16_HI": reflect.ValueOf(elf.R_PPC_TPREL16_HI), - "R_PPC_TPREL16_LO": reflect.ValueOf(elf.R_PPC_TPREL16_LO), - "R_PPC_TPREL32": reflect.ValueOf(elf.R_PPC_TPREL32), - "R_PPC_UADDR16": reflect.ValueOf(elf.R_PPC_UADDR16), - "R_PPC_UADDR32": reflect.ValueOf(elf.R_PPC_UADDR32), - "R_RISCV_32": reflect.ValueOf(elf.R_RISCV_32), - "R_RISCV_32_PCREL": reflect.ValueOf(elf.R_RISCV_32_PCREL), - "R_RISCV_64": reflect.ValueOf(elf.R_RISCV_64), - "R_RISCV_ADD16": reflect.ValueOf(elf.R_RISCV_ADD16), - "R_RISCV_ADD32": reflect.ValueOf(elf.R_RISCV_ADD32), - "R_RISCV_ADD64": reflect.ValueOf(elf.R_RISCV_ADD64), - "R_RISCV_ADD8": reflect.ValueOf(elf.R_RISCV_ADD8), - "R_RISCV_ALIGN": reflect.ValueOf(elf.R_RISCV_ALIGN), - "R_RISCV_BRANCH": reflect.ValueOf(elf.R_RISCV_BRANCH), - "R_RISCV_CALL": reflect.ValueOf(elf.R_RISCV_CALL), - "R_RISCV_CALL_PLT": reflect.ValueOf(elf.R_RISCV_CALL_PLT), - "R_RISCV_COPY": reflect.ValueOf(elf.R_RISCV_COPY), - "R_RISCV_GNU_VTENTRY": reflect.ValueOf(elf.R_RISCV_GNU_VTENTRY), - "R_RISCV_GNU_VTINHERIT": reflect.ValueOf(elf.R_RISCV_GNU_VTINHERIT), - "R_RISCV_GOT_HI20": reflect.ValueOf(elf.R_RISCV_GOT_HI20), - "R_RISCV_GPREL_I": reflect.ValueOf(elf.R_RISCV_GPREL_I), - "R_RISCV_GPREL_S": reflect.ValueOf(elf.R_RISCV_GPREL_S), - "R_RISCV_HI20": reflect.ValueOf(elf.R_RISCV_HI20), - "R_RISCV_JAL": reflect.ValueOf(elf.R_RISCV_JAL), - "R_RISCV_JUMP_SLOT": reflect.ValueOf(elf.R_RISCV_JUMP_SLOT), - "R_RISCV_LO12_I": reflect.ValueOf(elf.R_RISCV_LO12_I), - "R_RISCV_LO12_S": reflect.ValueOf(elf.R_RISCV_LO12_S), - "R_RISCV_NONE": reflect.ValueOf(elf.R_RISCV_NONE), - "R_RISCV_PCREL_HI20": reflect.ValueOf(elf.R_RISCV_PCREL_HI20), - "R_RISCV_PCREL_LO12_I": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_I), - "R_RISCV_PCREL_LO12_S": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_S), - "R_RISCV_RELATIVE": reflect.ValueOf(elf.R_RISCV_RELATIVE), - "R_RISCV_RELAX": reflect.ValueOf(elf.R_RISCV_RELAX), - "R_RISCV_RVC_BRANCH": reflect.ValueOf(elf.R_RISCV_RVC_BRANCH), - "R_RISCV_RVC_JUMP": reflect.ValueOf(elf.R_RISCV_RVC_JUMP), - "R_RISCV_RVC_LUI": reflect.ValueOf(elf.R_RISCV_RVC_LUI), - "R_RISCV_SET16": reflect.ValueOf(elf.R_RISCV_SET16), - "R_RISCV_SET32": reflect.ValueOf(elf.R_RISCV_SET32), - "R_RISCV_SET6": reflect.ValueOf(elf.R_RISCV_SET6), - "R_RISCV_SET8": reflect.ValueOf(elf.R_RISCV_SET8), - "R_RISCV_SUB16": reflect.ValueOf(elf.R_RISCV_SUB16), - "R_RISCV_SUB32": reflect.ValueOf(elf.R_RISCV_SUB32), - "R_RISCV_SUB6": reflect.ValueOf(elf.R_RISCV_SUB6), - "R_RISCV_SUB64": reflect.ValueOf(elf.R_RISCV_SUB64), - "R_RISCV_SUB8": reflect.ValueOf(elf.R_RISCV_SUB8), - "R_RISCV_TLS_DTPMOD32": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD32), - "R_RISCV_TLS_DTPMOD64": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD64), - "R_RISCV_TLS_DTPREL32": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL32), - "R_RISCV_TLS_DTPREL64": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL64), - "R_RISCV_TLS_GD_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GD_HI20), - "R_RISCV_TLS_GOT_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GOT_HI20), - "R_RISCV_TLS_TPREL32": reflect.ValueOf(elf.R_RISCV_TLS_TPREL32), - "R_RISCV_TLS_TPREL64": reflect.ValueOf(elf.R_RISCV_TLS_TPREL64), - "R_RISCV_TPREL_ADD": reflect.ValueOf(elf.R_RISCV_TPREL_ADD), - "R_RISCV_TPREL_HI20": reflect.ValueOf(elf.R_RISCV_TPREL_HI20), - "R_RISCV_TPREL_I": reflect.ValueOf(elf.R_RISCV_TPREL_I), - "R_RISCV_TPREL_LO12_I": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_I), - "R_RISCV_TPREL_LO12_S": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_S), - "R_RISCV_TPREL_S": reflect.ValueOf(elf.R_RISCV_TPREL_S), - "R_SPARC_10": reflect.ValueOf(elf.R_SPARC_10), - "R_SPARC_11": reflect.ValueOf(elf.R_SPARC_11), - "R_SPARC_13": reflect.ValueOf(elf.R_SPARC_13), - "R_SPARC_16": reflect.ValueOf(elf.R_SPARC_16), - "R_SPARC_22": reflect.ValueOf(elf.R_SPARC_22), - "R_SPARC_32": reflect.ValueOf(elf.R_SPARC_32), - "R_SPARC_5": reflect.ValueOf(elf.R_SPARC_5), - "R_SPARC_6": reflect.ValueOf(elf.R_SPARC_6), - "R_SPARC_64": reflect.ValueOf(elf.R_SPARC_64), - "R_SPARC_7": reflect.ValueOf(elf.R_SPARC_7), - "R_SPARC_8": reflect.ValueOf(elf.R_SPARC_8), - "R_SPARC_COPY": reflect.ValueOf(elf.R_SPARC_COPY), - "R_SPARC_DISP16": reflect.ValueOf(elf.R_SPARC_DISP16), - "R_SPARC_DISP32": reflect.ValueOf(elf.R_SPARC_DISP32), - "R_SPARC_DISP64": reflect.ValueOf(elf.R_SPARC_DISP64), - "R_SPARC_DISP8": reflect.ValueOf(elf.R_SPARC_DISP8), - "R_SPARC_GLOB_DAT": reflect.ValueOf(elf.R_SPARC_GLOB_DAT), - "R_SPARC_GLOB_JMP": reflect.ValueOf(elf.R_SPARC_GLOB_JMP), - "R_SPARC_GOT10": reflect.ValueOf(elf.R_SPARC_GOT10), - "R_SPARC_GOT13": reflect.ValueOf(elf.R_SPARC_GOT13), - "R_SPARC_GOT22": reflect.ValueOf(elf.R_SPARC_GOT22), - "R_SPARC_H44": reflect.ValueOf(elf.R_SPARC_H44), - "R_SPARC_HH22": reflect.ValueOf(elf.R_SPARC_HH22), - "R_SPARC_HI22": reflect.ValueOf(elf.R_SPARC_HI22), - "R_SPARC_HIPLT22": reflect.ValueOf(elf.R_SPARC_HIPLT22), - "R_SPARC_HIX22": reflect.ValueOf(elf.R_SPARC_HIX22), - "R_SPARC_HM10": reflect.ValueOf(elf.R_SPARC_HM10), - "R_SPARC_JMP_SLOT": reflect.ValueOf(elf.R_SPARC_JMP_SLOT), - "R_SPARC_L44": reflect.ValueOf(elf.R_SPARC_L44), - "R_SPARC_LM22": reflect.ValueOf(elf.R_SPARC_LM22), - "R_SPARC_LO10": reflect.ValueOf(elf.R_SPARC_LO10), - "R_SPARC_LOPLT10": reflect.ValueOf(elf.R_SPARC_LOPLT10), - "R_SPARC_LOX10": reflect.ValueOf(elf.R_SPARC_LOX10), - "R_SPARC_M44": reflect.ValueOf(elf.R_SPARC_M44), - "R_SPARC_NONE": reflect.ValueOf(elf.R_SPARC_NONE), - "R_SPARC_OLO10": reflect.ValueOf(elf.R_SPARC_OLO10), - "R_SPARC_PC10": reflect.ValueOf(elf.R_SPARC_PC10), - "R_SPARC_PC22": reflect.ValueOf(elf.R_SPARC_PC22), - "R_SPARC_PCPLT10": reflect.ValueOf(elf.R_SPARC_PCPLT10), - "R_SPARC_PCPLT22": reflect.ValueOf(elf.R_SPARC_PCPLT22), - "R_SPARC_PCPLT32": reflect.ValueOf(elf.R_SPARC_PCPLT32), - "R_SPARC_PC_HH22": reflect.ValueOf(elf.R_SPARC_PC_HH22), - "R_SPARC_PC_HM10": reflect.ValueOf(elf.R_SPARC_PC_HM10), - "R_SPARC_PC_LM22": reflect.ValueOf(elf.R_SPARC_PC_LM22), - "R_SPARC_PLT32": reflect.ValueOf(elf.R_SPARC_PLT32), - "R_SPARC_PLT64": reflect.ValueOf(elf.R_SPARC_PLT64), - "R_SPARC_REGISTER": reflect.ValueOf(elf.R_SPARC_REGISTER), - "R_SPARC_RELATIVE": reflect.ValueOf(elf.R_SPARC_RELATIVE), - "R_SPARC_UA16": reflect.ValueOf(elf.R_SPARC_UA16), - "R_SPARC_UA32": reflect.ValueOf(elf.R_SPARC_UA32), - "R_SPARC_UA64": reflect.ValueOf(elf.R_SPARC_UA64), - "R_SPARC_WDISP16": reflect.ValueOf(elf.R_SPARC_WDISP16), - "R_SPARC_WDISP19": reflect.ValueOf(elf.R_SPARC_WDISP19), - "R_SPARC_WDISP22": reflect.ValueOf(elf.R_SPARC_WDISP22), - "R_SPARC_WDISP30": reflect.ValueOf(elf.R_SPARC_WDISP30), - "R_SPARC_WPLT30": reflect.ValueOf(elf.R_SPARC_WPLT30), - "R_SYM32": reflect.ValueOf(elf.R_SYM32), - "R_SYM64": reflect.ValueOf(elf.R_SYM64), - "R_TYPE32": reflect.ValueOf(elf.R_TYPE32), - "R_TYPE64": reflect.ValueOf(elf.R_TYPE64), - "R_X86_64_16": reflect.ValueOf(elf.R_X86_64_16), - "R_X86_64_32": reflect.ValueOf(elf.R_X86_64_32), - "R_X86_64_32S": reflect.ValueOf(elf.R_X86_64_32S), - "R_X86_64_64": reflect.ValueOf(elf.R_X86_64_64), - "R_X86_64_8": reflect.ValueOf(elf.R_X86_64_8), - "R_X86_64_COPY": reflect.ValueOf(elf.R_X86_64_COPY), - "R_X86_64_DTPMOD64": reflect.ValueOf(elf.R_X86_64_DTPMOD64), - "R_X86_64_DTPOFF32": reflect.ValueOf(elf.R_X86_64_DTPOFF32), - "R_X86_64_DTPOFF64": reflect.ValueOf(elf.R_X86_64_DTPOFF64), - "R_X86_64_GLOB_DAT": reflect.ValueOf(elf.R_X86_64_GLOB_DAT), - "R_X86_64_GOT32": reflect.ValueOf(elf.R_X86_64_GOT32), - "R_X86_64_GOT64": reflect.ValueOf(elf.R_X86_64_GOT64), - "R_X86_64_GOTOFF64": reflect.ValueOf(elf.R_X86_64_GOTOFF64), - "R_X86_64_GOTPC32": reflect.ValueOf(elf.R_X86_64_GOTPC32), - "R_X86_64_GOTPC32_TLSDESC": reflect.ValueOf(elf.R_X86_64_GOTPC32_TLSDESC), - "R_X86_64_GOTPC64": reflect.ValueOf(elf.R_X86_64_GOTPC64), - "R_X86_64_GOTPCREL": reflect.ValueOf(elf.R_X86_64_GOTPCREL), - "R_X86_64_GOTPCREL64": reflect.ValueOf(elf.R_X86_64_GOTPCREL64), - "R_X86_64_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_GOTPCRELX), - "R_X86_64_GOTPLT64": reflect.ValueOf(elf.R_X86_64_GOTPLT64), - "R_X86_64_GOTTPOFF": reflect.ValueOf(elf.R_X86_64_GOTTPOFF), - "R_X86_64_IRELATIVE": reflect.ValueOf(elf.R_X86_64_IRELATIVE), - "R_X86_64_JMP_SLOT": reflect.ValueOf(elf.R_X86_64_JMP_SLOT), - "R_X86_64_NONE": reflect.ValueOf(elf.R_X86_64_NONE), - "R_X86_64_PC16": reflect.ValueOf(elf.R_X86_64_PC16), - "R_X86_64_PC32": reflect.ValueOf(elf.R_X86_64_PC32), - "R_X86_64_PC32_BND": reflect.ValueOf(elf.R_X86_64_PC32_BND), - "R_X86_64_PC64": reflect.ValueOf(elf.R_X86_64_PC64), - "R_X86_64_PC8": reflect.ValueOf(elf.R_X86_64_PC8), - "R_X86_64_PLT32": reflect.ValueOf(elf.R_X86_64_PLT32), - "R_X86_64_PLT32_BND": reflect.ValueOf(elf.R_X86_64_PLT32_BND), - "R_X86_64_PLTOFF64": reflect.ValueOf(elf.R_X86_64_PLTOFF64), - "R_X86_64_RELATIVE": reflect.ValueOf(elf.R_X86_64_RELATIVE), - "R_X86_64_RELATIVE64": reflect.ValueOf(elf.R_X86_64_RELATIVE64), - "R_X86_64_REX_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_REX_GOTPCRELX), - "R_X86_64_SIZE32": reflect.ValueOf(elf.R_X86_64_SIZE32), - "R_X86_64_SIZE64": reflect.ValueOf(elf.R_X86_64_SIZE64), - "R_X86_64_TLSDESC": reflect.ValueOf(elf.R_X86_64_TLSDESC), - "R_X86_64_TLSDESC_CALL": reflect.ValueOf(elf.R_X86_64_TLSDESC_CALL), - "R_X86_64_TLSGD": reflect.ValueOf(elf.R_X86_64_TLSGD), - "R_X86_64_TLSLD": reflect.ValueOf(elf.R_X86_64_TLSLD), - "R_X86_64_TPOFF32": reflect.ValueOf(elf.R_X86_64_TPOFF32), - "R_X86_64_TPOFF64": reflect.ValueOf(elf.R_X86_64_TPOFF64), - "SHF_ALLOC": reflect.ValueOf(elf.SHF_ALLOC), - "SHF_COMPRESSED": reflect.ValueOf(elf.SHF_COMPRESSED), - "SHF_EXECINSTR": reflect.ValueOf(elf.SHF_EXECINSTR), - "SHF_GROUP": reflect.ValueOf(elf.SHF_GROUP), - "SHF_INFO_LINK": reflect.ValueOf(elf.SHF_INFO_LINK), - "SHF_LINK_ORDER": reflect.ValueOf(elf.SHF_LINK_ORDER), - "SHF_MASKOS": reflect.ValueOf(elf.SHF_MASKOS), - "SHF_MASKPROC": reflect.ValueOf(elf.SHF_MASKPROC), - "SHF_MERGE": reflect.ValueOf(elf.SHF_MERGE), - "SHF_OS_NONCONFORMING": reflect.ValueOf(elf.SHF_OS_NONCONFORMING), - "SHF_STRINGS": reflect.ValueOf(elf.SHF_STRINGS), - "SHF_TLS": reflect.ValueOf(elf.SHF_TLS), - "SHF_WRITE": reflect.ValueOf(elf.SHF_WRITE), - "SHN_ABS": reflect.ValueOf(elf.SHN_ABS), - "SHN_COMMON": reflect.ValueOf(elf.SHN_COMMON), - "SHN_HIOS": reflect.ValueOf(elf.SHN_HIOS), - "SHN_HIPROC": reflect.ValueOf(elf.SHN_HIPROC), - "SHN_HIRESERVE": reflect.ValueOf(elf.SHN_HIRESERVE), - "SHN_LOOS": reflect.ValueOf(elf.SHN_LOOS), - "SHN_LOPROC": reflect.ValueOf(elf.SHN_LOPROC), - "SHN_LORESERVE": reflect.ValueOf(elf.SHN_LORESERVE), - "SHN_UNDEF": reflect.ValueOf(elf.SHN_UNDEF), - "SHN_XINDEX": reflect.ValueOf(elf.SHN_XINDEX), - "SHT_DYNAMIC": reflect.ValueOf(elf.SHT_DYNAMIC), - "SHT_DYNSYM": reflect.ValueOf(elf.SHT_DYNSYM), - "SHT_FINI_ARRAY": reflect.ValueOf(elf.SHT_FINI_ARRAY), - "SHT_GNU_ATTRIBUTES": reflect.ValueOf(elf.SHT_GNU_ATTRIBUTES), - "SHT_GNU_HASH": reflect.ValueOf(elf.SHT_GNU_HASH), - "SHT_GNU_LIBLIST": reflect.ValueOf(elf.SHT_GNU_LIBLIST), - "SHT_GNU_VERDEF": reflect.ValueOf(elf.SHT_GNU_VERDEF), - "SHT_GNU_VERNEED": reflect.ValueOf(elf.SHT_GNU_VERNEED), - "SHT_GNU_VERSYM": reflect.ValueOf(elf.SHT_GNU_VERSYM), - "SHT_GROUP": reflect.ValueOf(elf.SHT_GROUP), - "SHT_HASH": reflect.ValueOf(elf.SHT_HASH), - "SHT_HIOS": reflect.ValueOf(elf.SHT_HIOS), - "SHT_HIPROC": reflect.ValueOf(elf.SHT_HIPROC), - "SHT_HIUSER": reflect.ValueOf(elf.SHT_HIUSER), - "SHT_INIT_ARRAY": reflect.ValueOf(elf.SHT_INIT_ARRAY), - "SHT_LOOS": reflect.ValueOf(elf.SHT_LOOS), - "SHT_LOPROC": reflect.ValueOf(elf.SHT_LOPROC), - "SHT_LOUSER": reflect.ValueOf(elf.SHT_LOUSER), - "SHT_MIPS_ABIFLAGS": reflect.ValueOf(elf.SHT_MIPS_ABIFLAGS), - "SHT_NOBITS": reflect.ValueOf(elf.SHT_NOBITS), - "SHT_NOTE": reflect.ValueOf(elf.SHT_NOTE), - "SHT_NULL": reflect.ValueOf(elf.SHT_NULL), - "SHT_PREINIT_ARRAY": reflect.ValueOf(elf.SHT_PREINIT_ARRAY), - "SHT_PROGBITS": reflect.ValueOf(elf.SHT_PROGBITS), - "SHT_REL": reflect.ValueOf(elf.SHT_REL), - "SHT_RELA": reflect.ValueOf(elf.SHT_RELA), - "SHT_SHLIB": reflect.ValueOf(elf.SHT_SHLIB), - "SHT_STRTAB": reflect.ValueOf(elf.SHT_STRTAB), - "SHT_SYMTAB": reflect.ValueOf(elf.SHT_SYMTAB), - "SHT_SYMTAB_SHNDX": reflect.ValueOf(elf.SHT_SYMTAB_SHNDX), - "STB_GLOBAL": reflect.ValueOf(elf.STB_GLOBAL), - "STB_HIOS": reflect.ValueOf(elf.STB_HIOS), - "STB_HIPROC": reflect.ValueOf(elf.STB_HIPROC), - "STB_LOCAL": reflect.ValueOf(elf.STB_LOCAL), - "STB_LOOS": reflect.ValueOf(elf.STB_LOOS), - "STB_LOPROC": reflect.ValueOf(elf.STB_LOPROC), - "STB_WEAK": reflect.ValueOf(elf.STB_WEAK), - "STT_COMMON": reflect.ValueOf(elf.STT_COMMON), - "STT_FILE": reflect.ValueOf(elf.STT_FILE), - "STT_FUNC": reflect.ValueOf(elf.STT_FUNC), - "STT_HIOS": reflect.ValueOf(elf.STT_HIOS), - "STT_HIPROC": reflect.ValueOf(elf.STT_HIPROC), - "STT_LOOS": reflect.ValueOf(elf.STT_LOOS), - "STT_LOPROC": reflect.ValueOf(elf.STT_LOPROC), - "STT_NOTYPE": reflect.ValueOf(elf.STT_NOTYPE), - "STT_OBJECT": reflect.ValueOf(elf.STT_OBJECT), - "STT_SECTION": reflect.ValueOf(elf.STT_SECTION), - "STT_TLS": reflect.ValueOf(elf.STT_TLS), - "STV_DEFAULT": reflect.ValueOf(elf.STV_DEFAULT), - "STV_HIDDEN": reflect.ValueOf(elf.STV_HIDDEN), - "STV_INTERNAL": reflect.ValueOf(elf.STV_INTERNAL), - "STV_PROTECTED": reflect.ValueOf(elf.STV_PROTECTED), - "ST_BIND": reflect.ValueOf(elf.ST_BIND), - "ST_INFO": reflect.ValueOf(elf.ST_INFO), - "ST_TYPE": reflect.ValueOf(elf.ST_TYPE), - "ST_VISIBILITY": reflect.ValueOf(elf.ST_VISIBILITY), - "Sym32Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Sym64Size": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - - // type definitions - "Chdr32": reflect.ValueOf((*elf.Chdr32)(nil)), - "Chdr64": reflect.ValueOf((*elf.Chdr64)(nil)), - "Class": reflect.ValueOf((*elf.Class)(nil)), - "CompressionType": reflect.ValueOf((*elf.CompressionType)(nil)), - "Data": reflect.ValueOf((*elf.Data)(nil)), - "Dyn32": reflect.ValueOf((*elf.Dyn32)(nil)), - "Dyn64": reflect.ValueOf((*elf.Dyn64)(nil)), - "DynFlag": reflect.ValueOf((*elf.DynFlag)(nil)), - "DynTag": reflect.ValueOf((*elf.DynTag)(nil)), - "File": reflect.ValueOf((*elf.File)(nil)), - "FileHeader": reflect.ValueOf((*elf.FileHeader)(nil)), - "FormatError": reflect.ValueOf((*elf.FormatError)(nil)), - "Header32": reflect.ValueOf((*elf.Header32)(nil)), - "Header64": reflect.ValueOf((*elf.Header64)(nil)), - "ImportedSymbol": reflect.ValueOf((*elf.ImportedSymbol)(nil)), - "Machine": reflect.ValueOf((*elf.Machine)(nil)), - "NType": reflect.ValueOf((*elf.NType)(nil)), - "OSABI": reflect.ValueOf((*elf.OSABI)(nil)), - "Prog": reflect.ValueOf((*elf.Prog)(nil)), - "Prog32": reflect.ValueOf((*elf.Prog32)(nil)), - "Prog64": reflect.ValueOf((*elf.Prog64)(nil)), - "ProgFlag": reflect.ValueOf((*elf.ProgFlag)(nil)), - "ProgHeader": reflect.ValueOf((*elf.ProgHeader)(nil)), - "ProgType": reflect.ValueOf((*elf.ProgType)(nil)), - "R_386": reflect.ValueOf((*elf.R_386)(nil)), - "R_390": reflect.ValueOf((*elf.R_390)(nil)), - "R_AARCH64": reflect.ValueOf((*elf.R_AARCH64)(nil)), - "R_ALPHA": reflect.ValueOf((*elf.R_ALPHA)(nil)), - "R_ARM": reflect.ValueOf((*elf.R_ARM)(nil)), - "R_MIPS": reflect.ValueOf((*elf.R_MIPS)(nil)), - "R_PPC": reflect.ValueOf((*elf.R_PPC)(nil)), - "R_PPC64": reflect.ValueOf((*elf.R_PPC64)(nil)), - "R_RISCV": reflect.ValueOf((*elf.R_RISCV)(nil)), - "R_SPARC": reflect.ValueOf((*elf.R_SPARC)(nil)), - "R_X86_64": reflect.ValueOf((*elf.R_X86_64)(nil)), - "Rel32": reflect.ValueOf((*elf.Rel32)(nil)), - "Rel64": reflect.ValueOf((*elf.Rel64)(nil)), - "Rela32": reflect.ValueOf((*elf.Rela32)(nil)), - "Rela64": reflect.ValueOf((*elf.Rela64)(nil)), - "Section": reflect.ValueOf((*elf.Section)(nil)), - "Section32": reflect.ValueOf((*elf.Section32)(nil)), - "Section64": reflect.ValueOf((*elf.Section64)(nil)), - "SectionFlag": reflect.ValueOf((*elf.SectionFlag)(nil)), - "SectionHeader": reflect.ValueOf((*elf.SectionHeader)(nil)), - "SectionIndex": reflect.ValueOf((*elf.SectionIndex)(nil)), - "SectionType": reflect.ValueOf((*elf.SectionType)(nil)), - "Sym32": reflect.ValueOf((*elf.Sym32)(nil)), - "Sym64": reflect.ValueOf((*elf.Sym64)(nil)), - "SymBind": reflect.ValueOf((*elf.SymBind)(nil)), - "SymType": reflect.ValueOf((*elf.SymType)(nil)), - "SymVis": reflect.ValueOf((*elf.SymVis)(nil)), - "Symbol": reflect.ValueOf((*elf.Symbol)(nil)), - "Type": reflect.ValueOf((*elf.Type)(nil)), - "Version": reflect.ValueOf((*elf.Version)(nil)), - } -} diff --git a/stdlib/go1_17_debug_gosym.go b/stdlib/go1_17_debug_gosym.go deleted file mode 100644 index 380e1641d..000000000 --- a/stdlib/go1_17_debug_gosym.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "debug/gosym" - "reflect" -) - -func init() { - Symbols["debug/gosym/gosym"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewLineTable": reflect.ValueOf(gosym.NewLineTable), - "NewTable": reflect.ValueOf(gosym.NewTable), - - // type definitions - "DecodingError": reflect.ValueOf((*gosym.DecodingError)(nil)), - "Func": reflect.ValueOf((*gosym.Func)(nil)), - "LineTable": reflect.ValueOf((*gosym.LineTable)(nil)), - "Obj": reflect.ValueOf((*gosym.Obj)(nil)), - "Sym": reflect.ValueOf((*gosym.Sym)(nil)), - "Table": reflect.ValueOf((*gosym.Table)(nil)), - "UnknownFileError": reflect.ValueOf((*gosym.UnknownFileError)(nil)), - "UnknownLineError": reflect.ValueOf((*gosym.UnknownLineError)(nil)), - } -} diff --git a/stdlib/go1_17_debug_macho.go b/stdlib/go1_17_debug_macho.go deleted file mode 100644 index 489703f70..000000000 --- a/stdlib/go1_17_debug_macho.go +++ /dev/null @@ -1,160 +0,0 @@ -// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "debug/macho" - "reflect" -) - -func init() { - Symbols["debug/macho/macho"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ARM64_RELOC_ADDEND": reflect.ValueOf(macho.ARM64_RELOC_ADDEND), - "ARM64_RELOC_BRANCH26": reflect.ValueOf(macho.ARM64_RELOC_BRANCH26), - "ARM64_RELOC_GOT_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGE21), - "ARM64_RELOC_GOT_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGEOFF12), - "ARM64_RELOC_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_PAGE21), - "ARM64_RELOC_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_PAGEOFF12), - "ARM64_RELOC_POINTER_TO_GOT": reflect.ValueOf(macho.ARM64_RELOC_POINTER_TO_GOT), - "ARM64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.ARM64_RELOC_SUBTRACTOR), - "ARM64_RELOC_TLVP_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGE21), - "ARM64_RELOC_TLVP_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGEOFF12), - "ARM64_RELOC_UNSIGNED": reflect.ValueOf(macho.ARM64_RELOC_UNSIGNED), - "ARM_RELOC_BR24": reflect.ValueOf(macho.ARM_RELOC_BR24), - "ARM_RELOC_HALF": reflect.ValueOf(macho.ARM_RELOC_HALF), - "ARM_RELOC_HALF_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_HALF_SECTDIFF), - "ARM_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_LOCAL_SECTDIFF), - "ARM_RELOC_PAIR": reflect.ValueOf(macho.ARM_RELOC_PAIR), - "ARM_RELOC_PB_LA_PTR": reflect.ValueOf(macho.ARM_RELOC_PB_LA_PTR), - "ARM_RELOC_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_SECTDIFF), - "ARM_RELOC_VANILLA": reflect.ValueOf(macho.ARM_RELOC_VANILLA), - "ARM_THUMB_32BIT_BRANCH": reflect.ValueOf(macho.ARM_THUMB_32BIT_BRANCH), - "ARM_THUMB_RELOC_BR22": reflect.ValueOf(macho.ARM_THUMB_RELOC_BR22), - "Cpu386": reflect.ValueOf(macho.Cpu386), - "CpuAmd64": reflect.ValueOf(macho.CpuAmd64), - "CpuArm": reflect.ValueOf(macho.CpuArm), - "CpuArm64": reflect.ValueOf(macho.CpuArm64), - "CpuPpc": reflect.ValueOf(macho.CpuPpc), - "CpuPpc64": reflect.ValueOf(macho.CpuPpc64), - "ErrNotFat": reflect.ValueOf(&macho.ErrNotFat).Elem(), - "FlagAllModsBound": reflect.ValueOf(macho.FlagAllModsBound), - "FlagAllowStackExecution": reflect.ValueOf(macho.FlagAllowStackExecution), - "FlagAppExtensionSafe": reflect.ValueOf(macho.FlagAppExtensionSafe), - "FlagBindAtLoad": reflect.ValueOf(macho.FlagBindAtLoad), - "FlagBindsToWeak": reflect.ValueOf(macho.FlagBindsToWeak), - "FlagCanonical": reflect.ValueOf(macho.FlagCanonical), - "FlagDeadStrippableDylib": reflect.ValueOf(macho.FlagDeadStrippableDylib), - "FlagDyldLink": reflect.ValueOf(macho.FlagDyldLink), - "FlagForceFlat": reflect.ValueOf(macho.FlagForceFlat), - "FlagHasTLVDescriptors": reflect.ValueOf(macho.FlagHasTLVDescriptors), - "FlagIncrLink": reflect.ValueOf(macho.FlagIncrLink), - "FlagLazyInit": reflect.ValueOf(macho.FlagLazyInit), - "FlagNoFixPrebinding": reflect.ValueOf(macho.FlagNoFixPrebinding), - "FlagNoHeapExecution": reflect.ValueOf(macho.FlagNoHeapExecution), - "FlagNoMultiDefs": reflect.ValueOf(macho.FlagNoMultiDefs), - "FlagNoReexportedDylibs": reflect.ValueOf(macho.FlagNoReexportedDylibs), - "FlagNoUndefs": reflect.ValueOf(macho.FlagNoUndefs), - "FlagPIE": reflect.ValueOf(macho.FlagPIE), - "FlagPrebindable": reflect.ValueOf(macho.FlagPrebindable), - "FlagPrebound": reflect.ValueOf(macho.FlagPrebound), - "FlagRootSafe": reflect.ValueOf(macho.FlagRootSafe), - "FlagSetuidSafe": reflect.ValueOf(macho.FlagSetuidSafe), - "FlagSplitSegs": reflect.ValueOf(macho.FlagSplitSegs), - "FlagSubsectionsViaSymbols": reflect.ValueOf(macho.FlagSubsectionsViaSymbols), - "FlagTwoLevel": reflect.ValueOf(macho.FlagTwoLevel), - "FlagWeakDefines": reflect.ValueOf(macho.FlagWeakDefines), - "GENERIC_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_LOCAL_SECTDIFF), - "GENERIC_RELOC_PAIR": reflect.ValueOf(macho.GENERIC_RELOC_PAIR), - "GENERIC_RELOC_PB_LA_PTR": reflect.ValueOf(macho.GENERIC_RELOC_PB_LA_PTR), - "GENERIC_RELOC_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_SECTDIFF), - "GENERIC_RELOC_TLV": reflect.ValueOf(macho.GENERIC_RELOC_TLV), - "GENERIC_RELOC_VANILLA": reflect.ValueOf(macho.GENERIC_RELOC_VANILLA), - "LoadCmdDylib": reflect.ValueOf(macho.LoadCmdDylib), - "LoadCmdDylinker": reflect.ValueOf(macho.LoadCmdDylinker), - "LoadCmdDysymtab": reflect.ValueOf(macho.LoadCmdDysymtab), - "LoadCmdRpath": reflect.ValueOf(macho.LoadCmdRpath), - "LoadCmdSegment": reflect.ValueOf(macho.LoadCmdSegment), - "LoadCmdSegment64": reflect.ValueOf(macho.LoadCmdSegment64), - "LoadCmdSymtab": reflect.ValueOf(macho.LoadCmdSymtab), - "LoadCmdThread": reflect.ValueOf(macho.LoadCmdThread), - "LoadCmdUnixThread": reflect.ValueOf(macho.LoadCmdUnixThread), - "Magic32": reflect.ValueOf(macho.Magic32), - "Magic64": reflect.ValueOf(macho.Magic64), - "MagicFat": reflect.ValueOf(macho.MagicFat), - "NewFatFile": reflect.ValueOf(macho.NewFatFile), - "NewFile": reflect.ValueOf(macho.NewFile), - "Open": reflect.ValueOf(macho.Open), - "OpenFat": reflect.ValueOf(macho.OpenFat), - "TypeBundle": reflect.ValueOf(macho.TypeBundle), - "TypeDylib": reflect.ValueOf(macho.TypeDylib), - "TypeExec": reflect.ValueOf(macho.TypeExec), - "TypeObj": reflect.ValueOf(macho.TypeObj), - "X86_64_RELOC_BRANCH": reflect.ValueOf(macho.X86_64_RELOC_BRANCH), - "X86_64_RELOC_GOT": reflect.ValueOf(macho.X86_64_RELOC_GOT), - "X86_64_RELOC_GOT_LOAD": reflect.ValueOf(macho.X86_64_RELOC_GOT_LOAD), - "X86_64_RELOC_SIGNED": reflect.ValueOf(macho.X86_64_RELOC_SIGNED), - "X86_64_RELOC_SIGNED_1": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_1), - "X86_64_RELOC_SIGNED_2": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_2), - "X86_64_RELOC_SIGNED_4": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_4), - "X86_64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.X86_64_RELOC_SUBTRACTOR), - "X86_64_RELOC_TLV": reflect.ValueOf(macho.X86_64_RELOC_TLV), - "X86_64_RELOC_UNSIGNED": reflect.ValueOf(macho.X86_64_RELOC_UNSIGNED), - - // type definitions - "Cpu": reflect.ValueOf((*macho.Cpu)(nil)), - "Dylib": reflect.ValueOf((*macho.Dylib)(nil)), - "DylibCmd": reflect.ValueOf((*macho.DylibCmd)(nil)), - "Dysymtab": reflect.ValueOf((*macho.Dysymtab)(nil)), - "DysymtabCmd": reflect.ValueOf((*macho.DysymtabCmd)(nil)), - "FatArch": reflect.ValueOf((*macho.FatArch)(nil)), - "FatArchHeader": reflect.ValueOf((*macho.FatArchHeader)(nil)), - "FatFile": reflect.ValueOf((*macho.FatFile)(nil)), - "File": reflect.ValueOf((*macho.File)(nil)), - "FileHeader": reflect.ValueOf((*macho.FileHeader)(nil)), - "FormatError": reflect.ValueOf((*macho.FormatError)(nil)), - "Load": reflect.ValueOf((*macho.Load)(nil)), - "LoadBytes": reflect.ValueOf((*macho.LoadBytes)(nil)), - "LoadCmd": reflect.ValueOf((*macho.LoadCmd)(nil)), - "Nlist32": reflect.ValueOf((*macho.Nlist32)(nil)), - "Nlist64": reflect.ValueOf((*macho.Nlist64)(nil)), - "Regs386": reflect.ValueOf((*macho.Regs386)(nil)), - "RegsAMD64": reflect.ValueOf((*macho.RegsAMD64)(nil)), - "Reloc": reflect.ValueOf((*macho.Reloc)(nil)), - "RelocTypeARM": reflect.ValueOf((*macho.RelocTypeARM)(nil)), - "RelocTypeARM64": reflect.ValueOf((*macho.RelocTypeARM64)(nil)), - "RelocTypeGeneric": reflect.ValueOf((*macho.RelocTypeGeneric)(nil)), - "RelocTypeX86_64": reflect.ValueOf((*macho.RelocTypeX86_64)(nil)), - "Rpath": reflect.ValueOf((*macho.Rpath)(nil)), - "RpathCmd": reflect.ValueOf((*macho.RpathCmd)(nil)), - "Section": reflect.ValueOf((*macho.Section)(nil)), - "Section32": reflect.ValueOf((*macho.Section32)(nil)), - "Section64": reflect.ValueOf((*macho.Section64)(nil)), - "SectionHeader": reflect.ValueOf((*macho.SectionHeader)(nil)), - "Segment": reflect.ValueOf((*macho.Segment)(nil)), - "Segment32": reflect.ValueOf((*macho.Segment32)(nil)), - "Segment64": reflect.ValueOf((*macho.Segment64)(nil)), - "SegmentHeader": reflect.ValueOf((*macho.SegmentHeader)(nil)), - "Symbol": reflect.ValueOf((*macho.Symbol)(nil)), - "Symtab": reflect.ValueOf((*macho.Symtab)(nil)), - "SymtabCmd": reflect.ValueOf((*macho.SymtabCmd)(nil)), - "Thread": reflect.ValueOf((*macho.Thread)(nil)), - "Type": reflect.ValueOf((*macho.Type)(nil)), - - // interface wrapper definitions - "_Load": reflect.ValueOf((*_debug_macho_Load)(nil)), - } -} - -// _debug_macho_Load is an interface wrapper for Load type -type _debug_macho_Load struct { - IValue interface{} - WRaw func() []byte -} - -func (W _debug_macho_Load) Raw() []byte { - return W.WRaw() -} diff --git a/stdlib/go1_17_debug_pe.go b/stdlib/go1_17_debug_pe.go deleted file mode 100644 index 479ee3937..000000000 --- a/stdlib/go1_17_debug_pe.go +++ /dev/null @@ -1,115 +0,0 @@ -// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "debug/pe" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["debug/pe/pe"] = map[string]reflect.Value{ - // function, constant and variable definitions - "COFFSymbolSize": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_ARCHITECTURE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_BASERELOC": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_EXCEPTION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_EXPORT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_GLOBALPTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_IAT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_RESOURCE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAGE_DIRECTORY_ENTRY_TLS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_APPCONTAINER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_GUARD_CF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NO_BIND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NO_SEH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_NX_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IMAGE_DLLCHARACTERISTICS_WDM_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IMAGE_FILE_32BIT_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IMAGE_FILE_AGGRESIVE_WS_TRIM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IMAGE_FILE_BYTES_REVERSED_HI": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IMAGE_FILE_BYTES_REVERSED_LO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IMAGE_FILE_DEBUG_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IMAGE_FILE_DLL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IMAGE_FILE_EXECUTABLE_IMAGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IMAGE_FILE_LARGE_ADDRESS_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IMAGE_FILE_LINE_NUMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAGE_FILE_LOCAL_SYMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IMAGE_FILE_MACHINE_AM33": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "IMAGE_FILE_MACHINE_AMD64": reflect.ValueOf(constant.MakeFromLiteral("34404", token.INT, 0)), - "IMAGE_FILE_MACHINE_ARM": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "IMAGE_FILE_MACHINE_ARM64": reflect.ValueOf(constant.MakeFromLiteral("43620", token.INT, 0)), - "IMAGE_FILE_MACHINE_ARMNT": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "IMAGE_FILE_MACHINE_EBC": reflect.ValueOf(constant.MakeFromLiteral("3772", token.INT, 0)), - "IMAGE_FILE_MACHINE_I386": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "IMAGE_FILE_MACHINE_IA64": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IMAGE_FILE_MACHINE_M32R": reflect.ValueOf(constant.MakeFromLiteral("36929", token.INT, 0)), - "IMAGE_FILE_MACHINE_MIPS16": reflect.ValueOf(constant.MakeFromLiteral("614", token.INT, 0)), - "IMAGE_FILE_MACHINE_MIPSFPU": reflect.ValueOf(constant.MakeFromLiteral("870", token.INT, 0)), - "IMAGE_FILE_MACHINE_MIPSFPU16": reflect.ValueOf(constant.MakeFromLiteral("1126", token.INT, 0)), - "IMAGE_FILE_MACHINE_POWERPC": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "IMAGE_FILE_MACHINE_POWERPCFP": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "IMAGE_FILE_MACHINE_R4000": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH3": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH3DSP": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH4": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "IMAGE_FILE_MACHINE_SH5": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "IMAGE_FILE_MACHINE_THUMB": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "IMAGE_FILE_MACHINE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IMAGE_FILE_MACHINE_WCEMIPSV2": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "IMAGE_FILE_NET_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IMAGE_FILE_RELOCS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IMAGE_FILE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IMAGE_FILE_UP_SYSTEM_ONLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_ROM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IMAGE_SUBSYSTEM_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IMAGE_SUBSYSTEM_NATIVE_WINDOWS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IMAGE_SUBSYSTEM_OS2_CUI": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IMAGE_SUBSYSTEM_POSIX_CUI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IMAGE_SUBSYSTEM_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_CE_GUI": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_CUI": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IMAGE_SUBSYSTEM_WINDOWS_GUI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IMAGE_SUBSYSTEM_XBOX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NewFile": reflect.ValueOf(pe.NewFile), - "Open": reflect.ValueOf(pe.Open), - - // type definitions - "COFFSymbol": reflect.ValueOf((*pe.COFFSymbol)(nil)), - "DataDirectory": reflect.ValueOf((*pe.DataDirectory)(nil)), - "File": reflect.ValueOf((*pe.File)(nil)), - "FileHeader": reflect.ValueOf((*pe.FileHeader)(nil)), - "FormatError": reflect.ValueOf((*pe.FormatError)(nil)), - "ImportDirectory": reflect.ValueOf((*pe.ImportDirectory)(nil)), - "OptionalHeader32": reflect.ValueOf((*pe.OptionalHeader32)(nil)), - "OptionalHeader64": reflect.ValueOf((*pe.OptionalHeader64)(nil)), - "Reloc": reflect.ValueOf((*pe.Reloc)(nil)), - "Section": reflect.ValueOf((*pe.Section)(nil)), - "SectionHeader": reflect.ValueOf((*pe.SectionHeader)(nil)), - "SectionHeader32": reflect.ValueOf((*pe.SectionHeader32)(nil)), - "StringTable": reflect.ValueOf((*pe.StringTable)(nil)), - "Symbol": reflect.ValueOf((*pe.Symbol)(nil)), - } -} diff --git a/stdlib/go1_17_debug_plan9obj.go b/stdlib/go1_17_debug_plan9obj.go deleted file mode 100644 index 6dd6a36a4..000000000 --- a/stdlib/go1_17_debug_plan9obj.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "debug/plan9obj" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["debug/plan9obj/plan9obj"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Magic386": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "Magic64": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MagicAMD64": reflect.ValueOf(constant.MakeFromLiteral("35479", token.INT, 0)), - "MagicARM": reflect.ValueOf(constant.MakeFromLiteral("1607", token.INT, 0)), - "NewFile": reflect.ValueOf(plan9obj.NewFile), - "Open": reflect.ValueOf(plan9obj.Open), - - // type definitions - "File": reflect.ValueOf((*plan9obj.File)(nil)), - "FileHeader": reflect.ValueOf((*plan9obj.FileHeader)(nil)), - "Section": reflect.ValueOf((*plan9obj.Section)(nil)), - "SectionHeader": reflect.ValueOf((*plan9obj.SectionHeader)(nil)), - "Sym": reflect.ValueOf((*plan9obj.Sym)(nil)), - } -} diff --git a/stdlib/go1_17_embed.go b/stdlib/go1_17_embed.go deleted file mode 100644 index 794c2efc2..000000000 --- a/stdlib/go1_17_embed.go +++ /dev/null @@ -1,18 +0,0 @@ -// Code generated by 'yaegi extract embed'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "embed" - "reflect" -) - -func init() { - Symbols["embed/embed"] = map[string]reflect.Value{ - // type definitions - "FS": reflect.ValueOf((*embed.FS)(nil)), - } -} diff --git a/stdlib/go1_17_encoding.go b/stdlib/go1_17_encoding.go deleted file mode 100644 index 6fc6a6cb7..000000000 --- a/stdlib/go1_17_encoding.go +++ /dev/null @@ -1,67 +0,0 @@ -// Code generated by 'yaegi extract encoding'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding" - "reflect" -) - -func init() { - Symbols["encoding/encoding"] = map[string]reflect.Value{ - // type definitions - "BinaryMarshaler": reflect.ValueOf((*encoding.BinaryMarshaler)(nil)), - "BinaryUnmarshaler": reflect.ValueOf((*encoding.BinaryUnmarshaler)(nil)), - "TextMarshaler": reflect.ValueOf((*encoding.TextMarshaler)(nil)), - "TextUnmarshaler": reflect.ValueOf((*encoding.TextUnmarshaler)(nil)), - - // interface wrapper definitions - "_BinaryMarshaler": reflect.ValueOf((*_encoding_BinaryMarshaler)(nil)), - "_BinaryUnmarshaler": reflect.ValueOf((*_encoding_BinaryUnmarshaler)(nil)), - "_TextMarshaler": reflect.ValueOf((*_encoding_TextMarshaler)(nil)), - "_TextUnmarshaler": reflect.ValueOf((*_encoding_TextUnmarshaler)(nil)), - } -} - -// _encoding_BinaryMarshaler is an interface wrapper for BinaryMarshaler type -type _encoding_BinaryMarshaler struct { - IValue interface{} - WMarshalBinary func() (data []byte, err error) -} - -func (W _encoding_BinaryMarshaler) MarshalBinary() (data []byte, err error) { - return W.WMarshalBinary() -} - -// _encoding_BinaryUnmarshaler is an interface wrapper for BinaryUnmarshaler type -type _encoding_BinaryUnmarshaler struct { - IValue interface{} - WUnmarshalBinary func(data []byte) error -} - -func (W _encoding_BinaryUnmarshaler) UnmarshalBinary(data []byte) error { - return W.WUnmarshalBinary(data) -} - -// _encoding_TextMarshaler is an interface wrapper for TextMarshaler type -type _encoding_TextMarshaler struct { - IValue interface{} - WMarshalText func() (text []byte, err error) -} - -func (W _encoding_TextMarshaler) MarshalText() (text []byte, err error) { - return W.WMarshalText() -} - -// _encoding_TextUnmarshaler is an interface wrapper for TextUnmarshaler type -type _encoding_TextUnmarshaler struct { - IValue interface{} - WUnmarshalText func(text []byte) error -} - -func (W _encoding_TextUnmarshaler) UnmarshalText(text []byte) error { - return W.WUnmarshalText(text) -} diff --git a/stdlib/go1_17_encoding_ascii85.go b/stdlib/go1_17_encoding_ascii85.go deleted file mode 100644 index 902c3fdb1..000000000 --- a/stdlib/go1_17_encoding_ascii85.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/ascii85" - "reflect" -) - -func init() { - Symbols["encoding/ascii85/ascii85"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(ascii85.Decode), - "Encode": reflect.ValueOf(ascii85.Encode), - "MaxEncodedLen": reflect.ValueOf(ascii85.MaxEncodedLen), - "NewDecoder": reflect.ValueOf(ascii85.NewDecoder), - "NewEncoder": reflect.ValueOf(ascii85.NewEncoder), - - // type definitions - "CorruptInputError": reflect.ValueOf((*ascii85.CorruptInputError)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_asn1.go b/stdlib/go1_17_encoding_asn1.go deleted file mode 100644 index 2573997da..000000000 --- a/stdlib/go1_17_encoding_asn1.go +++ /dev/null @@ -1,57 +0,0 @@ -// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/asn1" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["encoding/asn1/asn1"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ClassApplication": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ClassContextSpecific": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ClassPrivate": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ClassUniversal": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Marshal": reflect.ValueOf(asn1.Marshal), - "MarshalWithParams": reflect.ValueOf(asn1.MarshalWithParams), - "NullBytes": reflect.ValueOf(&asn1.NullBytes).Elem(), - "NullRawValue": reflect.ValueOf(&asn1.NullRawValue).Elem(), - "TagBMPString": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "TagBitString": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TagBoolean": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TagEnum": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TagGeneralString": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TagGeneralizedTime": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TagIA5String": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TagInteger": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TagNull": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TagNumericString": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TagOID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TagOctetString": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TagPrintableString": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TagSequence": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TagSet": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TagT61String": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TagUTCTime": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TagUTF8String": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "Unmarshal": reflect.ValueOf(asn1.Unmarshal), - "UnmarshalWithParams": reflect.ValueOf(asn1.UnmarshalWithParams), - - // type definitions - "BitString": reflect.ValueOf((*asn1.BitString)(nil)), - "Enumerated": reflect.ValueOf((*asn1.Enumerated)(nil)), - "Flag": reflect.ValueOf((*asn1.Flag)(nil)), - "ObjectIdentifier": reflect.ValueOf((*asn1.ObjectIdentifier)(nil)), - "RawContent": reflect.ValueOf((*asn1.RawContent)(nil)), - "RawValue": reflect.ValueOf((*asn1.RawValue)(nil)), - "StructuralError": reflect.ValueOf((*asn1.StructuralError)(nil)), - "SyntaxError": reflect.ValueOf((*asn1.SyntaxError)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_base32.go b/stdlib/go1_17_encoding_base32.go deleted file mode 100644 index f3fc199a9..000000000 --- a/stdlib/go1_17_encoding_base32.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/base32" - "reflect" -) - -func init() { - Symbols["encoding/base32/base32"] = map[string]reflect.Value{ - // function, constant and variable definitions - "HexEncoding": reflect.ValueOf(&base32.HexEncoding).Elem(), - "NewDecoder": reflect.ValueOf(base32.NewDecoder), - "NewEncoder": reflect.ValueOf(base32.NewEncoder), - "NewEncoding": reflect.ValueOf(base32.NewEncoding), - "NoPadding": reflect.ValueOf(base32.NoPadding), - "StdEncoding": reflect.ValueOf(&base32.StdEncoding).Elem(), - "StdPadding": reflect.ValueOf(base32.StdPadding), - - // type definitions - "CorruptInputError": reflect.ValueOf((*base32.CorruptInputError)(nil)), - "Encoding": reflect.ValueOf((*base32.Encoding)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_base64.go b/stdlib/go1_17_encoding_base64.go deleted file mode 100644 index 10d998629..000000000 --- a/stdlib/go1_17_encoding_base64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/base64" - "reflect" -) - -func init() { - Symbols["encoding/base64/base64"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewDecoder": reflect.ValueOf(base64.NewDecoder), - "NewEncoder": reflect.ValueOf(base64.NewEncoder), - "NewEncoding": reflect.ValueOf(base64.NewEncoding), - "NoPadding": reflect.ValueOf(base64.NoPadding), - "RawStdEncoding": reflect.ValueOf(&base64.RawStdEncoding).Elem(), - "RawURLEncoding": reflect.ValueOf(&base64.RawURLEncoding).Elem(), - "StdEncoding": reflect.ValueOf(&base64.StdEncoding).Elem(), - "StdPadding": reflect.ValueOf(base64.StdPadding), - "URLEncoding": reflect.ValueOf(&base64.URLEncoding).Elem(), - - // type definitions - "CorruptInputError": reflect.ValueOf((*base64.CorruptInputError)(nil)), - "Encoding": reflect.ValueOf((*base64.Encoding)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_binary.go b/stdlib/go1_17_encoding_binary.go deleted file mode 100644 index 729c94b2a..000000000 --- a/stdlib/go1_17_encoding_binary.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/binary" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["encoding/binary/binary"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BigEndian": reflect.ValueOf(&binary.BigEndian).Elem(), - "LittleEndian": reflect.ValueOf(&binary.LittleEndian).Elem(), - "MaxVarintLen16": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MaxVarintLen32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MaxVarintLen64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PutUvarint": reflect.ValueOf(binary.PutUvarint), - "PutVarint": reflect.ValueOf(binary.PutVarint), - "Read": reflect.ValueOf(binary.Read), - "ReadUvarint": reflect.ValueOf(binary.ReadUvarint), - "ReadVarint": reflect.ValueOf(binary.ReadVarint), - "Size": reflect.ValueOf(binary.Size), - "Uvarint": reflect.ValueOf(binary.Uvarint), - "Varint": reflect.ValueOf(binary.Varint), - "Write": reflect.ValueOf(binary.Write), - - // type definitions - "ByteOrder": reflect.ValueOf((*binary.ByteOrder)(nil)), - - // interface wrapper definitions - "_ByteOrder": reflect.ValueOf((*_encoding_binary_ByteOrder)(nil)), - } -} - -// _encoding_binary_ByteOrder is an interface wrapper for ByteOrder type -type _encoding_binary_ByteOrder struct { - IValue interface{} - WPutUint16 func(a0 []byte, a1 uint16) - WPutUint32 func(a0 []byte, a1 uint32) - WPutUint64 func(a0 []byte, a1 uint64) - WString func() string - WUint16 func(a0 []byte) uint16 - WUint32 func(a0 []byte) uint32 - WUint64 func(a0 []byte) uint64 -} - -func (W _encoding_binary_ByteOrder) PutUint16(a0 []byte, a1 uint16) { - W.WPutUint16(a0, a1) -} -func (W _encoding_binary_ByteOrder) PutUint32(a0 []byte, a1 uint32) { - W.WPutUint32(a0, a1) -} -func (W _encoding_binary_ByteOrder) PutUint64(a0 []byte, a1 uint64) { - W.WPutUint64(a0, a1) -} -func (W _encoding_binary_ByteOrder) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _encoding_binary_ByteOrder) Uint16(a0 []byte) uint16 { - return W.WUint16(a0) -} -func (W _encoding_binary_ByteOrder) Uint32(a0 []byte) uint32 { - return W.WUint32(a0) -} -func (W _encoding_binary_ByteOrder) Uint64(a0 []byte) uint64 { - return W.WUint64(a0) -} diff --git a/stdlib/go1_17_encoding_csv.go b/stdlib/go1_17_encoding_csv.go deleted file mode 100644 index 2a7095f36..000000000 --- a/stdlib/go1_17_encoding_csv.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/csv" - "reflect" -) - -func init() { - Symbols["encoding/csv/csv"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrBareQuote": reflect.ValueOf(&csv.ErrBareQuote).Elem(), - "ErrFieldCount": reflect.ValueOf(&csv.ErrFieldCount).Elem(), - "ErrQuote": reflect.ValueOf(&csv.ErrQuote).Elem(), - "ErrTrailingComma": reflect.ValueOf(&csv.ErrTrailingComma).Elem(), - "NewReader": reflect.ValueOf(csv.NewReader), - "NewWriter": reflect.ValueOf(csv.NewWriter), - - // type definitions - "ParseError": reflect.ValueOf((*csv.ParseError)(nil)), - "Reader": reflect.ValueOf((*csv.Reader)(nil)), - "Writer": reflect.ValueOf((*csv.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_gob.go b/stdlib/go1_17_encoding_gob.go deleted file mode 100644 index 7292734d0..000000000 --- a/stdlib/go1_17_encoding_gob.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/gob" - "reflect" -) - -func init() { - Symbols["encoding/gob/gob"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewDecoder": reflect.ValueOf(gob.NewDecoder), - "NewEncoder": reflect.ValueOf(gob.NewEncoder), - "Register": reflect.ValueOf(gob.Register), - "RegisterName": reflect.ValueOf(gob.RegisterName), - - // type definitions - "CommonType": reflect.ValueOf((*gob.CommonType)(nil)), - "Decoder": reflect.ValueOf((*gob.Decoder)(nil)), - "Encoder": reflect.ValueOf((*gob.Encoder)(nil)), - "GobDecoder": reflect.ValueOf((*gob.GobDecoder)(nil)), - "GobEncoder": reflect.ValueOf((*gob.GobEncoder)(nil)), - - // interface wrapper definitions - "_GobDecoder": reflect.ValueOf((*_encoding_gob_GobDecoder)(nil)), - "_GobEncoder": reflect.ValueOf((*_encoding_gob_GobEncoder)(nil)), - } -} - -// _encoding_gob_GobDecoder is an interface wrapper for GobDecoder type -type _encoding_gob_GobDecoder struct { - IValue interface{} - WGobDecode func(a0 []byte) error -} - -func (W _encoding_gob_GobDecoder) GobDecode(a0 []byte) error { - return W.WGobDecode(a0) -} - -// _encoding_gob_GobEncoder is an interface wrapper for GobEncoder type -type _encoding_gob_GobEncoder struct { - IValue interface{} - WGobEncode func() ([]byte, error) -} - -func (W _encoding_gob_GobEncoder) GobEncode() ([]byte, error) { - return W.WGobEncode() -} diff --git a/stdlib/go1_17_encoding_hex.go b/stdlib/go1_17_encoding_hex.go deleted file mode 100644 index 227543bb2..000000000 --- a/stdlib/go1_17_encoding_hex.go +++ /dev/null @@ -1,31 +0,0 @@ -// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/hex" - "reflect" -) - -func init() { - Symbols["encoding/hex/hex"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(hex.Decode), - "DecodeString": reflect.ValueOf(hex.DecodeString), - "DecodedLen": reflect.ValueOf(hex.DecodedLen), - "Dump": reflect.ValueOf(hex.Dump), - "Dumper": reflect.ValueOf(hex.Dumper), - "Encode": reflect.ValueOf(hex.Encode), - "EncodeToString": reflect.ValueOf(hex.EncodeToString), - "EncodedLen": reflect.ValueOf(hex.EncodedLen), - "ErrLength": reflect.ValueOf(&hex.ErrLength).Elem(), - "NewDecoder": reflect.ValueOf(hex.NewDecoder), - "NewEncoder": reflect.ValueOf(hex.NewEncoder), - - // type definitions - "InvalidByteError": reflect.ValueOf((*hex.InvalidByteError)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_json.go b/stdlib/go1_17_encoding_json.go deleted file mode 100644 index 053461dbd..000000000 --- a/stdlib/go1_17_encoding_json.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/json" - "reflect" -) - -func init() { - Symbols["encoding/json/json"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compact": reflect.ValueOf(json.Compact), - "HTMLEscape": reflect.ValueOf(json.HTMLEscape), - "Indent": reflect.ValueOf(json.Indent), - "Marshal": reflect.ValueOf(json.Marshal), - "MarshalIndent": reflect.ValueOf(json.MarshalIndent), - "NewDecoder": reflect.ValueOf(json.NewDecoder), - "NewEncoder": reflect.ValueOf(json.NewEncoder), - "Unmarshal": reflect.ValueOf(json.Unmarshal), - "Valid": reflect.ValueOf(json.Valid), - - // type definitions - "Decoder": reflect.ValueOf((*json.Decoder)(nil)), - "Delim": reflect.ValueOf((*json.Delim)(nil)), - "Encoder": reflect.ValueOf((*json.Encoder)(nil)), - "InvalidUTF8Error": reflect.ValueOf((*json.InvalidUTF8Error)(nil)), - "InvalidUnmarshalError": reflect.ValueOf((*json.InvalidUnmarshalError)(nil)), - "Marshaler": reflect.ValueOf((*json.Marshaler)(nil)), - "MarshalerError": reflect.ValueOf((*json.MarshalerError)(nil)), - "Number": reflect.ValueOf((*json.Number)(nil)), - "RawMessage": reflect.ValueOf((*json.RawMessage)(nil)), - "SyntaxError": reflect.ValueOf((*json.SyntaxError)(nil)), - "Token": reflect.ValueOf((*json.Token)(nil)), - "UnmarshalFieldError": reflect.ValueOf((*json.UnmarshalFieldError)(nil)), - "UnmarshalTypeError": reflect.ValueOf((*json.UnmarshalTypeError)(nil)), - "Unmarshaler": reflect.ValueOf((*json.Unmarshaler)(nil)), - "UnsupportedTypeError": reflect.ValueOf((*json.UnsupportedTypeError)(nil)), - "UnsupportedValueError": reflect.ValueOf((*json.UnsupportedValueError)(nil)), - - // interface wrapper definitions - "_Marshaler": reflect.ValueOf((*_encoding_json_Marshaler)(nil)), - "_Token": reflect.ValueOf((*_encoding_json_Token)(nil)), - "_Unmarshaler": reflect.ValueOf((*_encoding_json_Unmarshaler)(nil)), - } -} - -// _encoding_json_Marshaler is an interface wrapper for Marshaler type -type _encoding_json_Marshaler struct { - IValue interface{} - WMarshalJSON func() ([]byte, error) -} - -func (W _encoding_json_Marshaler) MarshalJSON() ([]byte, error) { - return W.WMarshalJSON() -} - -// _encoding_json_Token is an interface wrapper for Token type -type _encoding_json_Token struct { - IValue interface{} -} - -// _encoding_json_Unmarshaler is an interface wrapper for Unmarshaler type -type _encoding_json_Unmarshaler struct { - IValue interface{} - WUnmarshalJSON func(a0 []byte) error -} - -func (W _encoding_json_Unmarshaler) UnmarshalJSON(a0 []byte) error { - return W.WUnmarshalJSON(a0) -} diff --git a/stdlib/go1_17_encoding_pem.go b/stdlib/go1_17_encoding_pem.go deleted file mode 100644 index 825aacaac..000000000 --- a/stdlib/go1_17_encoding_pem.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/pem" - "reflect" -) - -func init() { - Symbols["encoding/pem/pem"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(pem.Decode), - "Encode": reflect.ValueOf(pem.Encode), - "EncodeToMemory": reflect.ValueOf(pem.EncodeToMemory), - - // type definitions - "Block": reflect.ValueOf((*pem.Block)(nil)), - } -} diff --git a/stdlib/go1_17_encoding_xml.go b/stdlib/go1_17_encoding_xml.go deleted file mode 100644 index fecd78807..000000000 --- a/stdlib/go1_17_encoding_xml.go +++ /dev/null @@ -1,116 +0,0 @@ -// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "encoding/xml" - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["encoding/xml/xml"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CopyToken": reflect.ValueOf(xml.CopyToken), - "Escape": reflect.ValueOf(xml.Escape), - "EscapeText": reflect.ValueOf(xml.EscapeText), - "HTMLAutoClose": reflect.ValueOf(&xml.HTMLAutoClose).Elem(), - "HTMLEntity": reflect.ValueOf(&xml.HTMLEntity).Elem(), - "Header": reflect.ValueOf(constant.MakeFromLiteral("\"\\n\"", token.STRING, 0)), - "Marshal": reflect.ValueOf(xml.Marshal), - "MarshalIndent": reflect.ValueOf(xml.MarshalIndent), - "NewDecoder": reflect.ValueOf(xml.NewDecoder), - "NewEncoder": reflect.ValueOf(xml.NewEncoder), - "NewTokenDecoder": reflect.ValueOf(xml.NewTokenDecoder), - "Unmarshal": reflect.ValueOf(xml.Unmarshal), - - // type definitions - "Attr": reflect.ValueOf((*xml.Attr)(nil)), - "CharData": reflect.ValueOf((*xml.CharData)(nil)), - "Comment": reflect.ValueOf((*xml.Comment)(nil)), - "Decoder": reflect.ValueOf((*xml.Decoder)(nil)), - "Directive": reflect.ValueOf((*xml.Directive)(nil)), - "Encoder": reflect.ValueOf((*xml.Encoder)(nil)), - "EndElement": reflect.ValueOf((*xml.EndElement)(nil)), - "Marshaler": reflect.ValueOf((*xml.Marshaler)(nil)), - "MarshalerAttr": reflect.ValueOf((*xml.MarshalerAttr)(nil)), - "Name": reflect.ValueOf((*xml.Name)(nil)), - "ProcInst": reflect.ValueOf((*xml.ProcInst)(nil)), - "StartElement": reflect.ValueOf((*xml.StartElement)(nil)), - "SyntaxError": reflect.ValueOf((*xml.SyntaxError)(nil)), - "TagPathError": reflect.ValueOf((*xml.TagPathError)(nil)), - "Token": reflect.ValueOf((*xml.Token)(nil)), - "TokenReader": reflect.ValueOf((*xml.TokenReader)(nil)), - "UnmarshalError": reflect.ValueOf((*xml.UnmarshalError)(nil)), - "Unmarshaler": reflect.ValueOf((*xml.Unmarshaler)(nil)), - "UnmarshalerAttr": reflect.ValueOf((*xml.UnmarshalerAttr)(nil)), - "UnsupportedTypeError": reflect.ValueOf((*xml.UnsupportedTypeError)(nil)), - - // interface wrapper definitions - "_Marshaler": reflect.ValueOf((*_encoding_xml_Marshaler)(nil)), - "_MarshalerAttr": reflect.ValueOf((*_encoding_xml_MarshalerAttr)(nil)), - "_Token": reflect.ValueOf((*_encoding_xml_Token)(nil)), - "_TokenReader": reflect.ValueOf((*_encoding_xml_TokenReader)(nil)), - "_Unmarshaler": reflect.ValueOf((*_encoding_xml_Unmarshaler)(nil)), - "_UnmarshalerAttr": reflect.ValueOf((*_encoding_xml_UnmarshalerAttr)(nil)), - } -} - -// _encoding_xml_Marshaler is an interface wrapper for Marshaler type -type _encoding_xml_Marshaler struct { - IValue interface{} - WMarshalXML func(e *xml.Encoder, start xml.StartElement) error -} - -func (W _encoding_xml_Marshaler) MarshalXML(e *xml.Encoder, start xml.StartElement) error { - return W.WMarshalXML(e, start) -} - -// _encoding_xml_MarshalerAttr is an interface wrapper for MarshalerAttr type -type _encoding_xml_MarshalerAttr struct { - IValue interface{} - WMarshalXMLAttr func(name xml.Name) (xml.Attr, error) -} - -func (W _encoding_xml_MarshalerAttr) MarshalXMLAttr(name xml.Name) (xml.Attr, error) { - return W.WMarshalXMLAttr(name) -} - -// _encoding_xml_Token is an interface wrapper for Token type -type _encoding_xml_Token struct { - IValue interface{} -} - -// _encoding_xml_TokenReader is an interface wrapper for TokenReader type -type _encoding_xml_TokenReader struct { - IValue interface{} - WToken func() (xml.Token, error) -} - -func (W _encoding_xml_TokenReader) Token() (xml.Token, error) { - return W.WToken() -} - -// _encoding_xml_Unmarshaler is an interface wrapper for Unmarshaler type -type _encoding_xml_Unmarshaler struct { - IValue interface{} - WUnmarshalXML func(d *xml.Decoder, start xml.StartElement) error -} - -func (W _encoding_xml_Unmarshaler) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { - return W.WUnmarshalXML(d, start) -} - -// _encoding_xml_UnmarshalerAttr is an interface wrapper for UnmarshalerAttr type -type _encoding_xml_UnmarshalerAttr struct { - IValue interface{} - WUnmarshalXMLAttr func(attr xml.Attr) error -} - -func (W _encoding_xml_UnmarshalerAttr) UnmarshalXMLAttr(attr xml.Attr) error { - return W.WUnmarshalXMLAttr(attr) -} diff --git a/stdlib/go1_17_errors.go b/stdlib/go1_17_errors.go deleted file mode 100644 index 1b74a50f0..000000000 --- a/stdlib/go1_17_errors.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract errors'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "errors" - "reflect" -) - -func init() { - Symbols["errors/errors"] = map[string]reflect.Value{ - // function, constant and variable definitions - "As": reflect.ValueOf(errors.As), - "Is": reflect.ValueOf(errors.Is), - "New": reflect.ValueOf(errors.New), - "Unwrap": reflect.ValueOf(errors.Unwrap), - } -} diff --git a/stdlib/go1_17_expvar.go b/stdlib/go1_17_expvar.go deleted file mode 100644 index 01c258266..000000000 --- a/stdlib/go1_17_expvar.go +++ /dev/null @@ -1,50 +0,0 @@ -// Code generated by 'yaegi extract expvar'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "expvar" - "reflect" -) - -func init() { - Symbols["expvar/expvar"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Do": reflect.ValueOf(expvar.Do), - "Get": reflect.ValueOf(expvar.Get), - "Handler": reflect.ValueOf(expvar.Handler), - "NewFloat": reflect.ValueOf(expvar.NewFloat), - "NewInt": reflect.ValueOf(expvar.NewInt), - "NewMap": reflect.ValueOf(expvar.NewMap), - "NewString": reflect.ValueOf(expvar.NewString), - "Publish": reflect.ValueOf(expvar.Publish), - - // type definitions - "Float": reflect.ValueOf((*expvar.Float)(nil)), - "Func": reflect.ValueOf((*expvar.Func)(nil)), - "Int": reflect.ValueOf((*expvar.Int)(nil)), - "KeyValue": reflect.ValueOf((*expvar.KeyValue)(nil)), - "Map": reflect.ValueOf((*expvar.Map)(nil)), - "String": reflect.ValueOf((*expvar.String)(nil)), - "Var": reflect.ValueOf((*expvar.Var)(nil)), - - // interface wrapper definitions - "_Var": reflect.ValueOf((*_expvar_Var)(nil)), - } -} - -// _expvar_Var is an interface wrapper for Var type -type _expvar_Var struct { - IValue interface{} - WString func() string -} - -func (W _expvar_Var) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_flag.go b/stdlib/go1_17_flag.go deleted file mode 100644 index 362b31a2b..000000000 --- a/stdlib/go1_17_flag.go +++ /dev/null @@ -1,103 +0,0 @@ -// Code generated by 'yaegi extract flag'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "flag" - "reflect" -) - -func init() { - Symbols["flag/flag"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Arg": reflect.ValueOf(flag.Arg), - "Args": reflect.ValueOf(flag.Args), - "Bool": reflect.ValueOf(flag.Bool), - "BoolVar": reflect.ValueOf(flag.BoolVar), - "CommandLine": reflect.ValueOf(&flag.CommandLine).Elem(), - "ContinueOnError": reflect.ValueOf(flag.ContinueOnError), - "Duration": reflect.ValueOf(flag.Duration), - "DurationVar": reflect.ValueOf(flag.DurationVar), - "ErrHelp": reflect.ValueOf(&flag.ErrHelp).Elem(), - "ExitOnError": reflect.ValueOf(flag.ExitOnError), - "Float64": reflect.ValueOf(flag.Float64), - "Float64Var": reflect.ValueOf(flag.Float64Var), - "Func": reflect.ValueOf(flag.Func), - "Int": reflect.ValueOf(flag.Int), - "Int64": reflect.ValueOf(flag.Int64), - "Int64Var": reflect.ValueOf(flag.Int64Var), - "IntVar": reflect.ValueOf(flag.IntVar), - "Lookup": reflect.ValueOf(flag.Lookup), - "NArg": reflect.ValueOf(flag.NArg), - "NFlag": reflect.ValueOf(flag.NFlag), - "NewFlagSet": reflect.ValueOf(flag.NewFlagSet), - "PanicOnError": reflect.ValueOf(flag.PanicOnError), - "Parse": reflect.ValueOf(flag.Parse), - "Parsed": reflect.ValueOf(flag.Parsed), - "PrintDefaults": reflect.ValueOf(flag.PrintDefaults), - "Set": reflect.ValueOf(flag.Set), - "String": reflect.ValueOf(flag.String), - "StringVar": reflect.ValueOf(flag.StringVar), - "Uint": reflect.ValueOf(flag.Uint), - "Uint64": reflect.ValueOf(flag.Uint64), - "Uint64Var": reflect.ValueOf(flag.Uint64Var), - "UintVar": reflect.ValueOf(flag.UintVar), - "UnquoteUsage": reflect.ValueOf(flag.UnquoteUsage), - "Usage": reflect.ValueOf(&flag.Usage).Elem(), - "Var": reflect.ValueOf(flag.Var), - "Visit": reflect.ValueOf(flag.Visit), - "VisitAll": reflect.ValueOf(flag.VisitAll), - - // type definitions - "ErrorHandling": reflect.ValueOf((*flag.ErrorHandling)(nil)), - "Flag": reflect.ValueOf((*flag.Flag)(nil)), - "FlagSet": reflect.ValueOf((*flag.FlagSet)(nil)), - "Getter": reflect.ValueOf((*flag.Getter)(nil)), - "Value": reflect.ValueOf((*flag.Value)(nil)), - - // interface wrapper definitions - "_Getter": reflect.ValueOf((*_flag_Getter)(nil)), - "_Value": reflect.ValueOf((*_flag_Value)(nil)), - } -} - -// _flag_Getter is an interface wrapper for Getter type -type _flag_Getter struct { - IValue interface{} - WGet func() interface{} - WSet func(a0 string) error - WString func() string -} - -func (W _flag_Getter) Get() interface{} { - return W.WGet() -} -func (W _flag_Getter) Set(a0 string) error { - return W.WSet(a0) -} -func (W _flag_Getter) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} - -// _flag_Value is an interface wrapper for Value type -type _flag_Value struct { - IValue interface{} - WSet func(a0 string) error - WString func() string -} - -func (W _flag_Value) Set(a0 string) error { - return W.WSet(a0) -} -func (W _flag_Value) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_fmt.go b/stdlib/go1_17_fmt.go deleted file mode 100644 index 2691d465d..000000000 --- a/stdlib/go1_17_fmt.go +++ /dev/null @@ -1,147 +0,0 @@ -// Code generated by 'yaegi extract fmt'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "fmt" - "reflect" -) - -func init() { - Symbols["fmt/fmt"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Errorf": reflect.ValueOf(fmt.Errorf), - "Fprint": reflect.ValueOf(fmt.Fprint), - "Fprintf": reflect.ValueOf(fmt.Fprintf), - "Fprintln": reflect.ValueOf(fmt.Fprintln), - "Fscan": reflect.ValueOf(fmt.Fscan), - "Fscanf": reflect.ValueOf(fmt.Fscanf), - "Fscanln": reflect.ValueOf(fmt.Fscanln), - "Print": reflect.ValueOf(fmt.Print), - "Printf": reflect.ValueOf(fmt.Printf), - "Println": reflect.ValueOf(fmt.Println), - "Scan": reflect.ValueOf(fmt.Scan), - "Scanf": reflect.ValueOf(fmt.Scanf), - "Scanln": reflect.ValueOf(fmt.Scanln), - "Sprint": reflect.ValueOf(fmt.Sprint), - "Sprintf": reflect.ValueOf(fmt.Sprintf), - "Sprintln": reflect.ValueOf(fmt.Sprintln), - "Sscan": reflect.ValueOf(fmt.Sscan), - "Sscanf": reflect.ValueOf(fmt.Sscanf), - "Sscanln": reflect.ValueOf(fmt.Sscanln), - - // type definitions - "Formatter": reflect.ValueOf((*fmt.Formatter)(nil)), - "GoStringer": reflect.ValueOf((*fmt.GoStringer)(nil)), - "ScanState": reflect.ValueOf((*fmt.ScanState)(nil)), - "Scanner": reflect.ValueOf((*fmt.Scanner)(nil)), - "State": reflect.ValueOf((*fmt.State)(nil)), - "Stringer": reflect.ValueOf((*fmt.Stringer)(nil)), - - // interface wrapper definitions - "_Formatter": reflect.ValueOf((*_fmt_Formatter)(nil)), - "_GoStringer": reflect.ValueOf((*_fmt_GoStringer)(nil)), - "_ScanState": reflect.ValueOf((*_fmt_ScanState)(nil)), - "_Scanner": reflect.ValueOf((*_fmt_Scanner)(nil)), - "_State": reflect.ValueOf((*_fmt_State)(nil)), - "_Stringer": reflect.ValueOf((*_fmt_Stringer)(nil)), - } -} - -// _fmt_Formatter is an interface wrapper for Formatter type -type _fmt_Formatter struct { - IValue interface{} - WFormat func(f fmt.State, verb rune) -} - -func (W _fmt_Formatter) Format(f fmt.State, verb rune) { - W.WFormat(f, verb) -} - -// _fmt_GoStringer is an interface wrapper for GoStringer type -type _fmt_GoStringer struct { - IValue interface{} - WGoString func() string -} - -func (W _fmt_GoStringer) GoString() string { - return W.WGoString() -} - -// _fmt_ScanState is an interface wrapper for ScanState type -type _fmt_ScanState struct { - IValue interface{} - WRead func(buf []byte) (n int, err error) - WReadRune func() (r rune, size int, err error) - WSkipSpace func() - WToken func(skipSpace bool, f func(rune) bool) (token []byte, err error) - WUnreadRune func() error - WWidth func() (wid int, ok bool) -} - -func (W _fmt_ScanState) Read(buf []byte) (n int, err error) { - return W.WRead(buf) -} -func (W _fmt_ScanState) ReadRune() (r rune, size int, err error) { - return W.WReadRune() -} -func (W _fmt_ScanState) SkipSpace() { - W.WSkipSpace() -} -func (W _fmt_ScanState) Token(skipSpace bool, f func(rune) bool) (token []byte, err error) { - return W.WToken(skipSpace, f) -} -func (W _fmt_ScanState) UnreadRune() error { - return W.WUnreadRune() -} -func (W _fmt_ScanState) Width() (wid int, ok bool) { - return W.WWidth() -} - -// _fmt_Scanner is an interface wrapper for Scanner type -type _fmt_Scanner struct { - IValue interface{} - WScan func(state fmt.ScanState, verb rune) error -} - -func (W _fmt_Scanner) Scan(state fmt.ScanState, verb rune) error { - return W.WScan(state, verb) -} - -// _fmt_State is an interface wrapper for State type -type _fmt_State struct { - IValue interface{} - WFlag func(c int) bool - WPrecision func() (prec int, ok bool) - WWidth func() (wid int, ok bool) - WWrite func(b []byte) (n int, err error) -} - -func (W _fmt_State) Flag(c int) bool { - return W.WFlag(c) -} -func (W _fmt_State) Precision() (prec int, ok bool) { - return W.WPrecision() -} -func (W _fmt_State) Width() (wid int, ok bool) { - return W.WWidth() -} -func (W _fmt_State) Write(b []byte) (n int, err error) { - return W.WWrite(b) -} - -// _fmt_Stringer is an interface wrapper for Stringer type -type _fmt_Stringer struct { - IValue interface{} - WString func() string -} - -func (W _fmt_Stringer) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_go_ast.go b/stdlib/go1_17_go_ast.go deleted file mode 100644 index 12945e016..000000000 --- a/stdlib/go1_17_go_ast.go +++ /dev/null @@ -1,208 +0,0 @@ -// Code generated by 'yaegi extract go/ast'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/ast" - "go/token" - "reflect" -) - -func init() { - Symbols["go/ast/ast"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Bad": reflect.ValueOf(ast.Bad), - "Con": reflect.ValueOf(ast.Con), - "FileExports": reflect.ValueOf(ast.FileExports), - "FilterDecl": reflect.ValueOf(ast.FilterDecl), - "FilterFile": reflect.ValueOf(ast.FilterFile), - "FilterFuncDuplicates": reflect.ValueOf(ast.FilterFuncDuplicates), - "FilterImportDuplicates": reflect.ValueOf(ast.FilterImportDuplicates), - "FilterPackage": reflect.ValueOf(ast.FilterPackage), - "FilterUnassociatedComments": reflect.ValueOf(ast.FilterUnassociatedComments), - "Fprint": reflect.ValueOf(ast.Fprint), - "Fun": reflect.ValueOf(ast.Fun), - "Inspect": reflect.ValueOf(ast.Inspect), - "IsExported": reflect.ValueOf(ast.IsExported), - "Lbl": reflect.ValueOf(ast.Lbl), - "MergePackageFiles": reflect.ValueOf(ast.MergePackageFiles), - "NewCommentMap": reflect.ValueOf(ast.NewCommentMap), - "NewIdent": reflect.ValueOf(ast.NewIdent), - "NewObj": reflect.ValueOf(ast.NewObj), - "NewPackage": reflect.ValueOf(ast.NewPackage), - "NewScope": reflect.ValueOf(ast.NewScope), - "NotNilFilter": reflect.ValueOf(ast.NotNilFilter), - "PackageExports": reflect.ValueOf(ast.PackageExports), - "Pkg": reflect.ValueOf(ast.Pkg), - "Print": reflect.ValueOf(ast.Print), - "RECV": reflect.ValueOf(ast.RECV), - "SEND": reflect.ValueOf(ast.SEND), - "SortImports": reflect.ValueOf(ast.SortImports), - "Typ": reflect.ValueOf(ast.Typ), - "Var": reflect.ValueOf(ast.Var), - "Walk": reflect.ValueOf(ast.Walk), - - // type definitions - "ArrayType": reflect.ValueOf((*ast.ArrayType)(nil)), - "AssignStmt": reflect.ValueOf((*ast.AssignStmt)(nil)), - "BadDecl": reflect.ValueOf((*ast.BadDecl)(nil)), - "BadExpr": reflect.ValueOf((*ast.BadExpr)(nil)), - "BadStmt": reflect.ValueOf((*ast.BadStmt)(nil)), - "BasicLit": reflect.ValueOf((*ast.BasicLit)(nil)), - "BinaryExpr": reflect.ValueOf((*ast.BinaryExpr)(nil)), - "BlockStmt": reflect.ValueOf((*ast.BlockStmt)(nil)), - "BranchStmt": reflect.ValueOf((*ast.BranchStmt)(nil)), - "CallExpr": reflect.ValueOf((*ast.CallExpr)(nil)), - "CaseClause": reflect.ValueOf((*ast.CaseClause)(nil)), - "ChanDir": reflect.ValueOf((*ast.ChanDir)(nil)), - "ChanType": reflect.ValueOf((*ast.ChanType)(nil)), - "CommClause": reflect.ValueOf((*ast.CommClause)(nil)), - "Comment": reflect.ValueOf((*ast.Comment)(nil)), - "CommentGroup": reflect.ValueOf((*ast.CommentGroup)(nil)), - "CommentMap": reflect.ValueOf((*ast.CommentMap)(nil)), - "CompositeLit": reflect.ValueOf((*ast.CompositeLit)(nil)), - "Decl": reflect.ValueOf((*ast.Decl)(nil)), - "DeclStmt": reflect.ValueOf((*ast.DeclStmt)(nil)), - "DeferStmt": reflect.ValueOf((*ast.DeferStmt)(nil)), - "Ellipsis": reflect.ValueOf((*ast.Ellipsis)(nil)), - "EmptyStmt": reflect.ValueOf((*ast.EmptyStmt)(nil)), - "Expr": reflect.ValueOf((*ast.Expr)(nil)), - "ExprStmt": reflect.ValueOf((*ast.ExprStmt)(nil)), - "Field": reflect.ValueOf((*ast.Field)(nil)), - "FieldFilter": reflect.ValueOf((*ast.FieldFilter)(nil)), - "FieldList": reflect.ValueOf((*ast.FieldList)(nil)), - "File": reflect.ValueOf((*ast.File)(nil)), - "Filter": reflect.ValueOf((*ast.Filter)(nil)), - "ForStmt": reflect.ValueOf((*ast.ForStmt)(nil)), - "FuncDecl": reflect.ValueOf((*ast.FuncDecl)(nil)), - "FuncLit": reflect.ValueOf((*ast.FuncLit)(nil)), - "FuncType": reflect.ValueOf((*ast.FuncType)(nil)), - "GenDecl": reflect.ValueOf((*ast.GenDecl)(nil)), - "GoStmt": reflect.ValueOf((*ast.GoStmt)(nil)), - "Ident": reflect.ValueOf((*ast.Ident)(nil)), - "IfStmt": reflect.ValueOf((*ast.IfStmt)(nil)), - "ImportSpec": reflect.ValueOf((*ast.ImportSpec)(nil)), - "Importer": reflect.ValueOf((*ast.Importer)(nil)), - "IncDecStmt": reflect.ValueOf((*ast.IncDecStmt)(nil)), - "IndexExpr": reflect.ValueOf((*ast.IndexExpr)(nil)), - "InterfaceType": reflect.ValueOf((*ast.InterfaceType)(nil)), - "KeyValueExpr": reflect.ValueOf((*ast.KeyValueExpr)(nil)), - "LabeledStmt": reflect.ValueOf((*ast.LabeledStmt)(nil)), - "MapType": reflect.ValueOf((*ast.MapType)(nil)), - "MergeMode": reflect.ValueOf((*ast.MergeMode)(nil)), - "Node": reflect.ValueOf((*ast.Node)(nil)), - "ObjKind": reflect.ValueOf((*ast.ObjKind)(nil)), - "Object": reflect.ValueOf((*ast.Object)(nil)), - "Package": reflect.ValueOf((*ast.Package)(nil)), - "ParenExpr": reflect.ValueOf((*ast.ParenExpr)(nil)), - "RangeStmt": reflect.ValueOf((*ast.RangeStmt)(nil)), - "ReturnStmt": reflect.ValueOf((*ast.ReturnStmt)(nil)), - "Scope": reflect.ValueOf((*ast.Scope)(nil)), - "SelectStmt": reflect.ValueOf((*ast.SelectStmt)(nil)), - "SelectorExpr": reflect.ValueOf((*ast.SelectorExpr)(nil)), - "SendStmt": reflect.ValueOf((*ast.SendStmt)(nil)), - "SliceExpr": reflect.ValueOf((*ast.SliceExpr)(nil)), - "Spec": reflect.ValueOf((*ast.Spec)(nil)), - "StarExpr": reflect.ValueOf((*ast.StarExpr)(nil)), - "Stmt": reflect.ValueOf((*ast.Stmt)(nil)), - "StructType": reflect.ValueOf((*ast.StructType)(nil)), - "SwitchStmt": reflect.ValueOf((*ast.SwitchStmt)(nil)), - "TypeAssertExpr": reflect.ValueOf((*ast.TypeAssertExpr)(nil)), - "TypeSpec": reflect.ValueOf((*ast.TypeSpec)(nil)), - "TypeSwitchStmt": reflect.ValueOf((*ast.TypeSwitchStmt)(nil)), - "UnaryExpr": reflect.ValueOf((*ast.UnaryExpr)(nil)), - "ValueSpec": reflect.ValueOf((*ast.ValueSpec)(nil)), - "Visitor": reflect.ValueOf((*ast.Visitor)(nil)), - - // interface wrapper definitions - "_Decl": reflect.ValueOf((*_go_ast_Decl)(nil)), - "_Expr": reflect.ValueOf((*_go_ast_Expr)(nil)), - "_Node": reflect.ValueOf((*_go_ast_Node)(nil)), - "_Spec": reflect.ValueOf((*_go_ast_Spec)(nil)), - "_Stmt": reflect.ValueOf((*_go_ast_Stmt)(nil)), - "_Visitor": reflect.ValueOf((*_go_ast_Visitor)(nil)), - } -} - -// _go_ast_Decl is an interface wrapper for Decl type -type _go_ast_Decl struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Decl) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Decl) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Expr is an interface wrapper for Expr type -type _go_ast_Expr struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Expr) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Expr) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Node is an interface wrapper for Node type -type _go_ast_Node struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Node) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Node) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Spec is an interface wrapper for Spec type -type _go_ast_Spec struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Spec) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Spec) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Stmt is an interface wrapper for Stmt type -type _go_ast_Stmt struct { - IValue interface{} - WEnd func() token.Pos - WPos func() token.Pos -} - -func (W _go_ast_Stmt) End() token.Pos { - return W.WEnd() -} -func (W _go_ast_Stmt) Pos() token.Pos { - return W.WPos() -} - -// _go_ast_Visitor is an interface wrapper for Visitor type -type _go_ast_Visitor struct { - IValue interface{} - WVisit func(node ast.Node) (w ast.Visitor) -} - -func (W _go_ast_Visitor) Visit(node ast.Node) (w ast.Visitor) { - return W.WVisit(node) -} diff --git a/stdlib/go1_17_go_build.go b/stdlib/go1_17_go_build.go deleted file mode 100644 index 7f98a7a17..000000000 --- a/stdlib/go1_17_go_build.go +++ /dev/null @@ -1,34 +0,0 @@ -// Code generated by 'yaegi extract go/build'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/build" - "reflect" -) - -func init() { - Symbols["go/build/build"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllowBinary": reflect.ValueOf(build.AllowBinary), - "ArchChar": reflect.ValueOf(build.ArchChar), - "Default": reflect.ValueOf(&build.Default).Elem(), - "FindOnly": reflect.ValueOf(build.FindOnly), - "IgnoreVendor": reflect.ValueOf(build.IgnoreVendor), - "Import": reflect.ValueOf(build.Import), - "ImportComment": reflect.ValueOf(build.ImportComment), - "ImportDir": reflect.ValueOf(build.ImportDir), - "IsLocalImport": reflect.ValueOf(build.IsLocalImport), - "ToolDir": reflect.ValueOf(&build.ToolDir).Elem(), - - // type definitions - "Context": reflect.ValueOf((*build.Context)(nil)), - "ImportMode": reflect.ValueOf((*build.ImportMode)(nil)), - "MultiplePackageError": reflect.ValueOf((*build.MultiplePackageError)(nil)), - "NoGoError": reflect.ValueOf((*build.NoGoError)(nil)), - "Package": reflect.ValueOf((*build.Package)(nil)), - } -} diff --git a/stdlib/go1_17_go_build_constraint.go b/stdlib/go1_17_go_build_constraint.go deleted file mode 100644 index 49996cf8e..000000000 --- a/stdlib/go1_17_go_build_constraint.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/build/constraint" - "reflect" -) - -func init() { - Symbols["go/build/constraint/constraint"] = map[string]reflect.Value{ - // function, constant and variable definitions - "IsGoBuild": reflect.ValueOf(constraint.IsGoBuild), - "IsPlusBuild": reflect.ValueOf(constraint.IsPlusBuild), - "Parse": reflect.ValueOf(constraint.Parse), - "PlusBuildLines": reflect.ValueOf(constraint.PlusBuildLines), - - // type definitions - "AndExpr": reflect.ValueOf((*constraint.AndExpr)(nil)), - "Expr": reflect.ValueOf((*constraint.Expr)(nil)), - "NotExpr": reflect.ValueOf((*constraint.NotExpr)(nil)), - "OrExpr": reflect.ValueOf((*constraint.OrExpr)(nil)), - "SyntaxError": reflect.ValueOf((*constraint.SyntaxError)(nil)), - "TagExpr": reflect.ValueOf((*constraint.TagExpr)(nil)), - - // interface wrapper definitions - "_Expr": reflect.ValueOf((*_go_build_constraint_Expr)(nil)), - } -} - -// _go_build_constraint_Expr is an interface wrapper for Expr type -type _go_build_constraint_Expr struct { - IValue interface{} - WEval func(ok func(tag string) bool) bool - WString func() string -} - -func (W _go_build_constraint_Expr) Eval(ok func(tag string) bool) bool { - return W.WEval(ok) -} -func (W _go_build_constraint_Expr) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_go_constant.go b/stdlib/go1_17_go_constant.go deleted file mode 100644 index 88285c05b..000000000 --- a/stdlib/go1_17_go_constant.go +++ /dev/null @@ -1,82 +0,0 @@ -// Code generated by 'yaegi extract go/constant'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "reflect" -) - -func init() { - Symbols["go/constant/constant"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BinaryOp": reflect.ValueOf(constant.BinaryOp), - "BitLen": reflect.ValueOf(constant.BitLen), - "Bool": reflect.ValueOf(constant.Bool), - "BoolVal": reflect.ValueOf(constant.BoolVal), - "Bytes": reflect.ValueOf(constant.Bytes), - "Compare": reflect.ValueOf(constant.Compare), - "Complex": reflect.ValueOf(constant.Complex), - "Denom": reflect.ValueOf(constant.Denom), - "Float": reflect.ValueOf(constant.Float), - "Float32Val": reflect.ValueOf(constant.Float32Val), - "Float64Val": reflect.ValueOf(constant.Float64Val), - "Imag": reflect.ValueOf(constant.Imag), - "Int": reflect.ValueOf(constant.Int), - "Int64Val": reflect.ValueOf(constant.Int64Val), - "Make": reflect.ValueOf(constant.Make), - "MakeBool": reflect.ValueOf(constant.MakeBool), - "MakeFloat64": reflect.ValueOf(constant.MakeFloat64), - "MakeFromBytes": reflect.ValueOf(constant.MakeFromBytes), - "MakeFromLiteral": reflect.ValueOf(constant.MakeFromLiteral), - "MakeImag": reflect.ValueOf(constant.MakeImag), - "MakeInt64": reflect.ValueOf(constant.MakeInt64), - "MakeString": reflect.ValueOf(constant.MakeString), - "MakeUint64": reflect.ValueOf(constant.MakeUint64), - "MakeUnknown": reflect.ValueOf(constant.MakeUnknown), - "Num": reflect.ValueOf(constant.Num), - "Real": reflect.ValueOf(constant.Real), - "Shift": reflect.ValueOf(constant.Shift), - "Sign": reflect.ValueOf(constant.Sign), - "String": reflect.ValueOf(constant.String), - "StringVal": reflect.ValueOf(constant.StringVal), - "ToComplex": reflect.ValueOf(constant.ToComplex), - "ToFloat": reflect.ValueOf(constant.ToFloat), - "ToInt": reflect.ValueOf(constant.ToInt), - "Uint64Val": reflect.ValueOf(constant.Uint64Val), - "UnaryOp": reflect.ValueOf(constant.UnaryOp), - "Unknown": reflect.ValueOf(constant.Unknown), - "Val": reflect.ValueOf(constant.Val), - - // type definitions - "Kind": reflect.ValueOf((*constant.Kind)(nil)), - "Value": reflect.ValueOf((*constant.Value)(nil)), - - // interface wrapper definitions - "_Value": reflect.ValueOf((*_go_constant_Value)(nil)), - } -} - -// _go_constant_Value is an interface wrapper for Value type -type _go_constant_Value struct { - IValue interface{} - WExactString func() string - WKind func() constant.Kind - WString func() string -} - -func (W _go_constant_Value) ExactString() string { - return W.WExactString() -} -func (W _go_constant_Value) Kind() constant.Kind { - return W.WKind() -} -func (W _go_constant_Value) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_go_doc.go b/stdlib/go1_17_go_doc.go deleted file mode 100644 index 313f9ac81..000000000 --- a/stdlib/go1_17_go_doc.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by 'yaegi extract go/doc'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/doc" - "reflect" -) - -func init() { - Symbols["go/doc/doc"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllDecls": reflect.ValueOf(doc.AllDecls), - "AllMethods": reflect.ValueOf(doc.AllMethods), - "Examples": reflect.ValueOf(doc.Examples), - "IllegalPrefixes": reflect.ValueOf(&doc.IllegalPrefixes).Elem(), - "IsPredeclared": reflect.ValueOf(doc.IsPredeclared), - "New": reflect.ValueOf(doc.New), - "NewFromFiles": reflect.ValueOf(doc.NewFromFiles), - "PreserveAST": reflect.ValueOf(doc.PreserveAST), - "Synopsis": reflect.ValueOf(doc.Synopsis), - "ToHTML": reflect.ValueOf(doc.ToHTML), - "ToText": reflect.ValueOf(doc.ToText), - - // type definitions - "Example": reflect.ValueOf((*doc.Example)(nil)), - "Filter": reflect.ValueOf((*doc.Filter)(nil)), - "Func": reflect.ValueOf((*doc.Func)(nil)), - "Mode": reflect.ValueOf((*doc.Mode)(nil)), - "Note": reflect.ValueOf((*doc.Note)(nil)), - "Package": reflect.ValueOf((*doc.Package)(nil)), - "Type": reflect.ValueOf((*doc.Type)(nil)), - "Value": reflect.ValueOf((*doc.Value)(nil)), - } -} diff --git a/stdlib/go1_17_go_format.go b/stdlib/go1_17_go_format.go deleted file mode 100644 index bd6722d88..000000000 --- a/stdlib/go1_17_go_format.go +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by 'yaegi extract go/format'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/format" - "reflect" -) - -func init() { - Symbols["go/format/format"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Node": reflect.ValueOf(format.Node), - "Source": reflect.ValueOf(format.Source), - } -} diff --git a/stdlib/go1_17_go_importer.go b/stdlib/go1_17_go_importer.go deleted file mode 100644 index 48b876ae6..000000000 --- a/stdlib/go1_17_go_importer.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract go/importer'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/importer" - "reflect" -) - -func init() { - Symbols["go/importer/importer"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Default": reflect.ValueOf(importer.Default), - "For": reflect.ValueOf(importer.For), - "ForCompiler": reflect.ValueOf(importer.ForCompiler), - - // type definitions - "Lookup": reflect.ValueOf((*importer.Lookup)(nil)), - } -} diff --git a/stdlib/go1_17_go_parser.go b/stdlib/go1_17_go_parser.go deleted file mode 100644 index 6b6a100f7..000000000 --- a/stdlib/go1_17_go_parser.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by 'yaegi extract go/parser'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/parser" - "reflect" -) - -func init() { - Symbols["go/parser/parser"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllErrors": reflect.ValueOf(parser.AllErrors), - "DeclarationErrors": reflect.ValueOf(parser.DeclarationErrors), - "ImportsOnly": reflect.ValueOf(parser.ImportsOnly), - "PackageClauseOnly": reflect.ValueOf(parser.PackageClauseOnly), - "ParseComments": reflect.ValueOf(parser.ParseComments), - "ParseDir": reflect.ValueOf(parser.ParseDir), - "ParseExpr": reflect.ValueOf(parser.ParseExpr), - "ParseExprFrom": reflect.ValueOf(parser.ParseExprFrom), - "ParseFile": reflect.ValueOf(parser.ParseFile), - "SkipObjectResolution": reflect.ValueOf(parser.SkipObjectResolution), - "SpuriousErrors": reflect.ValueOf(parser.SpuriousErrors), - "Trace": reflect.ValueOf(parser.Trace), - - // type definitions - "Mode": reflect.ValueOf((*parser.Mode)(nil)), - } -} diff --git a/stdlib/go1_17_go_printer.go b/stdlib/go1_17_go_printer.go deleted file mode 100644 index 247ace511..000000000 --- a/stdlib/go1_17_go_printer.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract go/printer'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/printer" - "reflect" -) - -func init() { - Symbols["go/printer/printer"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Fprint": reflect.ValueOf(printer.Fprint), - "RawFormat": reflect.ValueOf(printer.RawFormat), - "SourcePos": reflect.ValueOf(printer.SourcePos), - "TabIndent": reflect.ValueOf(printer.TabIndent), - "UseSpaces": reflect.ValueOf(printer.UseSpaces), - - // type definitions - "CommentedNode": reflect.ValueOf((*printer.CommentedNode)(nil)), - "Config": reflect.ValueOf((*printer.Config)(nil)), - "Mode": reflect.ValueOf((*printer.Mode)(nil)), - } -} diff --git a/stdlib/go1_17_go_scanner.go b/stdlib/go1_17_go_scanner.go deleted file mode 100644 index 370dce575..000000000 --- a/stdlib/go1_17_go_scanner.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/scanner" - "reflect" -) - -func init() { - Symbols["go/scanner/scanner"] = map[string]reflect.Value{ - // function, constant and variable definitions - "PrintError": reflect.ValueOf(scanner.PrintError), - "ScanComments": reflect.ValueOf(scanner.ScanComments), - - // type definitions - "Error": reflect.ValueOf((*scanner.Error)(nil)), - "ErrorHandler": reflect.ValueOf((*scanner.ErrorHandler)(nil)), - "ErrorList": reflect.ValueOf((*scanner.ErrorList)(nil)), - "Mode": reflect.ValueOf((*scanner.Mode)(nil)), - "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), - } -} diff --git a/stdlib/go1_17_go_token.go b/stdlib/go1_17_go_token.go deleted file mode 100644 index 8b5b24657..000000000 --- a/stdlib/go1_17_go_token.go +++ /dev/null @@ -1,115 +0,0 @@ -// Code generated by 'yaegi extract go/token'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" -) - -func init() { - Symbols["go/token/token"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ADD": reflect.ValueOf(token.ADD), - "ADD_ASSIGN": reflect.ValueOf(token.ADD_ASSIGN), - "AND": reflect.ValueOf(token.AND), - "AND_ASSIGN": reflect.ValueOf(token.AND_ASSIGN), - "AND_NOT": reflect.ValueOf(token.AND_NOT), - "AND_NOT_ASSIGN": reflect.ValueOf(token.AND_NOT_ASSIGN), - "ARROW": reflect.ValueOf(token.ARROW), - "ASSIGN": reflect.ValueOf(token.ASSIGN), - "BREAK": reflect.ValueOf(token.BREAK), - "CASE": reflect.ValueOf(token.CASE), - "CHAN": reflect.ValueOf(token.CHAN), - "CHAR": reflect.ValueOf(token.CHAR), - "COLON": reflect.ValueOf(token.COLON), - "COMMA": reflect.ValueOf(token.COMMA), - "COMMENT": reflect.ValueOf(token.COMMENT), - "CONST": reflect.ValueOf(token.CONST), - "CONTINUE": reflect.ValueOf(token.CONTINUE), - "DEC": reflect.ValueOf(token.DEC), - "DEFAULT": reflect.ValueOf(token.DEFAULT), - "DEFER": reflect.ValueOf(token.DEFER), - "DEFINE": reflect.ValueOf(token.DEFINE), - "ELLIPSIS": reflect.ValueOf(token.ELLIPSIS), - "ELSE": reflect.ValueOf(token.ELSE), - "EOF": reflect.ValueOf(token.EOF), - "EQL": reflect.ValueOf(token.EQL), - "FALLTHROUGH": reflect.ValueOf(token.FALLTHROUGH), - "FLOAT": reflect.ValueOf(token.FLOAT), - "FOR": reflect.ValueOf(token.FOR), - "FUNC": reflect.ValueOf(token.FUNC), - "GEQ": reflect.ValueOf(token.GEQ), - "GO": reflect.ValueOf(token.GO), - "GOTO": reflect.ValueOf(token.GOTO), - "GTR": reflect.ValueOf(token.GTR), - "HighestPrec": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IDENT": reflect.ValueOf(token.IDENT), - "IF": reflect.ValueOf(token.IF), - "ILLEGAL": reflect.ValueOf(token.ILLEGAL), - "IMAG": reflect.ValueOf(token.IMAG), - "IMPORT": reflect.ValueOf(token.IMPORT), - "INC": reflect.ValueOf(token.INC), - "INT": reflect.ValueOf(token.INT), - "INTERFACE": reflect.ValueOf(token.INTERFACE), - "IsExported": reflect.ValueOf(token.IsExported), - "IsIdentifier": reflect.ValueOf(token.IsIdentifier), - "IsKeyword": reflect.ValueOf(token.IsKeyword), - "LAND": reflect.ValueOf(token.LAND), - "LBRACE": reflect.ValueOf(token.LBRACE), - "LBRACK": reflect.ValueOf(token.LBRACK), - "LEQ": reflect.ValueOf(token.LEQ), - "LOR": reflect.ValueOf(token.LOR), - "LPAREN": reflect.ValueOf(token.LPAREN), - "LSS": reflect.ValueOf(token.LSS), - "Lookup": reflect.ValueOf(token.Lookup), - "LowestPrec": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP": reflect.ValueOf(token.MAP), - "MUL": reflect.ValueOf(token.MUL), - "MUL_ASSIGN": reflect.ValueOf(token.MUL_ASSIGN), - "NEQ": reflect.ValueOf(token.NEQ), - "NOT": reflect.ValueOf(token.NOT), - "NewFileSet": reflect.ValueOf(token.NewFileSet), - "NoPos": reflect.ValueOf(token.NoPos), - "OR": reflect.ValueOf(token.OR), - "OR_ASSIGN": reflect.ValueOf(token.OR_ASSIGN), - "PACKAGE": reflect.ValueOf(token.PACKAGE), - "PERIOD": reflect.ValueOf(token.PERIOD), - "QUO": reflect.ValueOf(token.QUO), - "QUO_ASSIGN": reflect.ValueOf(token.QUO_ASSIGN), - "RANGE": reflect.ValueOf(token.RANGE), - "RBRACE": reflect.ValueOf(token.RBRACE), - "RBRACK": reflect.ValueOf(token.RBRACK), - "REM": reflect.ValueOf(token.REM), - "REM_ASSIGN": reflect.ValueOf(token.REM_ASSIGN), - "RETURN": reflect.ValueOf(token.RETURN), - "RPAREN": reflect.ValueOf(token.RPAREN), - "SELECT": reflect.ValueOf(token.SELECT), - "SEMICOLON": reflect.ValueOf(token.SEMICOLON), - "SHL": reflect.ValueOf(token.SHL), - "SHL_ASSIGN": reflect.ValueOf(token.SHL_ASSIGN), - "SHR": reflect.ValueOf(token.SHR), - "SHR_ASSIGN": reflect.ValueOf(token.SHR_ASSIGN), - "STRING": reflect.ValueOf(token.STRING), - "STRUCT": reflect.ValueOf(token.STRUCT), - "SUB": reflect.ValueOf(token.SUB), - "SUB_ASSIGN": reflect.ValueOf(token.SUB_ASSIGN), - "SWITCH": reflect.ValueOf(token.SWITCH), - "TYPE": reflect.ValueOf(token.TYPE), - "UnaryPrec": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VAR": reflect.ValueOf(token.VAR), - "XOR": reflect.ValueOf(token.XOR), - "XOR_ASSIGN": reflect.ValueOf(token.XOR_ASSIGN), - - // type definitions - "File": reflect.ValueOf((*token.File)(nil)), - "FileSet": reflect.ValueOf((*token.FileSet)(nil)), - "Pos": reflect.ValueOf((*token.Pos)(nil)), - "Position": reflect.ValueOf((*token.Position)(nil)), - "Token": reflect.ValueOf((*token.Token)(nil)), - } -} diff --git a/stdlib/go1_17_go_types.go b/stdlib/go1_17_go_types.go deleted file mode 100644 index dc4aa1f1a..000000000 --- a/stdlib/go1_17_go_types.go +++ /dev/null @@ -1,262 +0,0 @@ -// Code generated by 'yaegi extract go/types'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/token" - "go/types" - "reflect" -) - -func init() { - Symbols["go/types/types"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AssertableTo": reflect.ValueOf(types.AssertableTo), - "AssignableTo": reflect.ValueOf(types.AssignableTo), - "Bool": reflect.ValueOf(types.Bool), - "Byte": reflect.ValueOf(types.Byte), - "CheckExpr": reflect.ValueOf(types.CheckExpr), - "Comparable": reflect.ValueOf(types.Comparable), - "Complex128": reflect.ValueOf(types.Complex128), - "Complex64": reflect.ValueOf(types.Complex64), - "ConvertibleTo": reflect.ValueOf(types.ConvertibleTo), - "DefPredeclaredTestFuncs": reflect.ValueOf(types.DefPredeclaredTestFuncs), - "Default": reflect.ValueOf(types.Default), - "Eval": reflect.ValueOf(types.Eval), - "ExprString": reflect.ValueOf(types.ExprString), - "FieldVal": reflect.ValueOf(types.FieldVal), - "Float32": reflect.ValueOf(types.Float32), - "Float64": reflect.ValueOf(types.Float64), - "Id": reflect.ValueOf(types.Id), - "Identical": reflect.ValueOf(types.Identical), - "IdenticalIgnoreTags": reflect.ValueOf(types.IdenticalIgnoreTags), - "Implements": reflect.ValueOf(types.Implements), - "Int": reflect.ValueOf(types.Int), - "Int16": reflect.ValueOf(types.Int16), - "Int32": reflect.ValueOf(types.Int32), - "Int64": reflect.ValueOf(types.Int64), - "Int8": reflect.ValueOf(types.Int8), - "Invalid": reflect.ValueOf(types.Invalid), - "IsBoolean": reflect.ValueOf(types.IsBoolean), - "IsComplex": reflect.ValueOf(types.IsComplex), - "IsConstType": reflect.ValueOf(types.IsConstType), - "IsFloat": reflect.ValueOf(types.IsFloat), - "IsInteger": reflect.ValueOf(types.IsInteger), - "IsInterface": reflect.ValueOf(types.IsInterface), - "IsNumeric": reflect.ValueOf(types.IsNumeric), - "IsOrdered": reflect.ValueOf(types.IsOrdered), - "IsString": reflect.ValueOf(types.IsString), - "IsUnsigned": reflect.ValueOf(types.IsUnsigned), - "IsUntyped": reflect.ValueOf(types.IsUntyped), - "LookupFieldOrMethod": reflect.ValueOf(types.LookupFieldOrMethod), - "MethodExpr": reflect.ValueOf(types.MethodExpr), - "MethodVal": reflect.ValueOf(types.MethodVal), - "MissingMethod": reflect.ValueOf(types.MissingMethod), - "NewArray": reflect.ValueOf(types.NewArray), - "NewChan": reflect.ValueOf(types.NewChan), - "NewChecker": reflect.ValueOf(types.NewChecker), - "NewConst": reflect.ValueOf(types.NewConst), - "NewField": reflect.ValueOf(types.NewField), - "NewFunc": reflect.ValueOf(types.NewFunc), - "NewInterface": reflect.ValueOf(types.NewInterface), - "NewInterfaceType": reflect.ValueOf(types.NewInterfaceType), - "NewLabel": reflect.ValueOf(types.NewLabel), - "NewMap": reflect.ValueOf(types.NewMap), - "NewMethodSet": reflect.ValueOf(types.NewMethodSet), - "NewNamed": reflect.ValueOf(types.NewNamed), - "NewPackage": reflect.ValueOf(types.NewPackage), - "NewParam": reflect.ValueOf(types.NewParam), - "NewPkgName": reflect.ValueOf(types.NewPkgName), - "NewPointer": reflect.ValueOf(types.NewPointer), - "NewScope": reflect.ValueOf(types.NewScope), - "NewSignature": reflect.ValueOf(types.NewSignature), - "NewSlice": reflect.ValueOf(types.NewSlice), - "NewStruct": reflect.ValueOf(types.NewStruct), - "NewTuple": reflect.ValueOf(types.NewTuple), - "NewTypeName": reflect.ValueOf(types.NewTypeName), - "NewVar": reflect.ValueOf(types.NewVar), - "ObjectString": reflect.ValueOf(types.ObjectString), - "RecvOnly": reflect.ValueOf(types.RecvOnly), - "RelativeTo": reflect.ValueOf(types.RelativeTo), - "Rune": reflect.ValueOf(types.Rune), - "SelectionString": reflect.ValueOf(types.SelectionString), - "SendOnly": reflect.ValueOf(types.SendOnly), - "SendRecv": reflect.ValueOf(types.SendRecv), - "SizesFor": reflect.ValueOf(types.SizesFor), - "String": reflect.ValueOf(types.String), - "Typ": reflect.ValueOf(&types.Typ).Elem(), - "TypeString": reflect.ValueOf(types.TypeString), - "Uint": reflect.ValueOf(types.Uint), - "Uint16": reflect.ValueOf(types.Uint16), - "Uint32": reflect.ValueOf(types.Uint32), - "Uint64": reflect.ValueOf(types.Uint64), - "Uint8": reflect.ValueOf(types.Uint8), - "Uintptr": reflect.ValueOf(types.Uintptr), - "Universe": reflect.ValueOf(&types.Universe).Elem(), - "Unsafe": reflect.ValueOf(&types.Unsafe).Elem(), - "UnsafePointer": reflect.ValueOf(types.UnsafePointer), - "UntypedBool": reflect.ValueOf(types.UntypedBool), - "UntypedComplex": reflect.ValueOf(types.UntypedComplex), - "UntypedFloat": reflect.ValueOf(types.UntypedFloat), - "UntypedInt": reflect.ValueOf(types.UntypedInt), - "UntypedNil": reflect.ValueOf(types.UntypedNil), - "UntypedRune": reflect.ValueOf(types.UntypedRune), - "UntypedString": reflect.ValueOf(types.UntypedString), - "WriteExpr": reflect.ValueOf(types.WriteExpr), - "WriteSignature": reflect.ValueOf(types.WriteSignature), - "WriteType": reflect.ValueOf(types.WriteType), - - // type definitions - "Array": reflect.ValueOf((*types.Array)(nil)), - "Basic": reflect.ValueOf((*types.Basic)(nil)), - "BasicInfo": reflect.ValueOf((*types.BasicInfo)(nil)), - "BasicKind": reflect.ValueOf((*types.BasicKind)(nil)), - "Builtin": reflect.ValueOf((*types.Builtin)(nil)), - "Chan": reflect.ValueOf((*types.Chan)(nil)), - "ChanDir": reflect.ValueOf((*types.ChanDir)(nil)), - "Checker": reflect.ValueOf((*types.Checker)(nil)), - "Config": reflect.ValueOf((*types.Config)(nil)), - "Const": reflect.ValueOf((*types.Const)(nil)), - "Error": reflect.ValueOf((*types.Error)(nil)), - "Func": reflect.ValueOf((*types.Func)(nil)), - "ImportMode": reflect.ValueOf((*types.ImportMode)(nil)), - "Importer": reflect.ValueOf((*types.Importer)(nil)), - "ImporterFrom": reflect.ValueOf((*types.ImporterFrom)(nil)), - "Info": reflect.ValueOf((*types.Info)(nil)), - "Initializer": reflect.ValueOf((*types.Initializer)(nil)), - "Interface": reflect.ValueOf((*types.Interface)(nil)), - "Label": reflect.ValueOf((*types.Label)(nil)), - "Map": reflect.ValueOf((*types.Map)(nil)), - "MethodSet": reflect.ValueOf((*types.MethodSet)(nil)), - "Named": reflect.ValueOf((*types.Named)(nil)), - "Nil": reflect.ValueOf((*types.Nil)(nil)), - "Object": reflect.ValueOf((*types.Object)(nil)), - "Package": reflect.ValueOf((*types.Package)(nil)), - "PkgName": reflect.ValueOf((*types.PkgName)(nil)), - "Pointer": reflect.ValueOf((*types.Pointer)(nil)), - "Qualifier": reflect.ValueOf((*types.Qualifier)(nil)), - "Scope": reflect.ValueOf((*types.Scope)(nil)), - "Selection": reflect.ValueOf((*types.Selection)(nil)), - "SelectionKind": reflect.ValueOf((*types.SelectionKind)(nil)), - "Signature": reflect.ValueOf((*types.Signature)(nil)), - "Sizes": reflect.ValueOf((*types.Sizes)(nil)), - "Slice": reflect.ValueOf((*types.Slice)(nil)), - "StdSizes": reflect.ValueOf((*types.StdSizes)(nil)), - "Struct": reflect.ValueOf((*types.Struct)(nil)), - "Tuple": reflect.ValueOf((*types.Tuple)(nil)), - "Type": reflect.ValueOf((*types.Type)(nil)), - "TypeAndValue": reflect.ValueOf((*types.TypeAndValue)(nil)), - "TypeName": reflect.ValueOf((*types.TypeName)(nil)), - "Var": reflect.ValueOf((*types.Var)(nil)), - - // interface wrapper definitions - "_Importer": reflect.ValueOf((*_go_types_Importer)(nil)), - "_ImporterFrom": reflect.ValueOf((*_go_types_ImporterFrom)(nil)), - "_Object": reflect.ValueOf((*_go_types_Object)(nil)), - "_Sizes": reflect.ValueOf((*_go_types_Sizes)(nil)), - "_Type": reflect.ValueOf((*_go_types_Type)(nil)), - } -} - -// _go_types_Importer is an interface wrapper for Importer type -type _go_types_Importer struct { - IValue interface{} - WImport func(path string) (*types.Package, error) -} - -func (W _go_types_Importer) Import(path string) (*types.Package, error) { - return W.WImport(path) -} - -// _go_types_ImporterFrom is an interface wrapper for ImporterFrom type -type _go_types_ImporterFrom struct { - IValue interface{} - WImport func(path string) (*types.Package, error) - WImportFrom func(path string, dir string, mode types.ImportMode) (*types.Package, error) -} - -func (W _go_types_ImporterFrom) Import(path string) (*types.Package, error) { - return W.WImport(path) -} -func (W _go_types_ImporterFrom) ImportFrom(path string, dir string, mode types.ImportMode) (*types.Package, error) { - return W.WImportFrom(path, dir, mode) -} - -// _go_types_Object is an interface wrapper for Object type -type _go_types_Object struct { - IValue interface{} - WExported func() bool - WId func() string - WName func() string - WParent func() *types.Scope - WPkg func() *types.Package - WPos func() token.Pos - WString func() string - WType func() types.Type -} - -func (W _go_types_Object) Exported() bool { - return W.WExported() -} -func (W _go_types_Object) Id() string { - return W.WId() -} -func (W _go_types_Object) Name() string { - return W.WName() -} -func (W _go_types_Object) Parent() *types.Scope { - return W.WParent() -} -func (W _go_types_Object) Pkg() *types.Package { - return W.WPkg() -} -func (W _go_types_Object) Pos() token.Pos { - return W.WPos() -} -func (W _go_types_Object) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _go_types_Object) Type() types.Type { - return W.WType() -} - -// _go_types_Sizes is an interface wrapper for Sizes type -type _go_types_Sizes struct { - IValue interface{} - WAlignof func(T types.Type) int64 - WOffsetsof func(fields []*types.Var) []int64 - WSizeof func(T types.Type) int64 -} - -func (W _go_types_Sizes) Alignof(T types.Type) int64 { - return W.WAlignof(T) -} -func (W _go_types_Sizes) Offsetsof(fields []*types.Var) []int64 { - return W.WOffsetsof(fields) -} -func (W _go_types_Sizes) Sizeof(T types.Type) int64 { - return W.WSizeof(T) -} - -// _go_types_Type is an interface wrapper for Type type -type _go_types_Type struct { - IValue interface{} - WString func() string - WUnderlying func() types.Type -} - -func (W _go_types_Type) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _go_types_Type) Underlying() types.Type { - return W.WUnderlying() -} diff --git a/stdlib/go1_17_hash.go b/stdlib/go1_17_hash.go deleted file mode 100644 index 638f60b94..000000000 --- a/stdlib/go1_17_hash.go +++ /dev/null @@ -1,111 +0,0 @@ -// Code generated by 'yaegi extract hash'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "hash" - "reflect" -) - -func init() { - Symbols["hash/hash"] = map[string]reflect.Value{ - // type definitions - "Hash": reflect.ValueOf((*hash.Hash)(nil)), - "Hash32": reflect.ValueOf((*hash.Hash32)(nil)), - "Hash64": reflect.ValueOf((*hash.Hash64)(nil)), - - // interface wrapper definitions - "_Hash": reflect.ValueOf((*_hash_Hash)(nil)), - "_Hash32": reflect.ValueOf((*_hash_Hash32)(nil)), - "_Hash64": reflect.ValueOf((*_hash_Hash64)(nil)), - } -} - -// _hash_Hash is an interface wrapper for Hash type -type _hash_Hash struct { - IValue interface{} - WBlockSize func() int - WReset func() - WSize func() int - WSum func(b []byte) []byte - WWrite func(p []byte) (n int, err error) -} - -func (W _hash_Hash) BlockSize() int { - return W.WBlockSize() -} -func (W _hash_Hash) Reset() { - W.WReset() -} -func (W _hash_Hash) Size() int { - return W.WSize() -} -func (W _hash_Hash) Sum(b []byte) []byte { - return W.WSum(b) -} -func (W _hash_Hash) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _hash_Hash32 is an interface wrapper for Hash32 type -type _hash_Hash32 struct { - IValue interface{} - WBlockSize func() int - WReset func() - WSize func() int - WSum func(b []byte) []byte - WSum32 func() uint32 - WWrite func(p []byte) (n int, err error) -} - -func (W _hash_Hash32) BlockSize() int { - return W.WBlockSize() -} -func (W _hash_Hash32) Reset() { - W.WReset() -} -func (W _hash_Hash32) Size() int { - return W.WSize() -} -func (W _hash_Hash32) Sum(b []byte) []byte { - return W.WSum(b) -} -func (W _hash_Hash32) Sum32() uint32 { - return W.WSum32() -} -func (W _hash_Hash32) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _hash_Hash64 is an interface wrapper for Hash64 type -type _hash_Hash64 struct { - IValue interface{} - WBlockSize func() int - WReset func() - WSize func() int - WSum func(b []byte) []byte - WSum64 func() uint64 - WWrite func(p []byte) (n int, err error) -} - -func (W _hash_Hash64) BlockSize() int { - return W.WBlockSize() -} -func (W _hash_Hash64) Reset() { - W.WReset() -} -func (W _hash_Hash64) Size() int { - return W.WSize() -} -func (W _hash_Hash64) Sum(b []byte) []byte { - return W.WSum(b) -} -func (W _hash_Hash64) Sum64() uint64 { - return W.WSum64() -} -func (W _hash_Hash64) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} diff --git a/stdlib/go1_17_hash_adler32.go b/stdlib/go1_17_hash_adler32.go deleted file mode 100644 index 3658ed946..000000000 --- a/stdlib/go1_17_hash_adler32.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "hash/adler32" - "reflect" -) - -func init() { - Symbols["hash/adler32/adler32"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Checksum": reflect.ValueOf(adler32.Checksum), - "New": reflect.ValueOf(adler32.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - } -} diff --git a/stdlib/go1_17_hash_crc32.go b/stdlib/go1_17_hash_crc32.go deleted file mode 100644 index 7dc496a2d..000000000 --- a/stdlib/go1_17_hash_crc32.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "hash/crc32" - "reflect" -) - -func init() { - Symbols["hash/crc32/crc32"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Castagnoli": reflect.ValueOf(constant.MakeFromLiteral("2197175160", token.INT, 0)), - "Checksum": reflect.ValueOf(crc32.Checksum), - "ChecksumIEEE": reflect.ValueOf(crc32.ChecksumIEEE), - "IEEE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "IEEETable": reflect.ValueOf(&crc32.IEEETable).Elem(), - "Koopman": reflect.ValueOf(constant.MakeFromLiteral("3945912366", token.INT, 0)), - "MakeTable": reflect.ValueOf(crc32.MakeTable), - "New": reflect.ValueOf(crc32.New), - "NewIEEE": reflect.ValueOf(crc32.NewIEEE), - "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Update": reflect.ValueOf(crc32.Update), - - // type definitions - "Table": reflect.ValueOf((*crc32.Table)(nil)), - } -} diff --git a/stdlib/go1_17_hash_crc64.go b/stdlib/go1_17_hash_crc64.go deleted file mode 100644 index c3784797d..000000000 --- a/stdlib/go1_17_hash_crc64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "hash/crc64" - "reflect" -) - -func init() { - Symbols["hash/crc64/crc64"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Checksum": reflect.ValueOf(crc64.Checksum), - "ECMA": reflect.ValueOf(constant.MakeFromLiteral("14514072000185962306", token.INT, 0)), - "ISO": reflect.ValueOf(constant.MakeFromLiteral("15564440312192434176", token.INT, 0)), - "MakeTable": reflect.ValueOf(crc64.MakeTable), - "New": reflect.ValueOf(crc64.New), - "Size": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Update": reflect.ValueOf(crc64.Update), - - // type definitions - "Table": reflect.ValueOf((*crc64.Table)(nil)), - } -} diff --git a/stdlib/go1_17_hash_fnv.go b/stdlib/go1_17_hash_fnv.go deleted file mode 100644 index bb863dc3e..000000000 --- a/stdlib/go1_17_hash_fnv.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "hash/fnv" - "reflect" -) - -func init() { - Symbols["hash/fnv/fnv"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New128": reflect.ValueOf(fnv.New128), - "New128a": reflect.ValueOf(fnv.New128a), - "New32": reflect.ValueOf(fnv.New32), - "New32a": reflect.ValueOf(fnv.New32a), - "New64": reflect.ValueOf(fnv.New64), - "New64a": reflect.ValueOf(fnv.New64a), - } -} diff --git a/stdlib/go1_17_hash_maphash.go b/stdlib/go1_17_hash_maphash.go deleted file mode 100644 index 04a00d518..000000000 --- a/stdlib/go1_17_hash_maphash.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "hash/maphash" - "reflect" -) - -func init() { - Symbols["hash/maphash/maphash"] = map[string]reflect.Value{ - // function, constant and variable definitions - "MakeSeed": reflect.ValueOf(maphash.MakeSeed), - - // type definitions - "Hash": reflect.ValueOf((*maphash.Hash)(nil)), - "Seed": reflect.ValueOf((*maphash.Seed)(nil)), - } -} diff --git a/stdlib/go1_17_html.go b/stdlib/go1_17_html.go deleted file mode 100644 index a11dc2274..000000000 --- a/stdlib/go1_17_html.go +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by 'yaegi extract html'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "html" - "reflect" -) - -func init() { - Symbols["html/html"] = map[string]reflect.Value{ - // function, constant and variable definitions - "EscapeString": reflect.ValueOf(html.EscapeString), - "UnescapeString": reflect.ValueOf(html.UnescapeString), - } -} diff --git a/stdlib/go1_17_html_template.go b/stdlib/go1_17_html_template.go deleted file mode 100644 index fad5650cf..000000000 --- a/stdlib/go1_17_html_template.go +++ /dev/null @@ -1,55 +0,0 @@ -// Code generated by 'yaegi extract html/template'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "html/template" - "reflect" -) - -func init() { - Symbols["html/template/template"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrAmbigContext": reflect.ValueOf(template.ErrAmbigContext), - "ErrBadHTML": reflect.ValueOf(template.ErrBadHTML), - "ErrBranchEnd": reflect.ValueOf(template.ErrBranchEnd), - "ErrEndContext": reflect.ValueOf(template.ErrEndContext), - "ErrNoSuchTemplate": reflect.ValueOf(template.ErrNoSuchTemplate), - "ErrOutputContext": reflect.ValueOf(template.ErrOutputContext), - "ErrPartialCharset": reflect.ValueOf(template.ErrPartialCharset), - "ErrPartialEscape": reflect.ValueOf(template.ErrPartialEscape), - "ErrPredefinedEscaper": reflect.ValueOf(template.ErrPredefinedEscaper), - "ErrRangeLoopReentry": reflect.ValueOf(template.ErrRangeLoopReentry), - "ErrSlashAmbig": reflect.ValueOf(template.ErrSlashAmbig), - "HTMLEscape": reflect.ValueOf(template.HTMLEscape), - "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), - "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), - "IsTrue": reflect.ValueOf(template.IsTrue), - "JSEscape": reflect.ValueOf(template.JSEscape), - "JSEscapeString": reflect.ValueOf(template.JSEscapeString), - "JSEscaper": reflect.ValueOf(template.JSEscaper), - "Must": reflect.ValueOf(template.Must), - "New": reflect.ValueOf(template.New), - "OK": reflect.ValueOf(template.OK), - "ParseFS": reflect.ValueOf(template.ParseFS), - "ParseFiles": reflect.ValueOf(template.ParseFiles), - "ParseGlob": reflect.ValueOf(template.ParseGlob), - "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), - - // type definitions - "CSS": reflect.ValueOf((*template.CSS)(nil)), - "Error": reflect.ValueOf((*template.Error)(nil)), - "ErrorCode": reflect.ValueOf((*template.ErrorCode)(nil)), - "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), - "HTML": reflect.ValueOf((*template.HTML)(nil)), - "HTMLAttr": reflect.ValueOf((*template.HTMLAttr)(nil)), - "JS": reflect.ValueOf((*template.JS)(nil)), - "JSStr": reflect.ValueOf((*template.JSStr)(nil)), - "Srcset": reflect.ValueOf((*template.Srcset)(nil)), - "Template": reflect.ValueOf((*template.Template)(nil)), - "URL": reflect.ValueOf((*template.URL)(nil)), - } -} diff --git a/stdlib/go1_17_image.go b/stdlib/go1_17_image.go deleted file mode 100644 index 04ee7fd4f..000000000 --- a/stdlib/go1_17_image.go +++ /dev/null @@ -1,138 +0,0 @@ -// Code generated by 'yaegi extract image'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "image" - "image/color" - "reflect" -) - -func init() { - Symbols["image/image"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Black": reflect.ValueOf(&image.Black).Elem(), - "Decode": reflect.ValueOf(image.Decode), - "DecodeConfig": reflect.ValueOf(image.DecodeConfig), - "ErrFormat": reflect.ValueOf(&image.ErrFormat).Elem(), - "NewAlpha": reflect.ValueOf(image.NewAlpha), - "NewAlpha16": reflect.ValueOf(image.NewAlpha16), - "NewCMYK": reflect.ValueOf(image.NewCMYK), - "NewGray": reflect.ValueOf(image.NewGray), - "NewGray16": reflect.ValueOf(image.NewGray16), - "NewNRGBA": reflect.ValueOf(image.NewNRGBA), - "NewNRGBA64": reflect.ValueOf(image.NewNRGBA64), - "NewNYCbCrA": reflect.ValueOf(image.NewNYCbCrA), - "NewPaletted": reflect.ValueOf(image.NewPaletted), - "NewRGBA": reflect.ValueOf(image.NewRGBA), - "NewRGBA64": reflect.ValueOf(image.NewRGBA64), - "NewUniform": reflect.ValueOf(image.NewUniform), - "NewYCbCr": reflect.ValueOf(image.NewYCbCr), - "Opaque": reflect.ValueOf(&image.Opaque).Elem(), - "Pt": reflect.ValueOf(image.Pt), - "Rect": reflect.ValueOf(image.Rect), - "RegisterFormat": reflect.ValueOf(image.RegisterFormat), - "Transparent": reflect.ValueOf(&image.Transparent).Elem(), - "White": reflect.ValueOf(&image.White).Elem(), - "YCbCrSubsampleRatio410": reflect.ValueOf(image.YCbCrSubsampleRatio410), - "YCbCrSubsampleRatio411": reflect.ValueOf(image.YCbCrSubsampleRatio411), - "YCbCrSubsampleRatio420": reflect.ValueOf(image.YCbCrSubsampleRatio420), - "YCbCrSubsampleRatio422": reflect.ValueOf(image.YCbCrSubsampleRatio422), - "YCbCrSubsampleRatio440": reflect.ValueOf(image.YCbCrSubsampleRatio440), - "YCbCrSubsampleRatio444": reflect.ValueOf(image.YCbCrSubsampleRatio444), - "ZP": reflect.ValueOf(&image.ZP).Elem(), - "ZR": reflect.ValueOf(&image.ZR).Elem(), - - // type definitions - "Alpha": reflect.ValueOf((*image.Alpha)(nil)), - "Alpha16": reflect.ValueOf((*image.Alpha16)(nil)), - "CMYK": reflect.ValueOf((*image.CMYK)(nil)), - "Config": reflect.ValueOf((*image.Config)(nil)), - "Gray": reflect.ValueOf((*image.Gray)(nil)), - "Gray16": reflect.ValueOf((*image.Gray16)(nil)), - "Image": reflect.ValueOf((*image.Image)(nil)), - "NRGBA": reflect.ValueOf((*image.NRGBA)(nil)), - "NRGBA64": reflect.ValueOf((*image.NRGBA64)(nil)), - "NYCbCrA": reflect.ValueOf((*image.NYCbCrA)(nil)), - "Paletted": reflect.ValueOf((*image.Paletted)(nil)), - "PalettedImage": reflect.ValueOf((*image.PalettedImage)(nil)), - "Point": reflect.ValueOf((*image.Point)(nil)), - "RGBA": reflect.ValueOf((*image.RGBA)(nil)), - "RGBA64": reflect.ValueOf((*image.RGBA64)(nil)), - "RGBA64Image": reflect.ValueOf((*image.RGBA64Image)(nil)), - "Rectangle": reflect.ValueOf((*image.Rectangle)(nil)), - "Uniform": reflect.ValueOf((*image.Uniform)(nil)), - "YCbCr": reflect.ValueOf((*image.YCbCr)(nil)), - "YCbCrSubsampleRatio": reflect.ValueOf((*image.YCbCrSubsampleRatio)(nil)), - - // interface wrapper definitions - "_Image": reflect.ValueOf((*_image_Image)(nil)), - "_PalettedImage": reflect.ValueOf((*_image_PalettedImage)(nil)), - "_RGBA64Image": reflect.ValueOf((*_image_RGBA64Image)(nil)), - } -} - -// _image_Image is an interface wrapper for Image type -type _image_Image struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorModel func() color.Model -} - -func (W _image_Image) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_Image) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_Image) ColorModel() color.Model { - return W.WColorModel() -} - -// _image_PalettedImage is an interface wrapper for PalettedImage type -type _image_PalettedImage struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorIndexAt func(x int, y int) uint8 - WColorModel func() color.Model -} - -func (W _image_PalettedImage) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_PalettedImage) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_PalettedImage) ColorIndexAt(x int, y int) uint8 { - return W.WColorIndexAt(x, y) -} -func (W _image_PalettedImage) ColorModel() color.Model { - return W.WColorModel() -} - -// _image_RGBA64Image is an interface wrapper for RGBA64Image type -type _image_RGBA64Image struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorModel func() color.Model - WRGBA64At func(x int, y int) color.RGBA64 -} - -func (W _image_RGBA64Image) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_RGBA64Image) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_RGBA64Image) ColorModel() color.Model { - return W.WColorModel() -} -func (W _image_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { - return W.WRGBA64At(x, y) -} diff --git a/stdlib/go1_17_image_color.go b/stdlib/go1_17_image_color.go deleted file mode 100644 index 1dd60393d..000000000 --- a/stdlib/go1_17_image_color.go +++ /dev/null @@ -1,77 +0,0 @@ -// Code generated by 'yaegi extract image/color'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "image/color" - "reflect" -) - -func init() { - Symbols["image/color/color"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Alpha16Model": reflect.ValueOf(&color.Alpha16Model).Elem(), - "AlphaModel": reflect.ValueOf(&color.AlphaModel).Elem(), - "Black": reflect.ValueOf(&color.Black).Elem(), - "CMYKModel": reflect.ValueOf(&color.CMYKModel).Elem(), - "CMYKToRGB": reflect.ValueOf(color.CMYKToRGB), - "Gray16Model": reflect.ValueOf(&color.Gray16Model).Elem(), - "GrayModel": reflect.ValueOf(&color.GrayModel).Elem(), - "ModelFunc": reflect.ValueOf(color.ModelFunc), - "NRGBA64Model": reflect.ValueOf(&color.NRGBA64Model).Elem(), - "NRGBAModel": reflect.ValueOf(&color.NRGBAModel).Elem(), - "NYCbCrAModel": reflect.ValueOf(&color.NYCbCrAModel).Elem(), - "Opaque": reflect.ValueOf(&color.Opaque).Elem(), - "RGBA64Model": reflect.ValueOf(&color.RGBA64Model).Elem(), - "RGBAModel": reflect.ValueOf(&color.RGBAModel).Elem(), - "RGBToCMYK": reflect.ValueOf(color.RGBToCMYK), - "RGBToYCbCr": reflect.ValueOf(color.RGBToYCbCr), - "Transparent": reflect.ValueOf(&color.Transparent).Elem(), - "White": reflect.ValueOf(&color.White).Elem(), - "YCbCrModel": reflect.ValueOf(&color.YCbCrModel).Elem(), - "YCbCrToRGB": reflect.ValueOf(color.YCbCrToRGB), - - // type definitions - "Alpha": reflect.ValueOf((*color.Alpha)(nil)), - "Alpha16": reflect.ValueOf((*color.Alpha16)(nil)), - "CMYK": reflect.ValueOf((*color.CMYK)(nil)), - "Color": reflect.ValueOf((*color.Color)(nil)), - "Gray": reflect.ValueOf((*color.Gray)(nil)), - "Gray16": reflect.ValueOf((*color.Gray16)(nil)), - "Model": reflect.ValueOf((*color.Model)(nil)), - "NRGBA": reflect.ValueOf((*color.NRGBA)(nil)), - "NRGBA64": reflect.ValueOf((*color.NRGBA64)(nil)), - "NYCbCrA": reflect.ValueOf((*color.NYCbCrA)(nil)), - "Palette": reflect.ValueOf((*color.Palette)(nil)), - "RGBA": reflect.ValueOf((*color.RGBA)(nil)), - "RGBA64": reflect.ValueOf((*color.RGBA64)(nil)), - "YCbCr": reflect.ValueOf((*color.YCbCr)(nil)), - - // interface wrapper definitions - "_Color": reflect.ValueOf((*_image_color_Color)(nil)), - "_Model": reflect.ValueOf((*_image_color_Model)(nil)), - } -} - -// _image_color_Color is an interface wrapper for Color type -type _image_color_Color struct { - IValue interface{} - WRGBA func() (r uint32, g uint32, b uint32, a uint32) -} - -func (W _image_color_Color) RGBA() (r uint32, g uint32, b uint32, a uint32) { - return W.WRGBA() -} - -// _image_color_Model is an interface wrapper for Model type -type _image_color_Model struct { - IValue interface{} - WConvert func(c color.Color) color.Color -} - -func (W _image_color_Model) Convert(c color.Color) color.Color { - return W.WConvert(c) -} diff --git a/stdlib/go1_17_image_color_palette.go b/stdlib/go1_17_image_color_palette.go deleted file mode 100644 index 486b07447..000000000 --- a/stdlib/go1_17_image_color_palette.go +++ /dev/null @@ -1,19 +0,0 @@ -// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "image/color/palette" - "reflect" -) - -func init() { - Symbols["image/color/palette/palette"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Plan9": reflect.ValueOf(&palette.Plan9).Elem(), - "WebSafe": reflect.ValueOf(&palette.WebSafe).Elem(), - } -} diff --git a/stdlib/go1_17_image_draw.go b/stdlib/go1_17_image_draw.go deleted file mode 100644 index 71bf73be6..000000000 --- a/stdlib/go1_17_image_draw.go +++ /dev/null @@ -1,109 +0,0 @@ -// Code generated by 'yaegi extract image/draw'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "image" - "image/color" - "image/draw" - "reflect" -) - -func init() { - Symbols["image/draw/draw"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Draw": reflect.ValueOf(draw.Draw), - "DrawMask": reflect.ValueOf(draw.DrawMask), - "FloydSteinberg": reflect.ValueOf(&draw.FloydSteinberg).Elem(), - "Over": reflect.ValueOf(draw.Over), - "Src": reflect.ValueOf(draw.Src), - - // type definitions - "Drawer": reflect.ValueOf((*draw.Drawer)(nil)), - "Image": reflect.ValueOf((*draw.Image)(nil)), - "Op": reflect.ValueOf((*draw.Op)(nil)), - "Quantizer": reflect.ValueOf((*draw.Quantizer)(nil)), - "RGBA64Image": reflect.ValueOf((*draw.RGBA64Image)(nil)), - - // interface wrapper definitions - "_Drawer": reflect.ValueOf((*_image_draw_Drawer)(nil)), - "_Image": reflect.ValueOf((*_image_draw_Image)(nil)), - "_Quantizer": reflect.ValueOf((*_image_draw_Quantizer)(nil)), - "_RGBA64Image": reflect.ValueOf((*_image_draw_RGBA64Image)(nil)), - } -} - -// _image_draw_Drawer is an interface wrapper for Drawer type -type _image_draw_Drawer struct { - IValue interface{} - WDraw func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) -} - -func (W _image_draw_Drawer) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) { - W.WDraw(dst, r, src, sp) -} - -// _image_draw_Image is an interface wrapper for Image type -type _image_draw_Image struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorModel func() color.Model - WSet func(x int, y int, c color.Color) -} - -func (W _image_draw_Image) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_draw_Image) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_draw_Image) ColorModel() color.Model { - return W.WColorModel() -} -func (W _image_draw_Image) Set(x int, y int, c color.Color) { - W.WSet(x, y, c) -} - -// _image_draw_Quantizer is an interface wrapper for Quantizer type -type _image_draw_Quantizer struct { - IValue interface{} - WQuantize func(p color.Palette, m image.Image) color.Palette -} - -func (W _image_draw_Quantizer) Quantize(p color.Palette, m image.Image) color.Palette { - return W.WQuantize(p, m) -} - -// _image_draw_RGBA64Image is an interface wrapper for RGBA64Image type -type _image_draw_RGBA64Image struct { - IValue interface{} - WAt func(x int, y int) color.Color - WBounds func() image.Rectangle - WColorModel func() color.Model - WRGBA64At func(x int, y int) color.RGBA64 - WSet func(x int, y int, c color.Color) - WSetRGBA64 func(x int, y int, c color.RGBA64) -} - -func (W _image_draw_RGBA64Image) At(x int, y int) color.Color { - return W.WAt(x, y) -} -func (W _image_draw_RGBA64Image) Bounds() image.Rectangle { - return W.WBounds() -} -func (W _image_draw_RGBA64Image) ColorModel() color.Model { - return W.WColorModel() -} -func (W _image_draw_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { - return W.WRGBA64At(x, y) -} -func (W _image_draw_RGBA64Image) Set(x int, y int, c color.Color) { - W.WSet(x, y, c) -} -func (W _image_draw_RGBA64Image) SetRGBA64(x int, y int, c color.RGBA64) { - W.WSetRGBA64(x, y, c) -} diff --git a/stdlib/go1_17_image_gif.go b/stdlib/go1_17_image_gif.go deleted file mode 100644 index 47a970875..000000000 --- a/stdlib/go1_17_image_gif.go +++ /dev/null @@ -1,31 +0,0 @@ -// Code generated by 'yaegi extract image/gif'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "image/gif" - "reflect" -) - -func init() { - Symbols["image/gif/gif"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(gif.Decode), - "DecodeAll": reflect.ValueOf(gif.DecodeAll), - "DecodeConfig": reflect.ValueOf(gif.DecodeConfig), - "DisposalBackground": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DisposalNone": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DisposalPrevious": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Encode": reflect.ValueOf(gif.Encode), - "EncodeAll": reflect.ValueOf(gif.EncodeAll), - - // type definitions - "GIF": reflect.ValueOf((*gif.GIF)(nil)), - "Options": reflect.ValueOf((*gif.Options)(nil)), - } -} diff --git a/stdlib/go1_17_image_jpeg.go b/stdlib/go1_17_image_jpeg.go deleted file mode 100644 index e4299b6ea..000000000 --- a/stdlib/go1_17_image_jpeg.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "image/jpeg" - "reflect" -) - -func init() { - Symbols["image/jpeg/jpeg"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(jpeg.Decode), - "DecodeConfig": reflect.ValueOf(jpeg.DecodeConfig), - "DefaultQuality": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "Encode": reflect.ValueOf(jpeg.Encode), - - // type definitions - "FormatError": reflect.ValueOf((*jpeg.FormatError)(nil)), - "Options": reflect.ValueOf((*jpeg.Options)(nil)), - "Reader": reflect.ValueOf((*jpeg.Reader)(nil)), - "UnsupportedError": reflect.ValueOf((*jpeg.UnsupportedError)(nil)), - - // interface wrapper definitions - "_Reader": reflect.ValueOf((*_image_jpeg_Reader)(nil)), - } -} - -// _image_jpeg_Reader is an interface wrapper for Reader type -type _image_jpeg_Reader struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WReadByte func() (byte, error) -} - -func (W _image_jpeg_Reader) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _image_jpeg_Reader) ReadByte() (byte, error) { - return W.WReadByte() -} diff --git a/stdlib/go1_17_image_png.go b/stdlib/go1_17_image_png.go deleted file mode 100644 index 23df89543..000000000 --- a/stdlib/go1_17_image_png.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract image/png'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "image/png" - "reflect" -) - -func init() { - Symbols["image/png/png"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BestCompression": reflect.ValueOf(png.BestCompression), - "BestSpeed": reflect.ValueOf(png.BestSpeed), - "Decode": reflect.ValueOf(png.Decode), - "DecodeConfig": reflect.ValueOf(png.DecodeConfig), - "DefaultCompression": reflect.ValueOf(png.DefaultCompression), - "Encode": reflect.ValueOf(png.Encode), - "NoCompression": reflect.ValueOf(png.NoCompression), - - // type definitions - "CompressionLevel": reflect.ValueOf((*png.CompressionLevel)(nil)), - "Encoder": reflect.ValueOf((*png.Encoder)(nil)), - "EncoderBuffer": reflect.ValueOf((*png.EncoderBuffer)(nil)), - "EncoderBufferPool": reflect.ValueOf((*png.EncoderBufferPool)(nil)), - "FormatError": reflect.ValueOf((*png.FormatError)(nil)), - "UnsupportedError": reflect.ValueOf((*png.UnsupportedError)(nil)), - - // interface wrapper definitions - "_EncoderBufferPool": reflect.ValueOf((*_image_png_EncoderBufferPool)(nil)), - } -} - -// _image_png_EncoderBufferPool is an interface wrapper for EncoderBufferPool type -type _image_png_EncoderBufferPool struct { - IValue interface{} - WGet func() *png.EncoderBuffer - WPut func(a0 *png.EncoderBuffer) -} - -func (W _image_png_EncoderBufferPool) Get() *png.EncoderBuffer { - return W.WGet() -} -func (W _image_png_EncoderBufferPool) Put(a0 *png.EncoderBuffer) { - W.WPut(a0) -} diff --git a/stdlib/go1_17_index_suffixarray.go b/stdlib/go1_17_index_suffixarray.go deleted file mode 100644 index 66e9801d5..000000000 --- a/stdlib/go1_17_index_suffixarray.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "index/suffixarray" - "reflect" -) - -func init() { - Symbols["index/suffixarray/suffixarray"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(suffixarray.New), - - // type definitions - "Index": reflect.ValueOf((*suffixarray.Index)(nil)), - } -} diff --git a/stdlib/go1_17_io.go b/stdlib/go1_17_io.go deleted file mode 100644 index aeb582fc3..000000000 --- a/stdlib/go1_17_io.go +++ /dev/null @@ -1,367 +0,0 @@ -// Code generated by 'yaegi extract io'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "io" - "reflect" -) - -func init() { - Symbols["io/io"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Copy": reflect.ValueOf(io.Copy), - "CopyBuffer": reflect.ValueOf(io.CopyBuffer), - "CopyN": reflect.ValueOf(io.CopyN), - "Discard": reflect.ValueOf(&io.Discard).Elem(), - "EOF": reflect.ValueOf(&io.EOF).Elem(), - "ErrClosedPipe": reflect.ValueOf(&io.ErrClosedPipe).Elem(), - "ErrNoProgress": reflect.ValueOf(&io.ErrNoProgress).Elem(), - "ErrShortBuffer": reflect.ValueOf(&io.ErrShortBuffer).Elem(), - "ErrShortWrite": reflect.ValueOf(&io.ErrShortWrite).Elem(), - "ErrUnexpectedEOF": reflect.ValueOf(&io.ErrUnexpectedEOF).Elem(), - "LimitReader": reflect.ValueOf(io.LimitReader), - "MultiReader": reflect.ValueOf(io.MultiReader), - "MultiWriter": reflect.ValueOf(io.MultiWriter), - "NewSectionReader": reflect.ValueOf(io.NewSectionReader), - "NopCloser": reflect.ValueOf(io.NopCloser), - "Pipe": reflect.ValueOf(io.Pipe), - "ReadAll": reflect.ValueOf(io.ReadAll), - "ReadAtLeast": reflect.ValueOf(io.ReadAtLeast), - "ReadFull": reflect.ValueOf(io.ReadFull), - "SeekCurrent": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SeekEnd": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SeekStart": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TeeReader": reflect.ValueOf(io.TeeReader), - "WriteString": reflect.ValueOf(io.WriteString), - - // type definitions - "ByteReader": reflect.ValueOf((*io.ByteReader)(nil)), - "ByteScanner": reflect.ValueOf((*io.ByteScanner)(nil)), - "ByteWriter": reflect.ValueOf((*io.ByteWriter)(nil)), - "Closer": reflect.ValueOf((*io.Closer)(nil)), - "LimitedReader": reflect.ValueOf((*io.LimitedReader)(nil)), - "PipeReader": reflect.ValueOf((*io.PipeReader)(nil)), - "PipeWriter": reflect.ValueOf((*io.PipeWriter)(nil)), - "ReadCloser": reflect.ValueOf((*io.ReadCloser)(nil)), - "ReadSeekCloser": reflect.ValueOf((*io.ReadSeekCloser)(nil)), - "ReadSeeker": reflect.ValueOf((*io.ReadSeeker)(nil)), - "ReadWriteCloser": reflect.ValueOf((*io.ReadWriteCloser)(nil)), - "ReadWriteSeeker": reflect.ValueOf((*io.ReadWriteSeeker)(nil)), - "ReadWriter": reflect.ValueOf((*io.ReadWriter)(nil)), - "Reader": reflect.ValueOf((*io.Reader)(nil)), - "ReaderAt": reflect.ValueOf((*io.ReaderAt)(nil)), - "ReaderFrom": reflect.ValueOf((*io.ReaderFrom)(nil)), - "RuneReader": reflect.ValueOf((*io.RuneReader)(nil)), - "RuneScanner": reflect.ValueOf((*io.RuneScanner)(nil)), - "SectionReader": reflect.ValueOf((*io.SectionReader)(nil)), - "Seeker": reflect.ValueOf((*io.Seeker)(nil)), - "StringWriter": reflect.ValueOf((*io.StringWriter)(nil)), - "WriteCloser": reflect.ValueOf((*io.WriteCloser)(nil)), - "WriteSeeker": reflect.ValueOf((*io.WriteSeeker)(nil)), - "Writer": reflect.ValueOf((*io.Writer)(nil)), - "WriterAt": reflect.ValueOf((*io.WriterAt)(nil)), - "WriterTo": reflect.ValueOf((*io.WriterTo)(nil)), - - // interface wrapper definitions - "_ByteReader": reflect.ValueOf((*_io_ByteReader)(nil)), - "_ByteScanner": reflect.ValueOf((*_io_ByteScanner)(nil)), - "_ByteWriter": reflect.ValueOf((*_io_ByteWriter)(nil)), - "_Closer": reflect.ValueOf((*_io_Closer)(nil)), - "_ReadCloser": reflect.ValueOf((*_io_ReadCloser)(nil)), - "_ReadSeekCloser": reflect.ValueOf((*_io_ReadSeekCloser)(nil)), - "_ReadSeeker": reflect.ValueOf((*_io_ReadSeeker)(nil)), - "_ReadWriteCloser": reflect.ValueOf((*_io_ReadWriteCloser)(nil)), - "_ReadWriteSeeker": reflect.ValueOf((*_io_ReadWriteSeeker)(nil)), - "_ReadWriter": reflect.ValueOf((*_io_ReadWriter)(nil)), - "_Reader": reflect.ValueOf((*_io_Reader)(nil)), - "_ReaderAt": reflect.ValueOf((*_io_ReaderAt)(nil)), - "_ReaderFrom": reflect.ValueOf((*_io_ReaderFrom)(nil)), - "_RuneReader": reflect.ValueOf((*_io_RuneReader)(nil)), - "_RuneScanner": reflect.ValueOf((*_io_RuneScanner)(nil)), - "_Seeker": reflect.ValueOf((*_io_Seeker)(nil)), - "_StringWriter": reflect.ValueOf((*_io_StringWriter)(nil)), - "_WriteCloser": reflect.ValueOf((*_io_WriteCloser)(nil)), - "_WriteSeeker": reflect.ValueOf((*_io_WriteSeeker)(nil)), - "_Writer": reflect.ValueOf((*_io_Writer)(nil)), - "_WriterAt": reflect.ValueOf((*_io_WriterAt)(nil)), - "_WriterTo": reflect.ValueOf((*_io_WriterTo)(nil)), - } -} - -// _io_ByteReader is an interface wrapper for ByteReader type -type _io_ByteReader struct { - IValue interface{} - WReadByte func() (byte, error) -} - -func (W _io_ByteReader) ReadByte() (byte, error) { - return W.WReadByte() -} - -// _io_ByteScanner is an interface wrapper for ByteScanner type -type _io_ByteScanner struct { - IValue interface{} - WReadByte func() (byte, error) - WUnreadByte func() error -} - -func (W _io_ByteScanner) ReadByte() (byte, error) { - return W.WReadByte() -} -func (W _io_ByteScanner) UnreadByte() error { - return W.WUnreadByte() -} - -// _io_ByteWriter is an interface wrapper for ByteWriter type -type _io_ByteWriter struct { - IValue interface{} - WWriteByte func(c byte) error -} - -func (W _io_ByteWriter) WriteByte(c byte) error { - return W.WWriteByte(c) -} - -// _io_Closer is an interface wrapper for Closer type -type _io_Closer struct { - IValue interface{} - WClose func() error -} - -func (W _io_Closer) Close() error { - return W.WClose() -} - -// _io_ReadCloser is an interface wrapper for ReadCloser type -type _io_ReadCloser struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) -} - -func (W _io_ReadCloser) Close() error { - return W.WClose() -} -func (W _io_ReadCloser) Read(p []byte) (n int, err error) { - return W.WRead(p) -} - -// _io_ReadSeekCloser is an interface wrapper for ReadSeekCloser type -type _io_ReadSeekCloser struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _io_ReadSeekCloser) Close() error { - return W.WClose() -} -func (W _io_ReadSeekCloser) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadSeekCloser) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} - -// _io_ReadSeeker is an interface wrapper for ReadSeeker type -type _io_ReadSeeker struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _io_ReadSeeker) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadSeeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} - -// _io_ReadWriteCloser is an interface wrapper for ReadWriteCloser type -type _io_ReadWriteCloser struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_ReadWriteCloser) Close() error { - return W.WClose() -} -func (W _io_ReadWriteCloser) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadWriteCloser) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_ReadWriteSeeker is an interface wrapper for ReadWriteSeeker type -type _io_ReadWriteSeeker struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_ReadWriteSeeker) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadWriteSeeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} -func (W _io_ReadWriteSeeker) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_ReadWriter is an interface wrapper for ReadWriter type -type _io_ReadWriter struct { - IValue interface{} - WRead func(p []byte) (n int, err error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_ReadWriter) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _io_ReadWriter) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_Reader is an interface wrapper for Reader type -type _io_Reader struct { - IValue interface{} - WRead func(p []byte) (n int, err error) -} - -func (W _io_Reader) Read(p []byte) (n int, err error) { - return W.WRead(p) -} - -// _io_ReaderAt is an interface wrapper for ReaderAt type -type _io_ReaderAt struct { - IValue interface{} - WReadAt func(p []byte, off int64) (n int, err error) -} - -func (W _io_ReaderAt) ReadAt(p []byte, off int64) (n int, err error) { - return W.WReadAt(p, off) -} - -// _io_ReaderFrom is an interface wrapper for ReaderFrom type -type _io_ReaderFrom struct { - IValue interface{} - WReadFrom func(r io.Reader) (n int64, err error) -} - -func (W _io_ReaderFrom) ReadFrom(r io.Reader) (n int64, err error) { - return W.WReadFrom(r) -} - -// _io_RuneReader is an interface wrapper for RuneReader type -type _io_RuneReader struct { - IValue interface{} - WReadRune func() (r rune, size int, err error) -} - -func (W _io_RuneReader) ReadRune() (r rune, size int, err error) { - return W.WReadRune() -} - -// _io_RuneScanner is an interface wrapper for RuneScanner type -type _io_RuneScanner struct { - IValue interface{} - WReadRune func() (r rune, size int, err error) - WUnreadRune func() error -} - -func (W _io_RuneScanner) ReadRune() (r rune, size int, err error) { - return W.WReadRune() -} -func (W _io_RuneScanner) UnreadRune() error { - return W.WUnreadRune() -} - -// _io_Seeker is an interface wrapper for Seeker type -type _io_Seeker struct { - IValue interface{} - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _io_Seeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} - -// _io_StringWriter is an interface wrapper for StringWriter type -type _io_StringWriter struct { - IValue interface{} - WWriteString func(s string) (n int, err error) -} - -func (W _io_StringWriter) WriteString(s string) (n int, err error) { - return W.WWriteString(s) -} - -// _io_WriteCloser is an interface wrapper for WriteCloser type -type _io_WriteCloser struct { - IValue interface{} - WClose func() error - WWrite func(p []byte) (n int, err error) -} - -func (W _io_WriteCloser) Close() error { - return W.WClose() -} -func (W _io_WriteCloser) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_WriteSeeker is an interface wrapper for WriteSeeker type -type _io_WriteSeeker struct { - IValue interface{} - WSeek func(offset int64, whence int) (int64, error) - WWrite func(p []byte) (n int, err error) -} - -func (W _io_WriteSeeker) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} -func (W _io_WriteSeeker) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_Writer is an interface wrapper for Writer type -type _io_Writer struct { - IValue interface{} - WWrite func(p []byte) (n int, err error) -} - -func (W _io_Writer) Write(p []byte) (n int, err error) { - return W.WWrite(p) -} - -// _io_WriterAt is an interface wrapper for WriterAt type -type _io_WriterAt struct { - IValue interface{} - WWriteAt func(p []byte, off int64) (n int, err error) -} - -func (W _io_WriterAt) WriteAt(p []byte, off int64) (n int, err error) { - return W.WWriteAt(p, off) -} - -// _io_WriterTo is an interface wrapper for WriterTo type -type _io_WriterTo struct { - IValue interface{} - WWriteTo func(w io.Writer) (n int64, err error) -} - -func (W _io_WriterTo) WriteTo(w io.Writer) (n int64, err error) { - return W.WWriteTo(w) -} diff --git a/stdlib/go1_17_io_fs.go b/stdlib/go1_17_io_fs.go deleted file mode 100644 index a9f5495d5..000000000 --- a/stdlib/go1_17_io_fs.go +++ /dev/null @@ -1,246 +0,0 @@ -// Code generated by 'yaegi extract io/fs'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "io/fs" - "reflect" - "time" -) - -func init() { - Symbols["io/fs/fs"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrClosed": reflect.ValueOf(&fs.ErrClosed).Elem(), - "ErrExist": reflect.ValueOf(&fs.ErrExist).Elem(), - "ErrInvalid": reflect.ValueOf(&fs.ErrInvalid).Elem(), - "ErrNotExist": reflect.ValueOf(&fs.ErrNotExist).Elem(), - "ErrPermission": reflect.ValueOf(&fs.ErrPermission).Elem(), - "FileInfoToDirEntry": reflect.ValueOf(fs.FileInfoToDirEntry), - "Glob": reflect.ValueOf(fs.Glob), - "ModeAppend": reflect.ValueOf(fs.ModeAppend), - "ModeCharDevice": reflect.ValueOf(fs.ModeCharDevice), - "ModeDevice": reflect.ValueOf(fs.ModeDevice), - "ModeDir": reflect.ValueOf(fs.ModeDir), - "ModeExclusive": reflect.ValueOf(fs.ModeExclusive), - "ModeIrregular": reflect.ValueOf(fs.ModeIrregular), - "ModeNamedPipe": reflect.ValueOf(fs.ModeNamedPipe), - "ModePerm": reflect.ValueOf(fs.ModePerm), - "ModeSetgid": reflect.ValueOf(fs.ModeSetgid), - "ModeSetuid": reflect.ValueOf(fs.ModeSetuid), - "ModeSocket": reflect.ValueOf(fs.ModeSocket), - "ModeSticky": reflect.ValueOf(fs.ModeSticky), - "ModeSymlink": reflect.ValueOf(fs.ModeSymlink), - "ModeTemporary": reflect.ValueOf(fs.ModeTemporary), - "ModeType": reflect.ValueOf(fs.ModeType), - "ReadDir": reflect.ValueOf(fs.ReadDir), - "ReadFile": reflect.ValueOf(fs.ReadFile), - "SkipDir": reflect.ValueOf(&fs.SkipDir).Elem(), - "Stat": reflect.ValueOf(fs.Stat), - "Sub": reflect.ValueOf(fs.Sub), - "ValidPath": reflect.ValueOf(fs.ValidPath), - "WalkDir": reflect.ValueOf(fs.WalkDir), - - // type definitions - "DirEntry": reflect.ValueOf((*fs.DirEntry)(nil)), - "FS": reflect.ValueOf((*fs.FS)(nil)), - "File": reflect.ValueOf((*fs.File)(nil)), - "FileInfo": reflect.ValueOf((*fs.FileInfo)(nil)), - "FileMode": reflect.ValueOf((*fs.FileMode)(nil)), - "GlobFS": reflect.ValueOf((*fs.GlobFS)(nil)), - "PathError": reflect.ValueOf((*fs.PathError)(nil)), - "ReadDirFS": reflect.ValueOf((*fs.ReadDirFS)(nil)), - "ReadDirFile": reflect.ValueOf((*fs.ReadDirFile)(nil)), - "ReadFileFS": reflect.ValueOf((*fs.ReadFileFS)(nil)), - "StatFS": reflect.ValueOf((*fs.StatFS)(nil)), - "SubFS": reflect.ValueOf((*fs.SubFS)(nil)), - "WalkDirFunc": reflect.ValueOf((*fs.WalkDirFunc)(nil)), - - // interface wrapper definitions - "_DirEntry": reflect.ValueOf((*_io_fs_DirEntry)(nil)), - "_FS": reflect.ValueOf((*_io_fs_FS)(nil)), - "_File": reflect.ValueOf((*_io_fs_File)(nil)), - "_FileInfo": reflect.ValueOf((*_io_fs_FileInfo)(nil)), - "_GlobFS": reflect.ValueOf((*_io_fs_GlobFS)(nil)), - "_ReadDirFS": reflect.ValueOf((*_io_fs_ReadDirFS)(nil)), - "_ReadDirFile": reflect.ValueOf((*_io_fs_ReadDirFile)(nil)), - "_ReadFileFS": reflect.ValueOf((*_io_fs_ReadFileFS)(nil)), - "_StatFS": reflect.ValueOf((*_io_fs_StatFS)(nil)), - "_SubFS": reflect.ValueOf((*_io_fs_SubFS)(nil)), - } -} - -// _io_fs_DirEntry is an interface wrapper for DirEntry type -type _io_fs_DirEntry struct { - IValue interface{} - WInfo func() (fs.FileInfo, error) - WIsDir func() bool - WName func() string - WType func() fs.FileMode -} - -func (W _io_fs_DirEntry) Info() (fs.FileInfo, error) { - return W.WInfo() -} -func (W _io_fs_DirEntry) IsDir() bool { - return W.WIsDir() -} -func (W _io_fs_DirEntry) Name() string { - return W.WName() -} -func (W _io_fs_DirEntry) Type() fs.FileMode { - return W.WType() -} - -// _io_fs_FS is an interface wrapper for FS type -type _io_fs_FS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) -} - -func (W _io_fs_FS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} - -// _io_fs_File is an interface wrapper for File type -type _io_fs_File struct { - IValue interface{} - WClose func() error - WRead func(a0 []byte) (int, error) - WStat func() (fs.FileInfo, error) -} - -func (W _io_fs_File) Close() error { - return W.WClose() -} -func (W _io_fs_File) Read(a0 []byte) (int, error) { - return W.WRead(a0) -} -func (W _io_fs_File) Stat() (fs.FileInfo, error) { - return W.WStat() -} - -// _io_fs_FileInfo is an interface wrapper for FileInfo type -type _io_fs_FileInfo struct { - IValue interface{} - WIsDir func() bool - WModTime func() time.Time - WMode func() fs.FileMode - WName func() string - WSize func() int64 - WSys func() interface{} -} - -func (W _io_fs_FileInfo) IsDir() bool { - return W.WIsDir() -} -func (W _io_fs_FileInfo) ModTime() time.Time { - return W.WModTime() -} -func (W _io_fs_FileInfo) Mode() fs.FileMode { - return W.WMode() -} -func (W _io_fs_FileInfo) Name() string { - return W.WName() -} -func (W _io_fs_FileInfo) Size() int64 { - return W.WSize() -} -func (W _io_fs_FileInfo) Sys() interface{} { - return W.WSys() -} - -// _io_fs_GlobFS is an interface wrapper for GlobFS type -type _io_fs_GlobFS struct { - IValue interface{} - WGlob func(pattern string) ([]string, error) - WOpen func(name string) (fs.File, error) -} - -func (W _io_fs_GlobFS) Glob(pattern string) ([]string, error) { - return W.WGlob(pattern) -} -func (W _io_fs_GlobFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} - -// _io_fs_ReadDirFS is an interface wrapper for ReadDirFS type -type _io_fs_ReadDirFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WReadDir func(name string) ([]fs.DirEntry, error) -} - -func (W _io_fs_ReadDirFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_ReadDirFS) ReadDir(name string) ([]fs.DirEntry, error) { - return W.WReadDir(name) -} - -// _io_fs_ReadDirFile is an interface wrapper for ReadDirFile type -type _io_fs_ReadDirFile struct { - IValue interface{} - WClose func() error - WRead func(a0 []byte) (int, error) - WReadDir func(n int) ([]fs.DirEntry, error) - WStat func() (fs.FileInfo, error) -} - -func (W _io_fs_ReadDirFile) Close() error { - return W.WClose() -} -func (W _io_fs_ReadDirFile) Read(a0 []byte) (int, error) { - return W.WRead(a0) -} -func (W _io_fs_ReadDirFile) ReadDir(n int) ([]fs.DirEntry, error) { - return W.WReadDir(n) -} -func (W _io_fs_ReadDirFile) Stat() (fs.FileInfo, error) { - return W.WStat() -} - -// _io_fs_ReadFileFS is an interface wrapper for ReadFileFS type -type _io_fs_ReadFileFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WReadFile func(name string) ([]byte, error) -} - -func (W _io_fs_ReadFileFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_ReadFileFS) ReadFile(name string) ([]byte, error) { - return W.WReadFile(name) -} - -// _io_fs_StatFS is an interface wrapper for StatFS type -type _io_fs_StatFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WStat func(name string) (fs.FileInfo, error) -} - -func (W _io_fs_StatFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_StatFS) Stat(name string) (fs.FileInfo, error) { - return W.WStat(name) -} - -// _io_fs_SubFS is an interface wrapper for SubFS type -type _io_fs_SubFS struct { - IValue interface{} - WOpen func(name string) (fs.File, error) - WSub func(dir string) (fs.FS, error) -} - -func (W _io_fs_SubFS) Open(name string) (fs.File, error) { - return W.WOpen(name) -} -func (W _io_fs_SubFS) Sub(dir string) (fs.FS, error) { - return W.WSub(dir) -} diff --git a/stdlib/go1_17_io_ioutil.go b/stdlib/go1_17_io_ioutil.go deleted file mode 100644 index 7712b4027..000000000 --- a/stdlib/go1_17_io_ioutil.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "io/ioutil" - "reflect" -) - -func init() { - Symbols["io/ioutil/ioutil"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Discard": reflect.ValueOf(&ioutil.Discard).Elem(), - "NopCloser": reflect.ValueOf(ioutil.NopCloser), - "ReadAll": reflect.ValueOf(ioutil.ReadAll), - "ReadDir": reflect.ValueOf(ioutil.ReadDir), - "ReadFile": reflect.ValueOf(ioutil.ReadFile), - "TempDir": reflect.ValueOf(ioutil.TempDir), - "TempFile": reflect.ValueOf(ioutil.TempFile), - "WriteFile": reflect.ValueOf(ioutil.WriteFile), - } -} diff --git a/stdlib/go1_17_log.go b/stdlib/go1_17_log.go deleted file mode 100644 index 42a69c61f..000000000 --- a/stdlib/go1_17_log.go +++ /dev/null @@ -1,48 +0,0 @@ -// Code generated by 'yaegi extract log'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "log" - "reflect" -) - -func init() { - Symbols["log/log"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Default": reflect.ValueOf(log.Default), - "Fatal": reflect.ValueOf(logFatal), - "Fatalf": reflect.ValueOf(logFatalf), - "Fatalln": reflect.ValueOf(logFatalln), - "Flags": reflect.ValueOf(log.Flags), - "LUTC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Ldate": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Llongfile": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lmicroseconds": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Lmsgprefix": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Lshortfile": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "LstdFlags": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Ltime": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "New": reflect.ValueOf(logNew), - "Output": reflect.ValueOf(log.Output), - "Panic": reflect.ValueOf(log.Panic), - "Panicf": reflect.ValueOf(log.Panicf), - "Panicln": reflect.ValueOf(log.Panicln), - "Prefix": reflect.ValueOf(log.Prefix), - "Print": reflect.ValueOf(log.Print), - "Printf": reflect.ValueOf(log.Printf), - "Println": reflect.ValueOf(log.Println), - "SetFlags": reflect.ValueOf(log.SetFlags), - "SetOutput": reflect.ValueOf(log.SetOutput), - "SetPrefix": reflect.ValueOf(log.SetPrefix), - "Writer": reflect.ValueOf(log.Writer), - - // type definitions - "Logger": reflect.ValueOf((*logLogger)(nil)), - } -} diff --git a/stdlib/go1_17_log_syslog.go b/stdlib/go1_17_log_syslog.go deleted file mode 100644 index 881c6a749..000000000 --- a/stdlib/go1_17_log_syslog.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. - -//go:build go1.17 && !windows && !nacl && !plan9 -// +build go1.17,!windows,!nacl,!plan9 - -package stdlib - -import ( - "log/syslog" - "reflect" -) - -func init() { - Symbols["log/syslog/syslog"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Dial": reflect.ValueOf(syslog.Dial), - "LOG_ALERT": reflect.ValueOf(syslog.LOG_ALERT), - "LOG_AUTH": reflect.ValueOf(syslog.LOG_AUTH), - "LOG_AUTHPRIV": reflect.ValueOf(syslog.LOG_AUTHPRIV), - "LOG_CRIT": reflect.ValueOf(syslog.LOG_CRIT), - "LOG_CRON": reflect.ValueOf(syslog.LOG_CRON), - "LOG_DAEMON": reflect.ValueOf(syslog.LOG_DAEMON), - "LOG_DEBUG": reflect.ValueOf(syslog.LOG_DEBUG), - "LOG_EMERG": reflect.ValueOf(syslog.LOG_EMERG), - "LOG_ERR": reflect.ValueOf(syslog.LOG_ERR), - "LOG_FTP": reflect.ValueOf(syslog.LOG_FTP), - "LOG_INFO": reflect.ValueOf(syslog.LOG_INFO), - "LOG_KERN": reflect.ValueOf(syslog.LOG_KERN), - "LOG_LOCAL0": reflect.ValueOf(syslog.LOG_LOCAL0), - "LOG_LOCAL1": reflect.ValueOf(syslog.LOG_LOCAL1), - "LOG_LOCAL2": reflect.ValueOf(syslog.LOG_LOCAL2), - "LOG_LOCAL3": reflect.ValueOf(syslog.LOG_LOCAL3), - "LOG_LOCAL4": reflect.ValueOf(syslog.LOG_LOCAL4), - "LOG_LOCAL5": reflect.ValueOf(syslog.LOG_LOCAL5), - "LOG_LOCAL6": reflect.ValueOf(syslog.LOG_LOCAL6), - "LOG_LOCAL7": reflect.ValueOf(syslog.LOG_LOCAL7), - "LOG_LPR": reflect.ValueOf(syslog.LOG_LPR), - "LOG_MAIL": reflect.ValueOf(syslog.LOG_MAIL), - "LOG_NEWS": reflect.ValueOf(syslog.LOG_NEWS), - "LOG_NOTICE": reflect.ValueOf(syslog.LOG_NOTICE), - "LOG_SYSLOG": reflect.ValueOf(syslog.LOG_SYSLOG), - "LOG_USER": reflect.ValueOf(syslog.LOG_USER), - "LOG_UUCP": reflect.ValueOf(syslog.LOG_UUCP), - "LOG_WARNING": reflect.ValueOf(syslog.LOG_WARNING), - "New": reflect.ValueOf(syslog.New), - "NewLogger": reflect.ValueOf(syslog.NewLogger), - - // type definitions - "Priority": reflect.ValueOf((*syslog.Priority)(nil)), - "Writer": reflect.ValueOf((*syslog.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_math.go b/stdlib/go1_17_math.go deleted file mode 100644 index 195f70ede..000000000 --- a/stdlib/go1_17_math.go +++ /dev/null @@ -1,116 +0,0 @@ -// Code generated by 'yaegi extract math'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "math" - "reflect" -) - -func init() { - Symbols["math/math"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Abs": reflect.ValueOf(math.Abs), - "Acos": reflect.ValueOf(math.Acos), - "Acosh": reflect.ValueOf(math.Acosh), - "Asin": reflect.ValueOf(math.Asin), - "Asinh": reflect.ValueOf(math.Asinh), - "Atan": reflect.ValueOf(math.Atan), - "Atan2": reflect.ValueOf(math.Atan2), - "Atanh": reflect.ValueOf(math.Atanh), - "Cbrt": reflect.ValueOf(math.Cbrt), - "Ceil": reflect.ValueOf(math.Ceil), - "Copysign": reflect.ValueOf(math.Copysign), - "Cos": reflect.ValueOf(math.Cos), - "Cosh": reflect.ValueOf(math.Cosh), - "Dim": reflect.ValueOf(math.Dim), - "E": reflect.ValueOf(constant.MakeFromLiteral("2.71828182845904523536028747135266249775724709369995957496696762566337824315673231520670375558666729784504486779277967997696994772644702281675346915668215131895555530285035761295375777990557253360748291015625", token.FLOAT, 0)), - "Erf": reflect.ValueOf(math.Erf), - "Erfc": reflect.ValueOf(math.Erfc), - "Erfcinv": reflect.ValueOf(math.Erfcinv), - "Erfinv": reflect.ValueOf(math.Erfinv), - "Exp": reflect.ValueOf(math.Exp), - "Exp2": reflect.ValueOf(math.Exp2), - "Expm1": reflect.ValueOf(math.Expm1), - "FMA": reflect.ValueOf(math.FMA), - "Float32bits": reflect.ValueOf(math.Float32bits), - "Float32frombits": reflect.ValueOf(math.Float32frombits), - "Float64bits": reflect.ValueOf(math.Float64bits), - "Float64frombits": reflect.ValueOf(math.Float64frombits), - "Floor": reflect.ValueOf(math.Floor), - "Frexp": reflect.ValueOf(math.Frexp), - "Gamma": reflect.ValueOf(math.Gamma), - "Hypot": reflect.ValueOf(math.Hypot), - "Ilogb": reflect.ValueOf(math.Ilogb), - "Inf": reflect.ValueOf(math.Inf), - "IsInf": reflect.ValueOf(math.IsInf), - "IsNaN": reflect.ValueOf(math.IsNaN), - "J0": reflect.ValueOf(math.J0), - "J1": reflect.ValueOf(math.J1), - "Jn": reflect.ValueOf(math.Jn), - "Ldexp": reflect.ValueOf(math.Ldexp), - "Lgamma": reflect.ValueOf(math.Lgamma), - "Ln10": reflect.ValueOf(constant.MakeFromLiteral("2.30258509299404568401799145468436420760110148862877297603332784146804725494827975466552490443295866962642372461496758838959542646932914211937012833592062802600362869664962772731087170541286468505859375", token.FLOAT, 0)), - "Ln2": reflect.ValueOf(constant.MakeFromLiteral("0.6931471805599453094172321214581765680755001343602552541206800092715999496201383079363438206637927920954189307729314303884387720696314608777673678644642390655170150035209453154294578780536539852619171142578125", token.FLOAT, 0)), - "Log": reflect.ValueOf(math.Log), - "Log10": reflect.ValueOf(math.Log10), - "Log10E": reflect.ValueOf(constant.MakeFromLiteral("0.43429448190325182765112891891660508229439700580366656611445378416636798190620320263064286300825210972160277489744884502676719847561509639618196799746596688688378591625127711495224502868950366973876953125", token.FLOAT, 0)), - "Log1p": reflect.ValueOf(math.Log1p), - "Log2": reflect.ValueOf(math.Log2), - "Log2E": reflect.ValueOf(constant.MakeFromLiteral("1.44269504088896340735992468100189213742664595415298593413544940772066427768997545329060870636212628972710992130324953463427359402479619301286929040235571747101382214539290471666532766903401352465152740478515625", token.FLOAT, 0)), - "Logb": reflect.ValueOf(math.Logb), - "Max": reflect.ValueOf(math.Max), - "MaxFloat32": reflect.ValueOf(constant.MakeFromLiteral("340282346638528859811704183484516925440", token.FLOAT, 0)), - "MaxFloat64": reflect.ValueOf(constant.MakeFromLiteral("179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368", token.FLOAT, 0)), - "MaxInt": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "MaxInt16": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "MaxInt32": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "MaxInt64": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "MaxInt8": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "MaxUint": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), - "MaxUint16": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "MaxUint32": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "MaxUint64": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), - "MaxUint8": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "Min": reflect.ValueOf(math.Min), - "MinInt": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), - "MinInt16": reflect.ValueOf(constant.MakeFromLiteral("-32768", token.INT, 0)), - "MinInt32": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MinInt64": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), - "MinInt8": reflect.ValueOf(constant.MakeFromLiteral("-128", token.INT, 0)), - "Mod": reflect.ValueOf(math.Mod), - "Modf": reflect.ValueOf(math.Modf), - "NaN": reflect.ValueOf(math.NaN), - "Nextafter": reflect.ValueOf(math.Nextafter), - "Nextafter32": reflect.ValueOf(math.Nextafter32), - "Phi": reflect.ValueOf(constant.MakeFromLiteral("1.6180339887498948482045868343656381177203091798057628621354486119746080982153796619881086049305501566952211682590824739205931370737029882996587050475921915678674035433959321750307935872115194797515869140625", token.FLOAT, 0)), - "Pi": reflect.ValueOf(constant.MakeFromLiteral("3.141592653589793238462643383279502884197169399375105820974944594789982923695635954704435713335896673485663389728754819466702315787113662862838515639906529162340867271374644786874341662041842937469482421875", token.FLOAT, 0)), - "Pow": reflect.ValueOf(math.Pow), - "Pow10": reflect.ValueOf(math.Pow10), - "Remainder": reflect.ValueOf(math.Remainder), - "Round": reflect.ValueOf(math.Round), - "RoundToEven": reflect.ValueOf(math.RoundToEven), - "Signbit": reflect.ValueOf(math.Signbit), - "Sin": reflect.ValueOf(math.Sin), - "Sincos": reflect.ValueOf(math.Sincos), - "Sinh": reflect.ValueOf(math.Sinh), - "SmallestNonzeroFloat32": reflect.ValueOf(constant.MakeFromLiteral("1.40129846432481707092372958328991613128026194187651577175706828388979108268586060148663818836212158203125e-45", token.FLOAT, 0)), - "SmallestNonzeroFloat64": reflect.ValueOf(constant.MakeFromLiteral("4.940656458412465441765687928682213723650598026143247644255856825006755072702087518652998363616359923797965646954457177309266567103559397963987747960107818781263007131903114045278458171678489821036887186360569987307230500063874091535649843873124733972731696151400317153853980741262385655911710266585566867681870395603106249319452715914924553293054565444011274801297099995419319894090804165633245247571478690147267801593552386115501348035264934720193790268107107491703332226844753335720832431936092382893458368060106011506169809753078342277318329247904982524730776375927247874656084778203734469699533647017972677717585125660551199131504891101451037862738167250955837389733598993664809941164205702637090279242767544565229087538682506419718265533447265625e-324", token.FLOAT, 0)), - "Sqrt": reflect.ValueOf(math.Sqrt), - "Sqrt2": reflect.ValueOf(constant.MakeFromLiteral("1.414213562373095048801688724209698078569671875376948073176679739576083351575381440094441524123797447886801949755143139115339040409162552642832693297721230919563348109313505318596071447245776653289794921875", token.FLOAT, 0)), - "SqrtE": reflect.ValueOf(constant.MakeFromLiteral("1.64872127070012814684865078781416357165377610071014801157507931167328763229187870850146925823776361770041160388013884200789716007979526823569827080974091691342077871211546646890155898290686309337615966796875", token.FLOAT, 0)), - "SqrtPhi": reflect.ValueOf(constant.MakeFromLiteral("1.2720196495140689642524224617374914917156080418400962486166403754616080542166459302584536396369727769747312116100875915825863540562126478288118732191412003988041797518382391984914647764526307582855224609375", token.FLOAT, 0)), - "SqrtPi": reflect.ValueOf(constant.MakeFromLiteral("1.772453850905516027298167483341145182797549456122387128213807789740599698370237052541269446184448945647349951047154197675245574635259260134350885938555625028620527962319730619356050738133490085601806640625", token.FLOAT, 0)), - "Tan": reflect.ValueOf(math.Tan), - "Tanh": reflect.ValueOf(math.Tanh), - "Trunc": reflect.ValueOf(math.Trunc), - "Y0": reflect.ValueOf(math.Y0), - "Y1": reflect.ValueOf(math.Y1), - "Yn": reflect.ValueOf(math.Yn), - } -} diff --git a/stdlib/go1_17_math_big.go b/stdlib/go1_17_math_big.go deleted file mode 100644 index 2bc91683a..000000000 --- a/stdlib/go1_17_math_big.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract math/big'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "math/big" - "reflect" -) - -func init() { - Symbols["math/big/big"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Above": reflect.ValueOf(big.Above), - "AwayFromZero": reflect.ValueOf(big.AwayFromZero), - "Below": reflect.ValueOf(big.Below), - "Exact": reflect.ValueOf(big.Exact), - "Jacobi": reflect.ValueOf(big.Jacobi), - "MaxBase": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "MaxExp": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "MaxPrec": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "MinExp": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "NewFloat": reflect.ValueOf(big.NewFloat), - "NewInt": reflect.ValueOf(big.NewInt), - "NewRat": reflect.ValueOf(big.NewRat), - "ParseFloat": reflect.ValueOf(big.ParseFloat), - "ToNearestAway": reflect.ValueOf(big.ToNearestAway), - "ToNearestEven": reflect.ValueOf(big.ToNearestEven), - "ToNegativeInf": reflect.ValueOf(big.ToNegativeInf), - "ToPositiveInf": reflect.ValueOf(big.ToPositiveInf), - "ToZero": reflect.ValueOf(big.ToZero), - - // type definitions - "Accuracy": reflect.ValueOf((*big.Accuracy)(nil)), - "ErrNaN": reflect.ValueOf((*big.ErrNaN)(nil)), - "Float": reflect.ValueOf((*big.Float)(nil)), - "Int": reflect.ValueOf((*big.Int)(nil)), - "Rat": reflect.ValueOf((*big.Rat)(nil)), - "RoundingMode": reflect.ValueOf((*big.RoundingMode)(nil)), - "Word": reflect.ValueOf((*big.Word)(nil)), - } -} diff --git a/stdlib/go1_17_math_bits.go b/stdlib/go1_17_math_bits.go deleted file mode 100644 index 8834d971c..000000000 --- a/stdlib/go1_17_math_bits.go +++ /dev/null @@ -1,69 +0,0 @@ -// Code generated by 'yaegi extract math/bits'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "math/bits" - "reflect" -) - -func init() { - Symbols["math/bits/bits"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Add": reflect.ValueOf(bits.Add), - "Add32": reflect.ValueOf(bits.Add32), - "Add64": reflect.ValueOf(bits.Add64), - "Div": reflect.ValueOf(bits.Div), - "Div32": reflect.ValueOf(bits.Div32), - "Div64": reflect.ValueOf(bits.Div64), - "LeadingZeros": reflect.ValueOf(bits.LeadingZeros), - "LeadingZeros16": reflect.ValueOf(bits.LeadingZeros16), - "LeadingZeros32": reflect.ValueOf(bits.LeadingZeros32), - "LeadingZeros64": reflect.ValueOf(bits.LeadingZeros64), - "LeadingZeros8": reflect.ValueOf(bits.LeadingZeros8), - "Len": reflect.ValueOf(bits.Len), - "Len16": reflect.ValueOf(bits.Len16), - "Len32": reflect.ValueOf(bits.Len32), - "Len64": reflect.ValueOf(bits.Len64), - "Len8": reflect.ValueOf(bits.Len8), - "Mul": reflect.ValueOf(bits.Mul), - "Mul32": reflect.ValueOf(bits.Mul32), - "Mul64": reflect.ValueOf(bits.Mul64), - "OnesCount": reflect.ValueOf(bits.OnesCount), - "OnesCount16": reflect.ValueOf(bits.OnesCount16), - "OnesCount32": reflect.ValueOf(bits.OnesCount32), - "OnesCount64": reflect.ValueOf(bits.OnesCount64), - "OnesCount8": reflect.ValueOf(bits.OnesCount8), - "Rem": reflect.ValueOf(bits.Rem), - "Rem32": reflect.ValueOf(bits.Rem32), - "Rem64": reflect.ValueOf(bits.Rem64), - "Reverse": reflect.ValueOf(bits.Reverse), - "Reverse16": reflect.ValueOf(bits.Reverse16), - "Reverse32": reflect.ValueOf(bits.Reverse32), - "Reverse64": reflect.ValueOf(bits.Reverse64), - "Reverse8": reflect.ValueOf(bits.Reverse8), - "ReverseBytes": reflect.ValueOf(bits.ReverseBytes), - "ReverseBytes16": reflect.ValueOf(bits.ReverseBytes16), - "ReverseBytes32": reflect.ValueOf(bits.ReverseBytes32), - "ReverseBytes64": reflect.ValueOf(bits.ReverseBytes64), - "RotateLeft": reflect.ValueOf(bits.RotateLeft), - "RotateLeft16": reflect.ValueOf(bits.RotateLeft16), - "RotateLeft32": reflect.ValueOf(bits.RotateLeft32), - "RotateLeft64": reflect.ValueOf(bits.RotateLeft64), - "RotateLeft8": reflect.ValueOf(bits.RotateLeft8), - "Sub": reflect.ValueOf(bits.Sub), - "Sub32": reflect.ValueOf(bits.Sub32), - "Sub64": reflect.ValueOf(bits.Sub64), - "TrailingZeros": reflect.ValueOf(bits.TrailingZeros), - "TrailingZeros16": reflect.ValueOf(bits.TrailingZeros16), - "TrailingZeros32": reflect.ValueOf(bits.TrailingZeros32), - "TrailingZeros64": reflect.ValueOf(bits.TrailingZeros64), - "TrailingZeros8": reflect.ValueOf(bits.TrailingZeros8), - "UintSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - } -} diff --git a/stdlib/go1_17_math_cmplx.go b/stdlib/go1_17_math_cmplx.go deleted file mode 100644 index 92ca1749d..000000000 --- a/stdlib/go1_17_math_cmplx.go +++ /dev/null @@ -1,44 +0,0 @@ -// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "math/cmplx" - "reflect" -) - -func init() { - Symbols["math/cmplx/cmplx"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Abs": reflect.ValueOf(cmplx.Abs), - "Acos": reflect.ValueOf(cmplx.Acos), - "Acosh": reflect.ValueOf(cmplx.Acosh), - "Asin": reflect.ValueOf(cmplx.Asin), - "Asinh": reflect.ValueOf(cmplx.Asinh), - "Atan": reflect.ValueOf(cmplx.Atan), - "Atanh": reflect.ValueOf(cmplx.Atanh), - "Conj": reflect.ValueOf(cmplx.Conj), - "Cos": reflect.ValueOf(cmplx.Cos), - "Cosh": reflect.ValueOf(cmplx.Cosh), - "Cot": reflect.ValueOf(cmplx.Cot), - "Exp": reflect.ValueOf(cmplx.Exp), - "Inf": reflect.ValueOf(cmplx.Inf), - "IsInf": reflect.ValueOf(cmplx.IsInf), - "IsNaN": reflect.ValueOf(cmplx.IsNaN), - "Log": reflect.ValueOf(cmplx.Log), - "Log10": reflect.ValueOf(cmplx.Log10), - "NaN": reflect.ValueOf(cmplx.NaN), - "Phase": reflect.ValueOf(cmplx.Phase), - "Polar": reflect.ValueOf(cmplx.Polar), - "Pow": reflect.ValueOf(cmplx.Pow), - "Rect": reflect.ValueOf(cmplx.Rect), - "Sin": reflect.ValueOf(cmplx.Sin), - "Sinh": reflect.ValueOf(cmplx.Sinh), - "Sqrt": reflect.ValueOf(cmplx.Sqrt), - "Tan": reflect.ValueOf(cmplx.Tan), - "Tanh": reflect.ValueOf(cmplx.Tanh), - } -} diff --git a/stdlib/go1_17_math_rand.go b/stdlib/go1_17_math_rand.go deleted file mode 100644 index a8aae8bd6..000000000 --- a/stdlib/go1_17_math_rand.go +++ /dev/null @@ -1,78 +0,0 @@ -// Code generated by 'yaegi extract math/rand'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "math/rand" - "reflect" -) - -func init() { - Symbols["math/rand/rand"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ExpFloat64": reflect.ValueOf(rand.ExpFloat64), - "Float32": reflect.ValueOf(rand.Float32), - "Float64": reflect.ValueOf(rand.Float64), - "Int": reflect.ValueOf(rand.Int), - "Int31": reflect.ValueOf(rand.Int31), - "Int31n": reflect.ValueOf(rand.Int31n), - "Int63": reflect.ValueOf(rand.Int63), - "Int63n": reflect.ValueOf(rand.Int63n), - "Intn": reflect.ValueOf(rand.Intn), - "New": reflect.ValueOf(rand.New), - "NewSource": reflect.ValueOf(rand.NewSource), - "NewZipf": reflect.ValueOf(rand.NewZipf), - "NormFloat64": reflect.ValueOf(rand.NormFloat64), - "Perm": reflect.ValueOf(rand.Perm), - "Read": reflect.ValueOf(rand.Read), - "Seed": reflect.ValueOf(rand.Seed), - "Shuffle": reflect.ValueOf(rand.Shuffle), - "Uint32": reflect.ValueOf(rand.Uint32), - "Uint64": reflect.ValueOf(rand.Uint64), - - // type definitions - "Rand": reflect.ValueOf((*rand.Rand)(nil)), - "Source": reflect.ValueOf((*rand.Source)(nil)), - "Source64": reflect.ValueOf((*rand.Source64)(nil)), - "Zipf": reflect.ValueOf((*rand.Zipf)(nil)), - - // interface wrapper definitions - "_Source": reflect.ValueOf((*_math_rand_Source)(nil)), - "_Source64": reflect.ValueOf((*_math_rand_Source64)(nil)), - } -} - -// _math_rand_Source is an interface wrapper for Source type -type _math_rand_Source struct { - IValue interface{} - WInt63 func() int64 - WSeed func(seed int64) -} - -func (W _math_rand_Source) Int63() int64 { - return W.WInt63() -} -func (W _math_rand_Source) Seed(seed int64) { - W.WSeed(seed) -} - -// _math_rand_Source64 is an interface wrapper for Source64 type -type _math_rand_Source64 struct { - IValue interface{} - WInt63 func() int64 - WSeed func(seed int64) - WUint64 func() uint64 -} - -func (W _math_rand_Source64) Int63() int64 { - return W.WInt63() -} -func (W _math_rand_Source64) Seed(seed int64) { - W.WSeed(seed) -} -func (W _math_rand_Source64) Uint64() uint64 { - return W.WUint64() -} diff --git a/stdlib/go1_17_mime.go b/stdlib/go1_17_mime.go deleted file mode 100644 index b4de8d797..000000000 --- a/stdlib/go1_17_mime.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract mime'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "mime" - "reflect" -) - -func init() { - Symbols["mime/mime"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AddExtensionType": reflect.ValueOf(mime.AddExtensionType), - "BEncoding": reflect.ValueOf(mime.BEncoding), - "ErrInvalidMediaParameter": reflect.ValueOf(&mime.ErrInvalidMediaParameter).Elem(), - "ExtensionsByType": reflect.ValueOf(mime.ExtensionsByType), - "FormatMediaType": reflect.ValueOf(mime.FormatMediaType), - "ParseMediaType": reflect.ValueOf(mime.ParseMediaType), - "QEncoding": reflect.ValueOf(mime.QEncoding), - "TypeByExtension": reflect.ValueOf(mime.TypeByExtension), - - // type definitions - "WordDecoder": reflect.ValueOf((*mime.WordDecoder)(nil)), - "WordEncoder": reflect.ValueOf((*mime.WordEncoder)(nil)), - } -} diff --git a/stdlib/go1_17_mime_multipart.go b/stdlib/go1_17_mime_multipart.go deleted file mode 100644 index 7a1da003c..000000000 --- a/stdlib/go1_17_mime_multipart.go +++ /dev/null @@ -1,53 +0,0 @@ -// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "mime/multipart" - "reflect" -) - -func init() { - Symbols["mime/multipart/multipart"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrMessageTooLarge": reflect.ValueOf(&multipart.ErrMessageTooLarge).Elem(), - "NewReader": reflect.ValueOf(multipart.NewReader), - "NewWriter": reflect.ValueOf(multipart.NewWriter), - - // type definitions - "File": reflect.ValueOf((*multipart.File)(nil)), - "FileHeader": reflect.ValueOf((*multipart.FileHeader)(nil)), - "Form": reflect.ValueOf((*multipart.Form)(nil)), - "Part": reflect.ValueOf((*multipart.Part)(nil)), - "Reader": reflect.ValueOf((*multipart.Reader)(nil)), - "Writer": reflect.ValueOf((*multipart.Writer)(nil)), - - // interface wrapper definitions - "_File": reflect.ValueOf((*_mime_multipart_File)(nil)), - } -} - -// _mime_multipart_File is an interface wrapper for File type -type _mime_multipart_File struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WReadAt func(p []byte, off int64) (n int, err error) - WSeek func(offset int64, whence int) (int64, error) -} - -func (W _mime_multipart_File) Close() error { - return W.WClose() -} -func (W _mime_multipart_File) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _mime_multipart_File) ReadAt(p []byte, off int64) (n int, err error) { - return W.WReadAt(p, off) -} -func (W _mime_multipart_File) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} diff --git a/stdlib/go1_17_mime_quotedprintable.go b/stdlib/go1_17_mime_quotedprintable.go deleted file mode 100644 index 2e0d46322..000000000 --- a/stdlib/go1_17_mime_quotedprintable.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "mime/quotedprintable" - "reflect" -) - -func init() { - Symbols["mime/quotedprintable/quotedprintable"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewReader": reflect.ValueOf(quotedprintable.NewReader), - "NewWriter": reflect.ValueOf(quotedprintable.NewWriter), - - // type definitions - "Reader": reflect.ValueOf((*quotedprintable.Reader)(nil)), - "Writer": reflect.ValueOf((*quotedprintable.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_net.go b/stdlib/go1_17_net.go deleted file mode 100644 index 2e35f420c..000000000 --- a/stdlib/go1_17_net.go +++ /dev/null @@ -1,252 +0,0 @@ -// Code generated by 'yaegi extract net'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "net" - "reflect" - "time" -) - -func init() { - Symbols["net/net"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CIDRMask": reflect.ValueOf(net.CIDRMask), - "DefaultResolver": reflect.ValueOf(&net.DefaultResolver).Elem(), - "Dial": reflect.ValueOf(net.Dial), - "DialIP": reflect.ValueOf(net.DialIP), - "DialTCP": reflect.ValueOf(net.DialTCP), - "DialTimeout": reflect.ValueOf(net.DialTimeout), - "DialUDP": reflect.ValueOf(net.DialUDP), - "DialUnix": reflect.ValueOf(net.DialUnix), - "ErrClosed": reflect.ValueOf(&net.ErrClosed).Elem(), - "ErrWriteToConnected": reflect.ValueOf(&net.ErrWriteToConnected).Elem(), - "FileConn": reflect.ValueOf(net.FileConn), - "FileListener": reflect.ValueOf(net.FileListener), - "FilePacketConn": reflect.ValueOf(net.FilePacketConn), - "FlagBroadcast": reflect.ValueOf(net.FlagBroadcast), - "FlagLoopback": reflect.ValueOf(net.FlagLoopback), - "FlagMulticast": reflect.ValueOf(net.FlagMulticast), - "FlagPointToPoint": reflect.ValueOf(net.FlagPointToPoint), - "FlagUp": reflect.ValueOf(net.FlagUp), - "IPv4": reflect.ValueOf(net.IPv4), - "IPv4Mask": reflect.ValueOf(net.IPv4Mask), - "IPv4allrouter": reflect.ValueOf(&net.IPv4allrouter).Elem(), - "IPv4allsys": reflect.ValueOf(&net.IPv4allsys).Elem(), - "IPv4bcast": reflect.ValueOf(&net.IPv4bcast).Elem(), - "IPv4len": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPv4zero": reflect.ValueOf(&net.IPv4zero).Elem(), - "IPv6interfacelocalallnodes": reflect.ValueOf(&net.IPv6interfacelocalallnodes).Elem(), - "IPv6len": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPv6linklocalallnodes": reflect.ValueOf(&net.IPv6linklocalallnodes).Elem(), - "IPv6linklocalallrouters": reflect.ValueOf(&net.IPv6linklocalallrouters).Elem(), - "IPv6loopback": reflect.ValueOf(&net.IPv6loopback).Elem(), - "IPv6unspecified": reflect.ValueOf(&net.IPv6unspecified).Elem(), - "IPv6zero": reflect.ValueOf(&net.IPv6zero).Elem(), - "InterfaceAddrs": reflect.ValueOf(net.InterfaceAddrs), - "InterfaceByIndex": reflect.ValueOf(net.InterfaceByIndex), - "InterfaceByName": reflect.ValueOf(net.InterfaceByName), - "Interfaces": reflect.ValueOf(net.Interfaces), - "JoinHostPort": reflect.ValueOf(net.JoinHostPort), - "Listen": reflect.ValueOf(net.Listen), - "ListenIP": reflect.ValueOf(net.ListenIP), - "ListenMulticastUDP": reflect.ValueOf(net.ListenMulticastUDP), - "ListenPacket": reflect.ValueOf(net.ListenPacket), - "ListenTCP": reflect.ValueOf(net.ListenTCP), - "ListenUDP": reflect.ValueOf(net.ListenUDP), - "ListenUnix": reflect.ValueOf(net.ListenUnix), - "ListenUnixgram": reflect.ValueOf(net.ListenUnixgram), - "LookupAddr": reflect.ValueOf(net.LookupAddr), - "LookupCNAME": reflect.ValueOf(net.LookupCNAME), - "LookupHost": reflect.ValueOf(net.LookupHost), - "LookupIP": reflect.ValueOf(net.LookupIP), - "LookupMX": reflect.ValueOf(net.LookupMX), - "LookupNS": reflect.ValueOf(net.LookupNS), - "LookupPort": reflect.ValueOf(net.LookupPort), - "LookupSRV": reflect.ValueOf(net.LookupSRV), - "LookupTXT": reflect.ValueOf(net.LookupTXT), - "ParseCIDR": reflect.ValueOf(net.ParseCIDR), - "ParseIP": reflect.ValueOf(net.ParseIP), - "ParseMAC": reflect.ValueOf(net.ParseMAC), - "Pipe": reflect.ValueOf(net.Pipe), - "ResolveIPAddr": reflect.ValueOf(net.ResolveIPAddr), - "ResolveTCPAddr": reflect.ValueOf(net.ResolveTCPAddr), - "ResolveUDPAddr": reflect.ValueOf(net.ResolveUDPAddr), - "ResolveUnixAddr": reflect.ValueOf(net.ResolveUnixAddr), - "SplitHostPort": reflect.ValueOf(net.SplitHostPort), - - // type definitions - "Addr": reflect.ValueOf((*net.Addr)(nil)), - "AddrError": reflect.ValueOf((*net.AddrError)(nil)), - "Buffers": reflect.ValueOf((*net.Buffers)(nil)), - "Conn": reflect.ValueOf((*net.Conn)(nil)), - "DNSConfigError": reflect.ValueOf((*net.DNSConfigError)(nil)), - "DNSError": reflect.ValueOf((*net.DNSError)(nil)), - "Dialer": reflect.ValueOf((*net.Dialer)(nil)), - "Error": reflect.ValueOf((*net.Error)(nil)), - "Flags": reflect.ValueOf((*net.Flags)(nil)), - "HardwareAddr": reflect.ValueOf((*net.HardwareAddr)(nil)), - "IP": reflect.ValueOf((*net.IP)(nil)), - "IPAddr": reflect.ValueOf((*net.IPAddr)(nil)), - "IPConn": reflect.ValueOf((*net.IPConn)(nil)), - "IPMask": reflect.ValueOf((*net.IPMask)(nil)), - "IPNet": reflect.ValueOf((*net.IPNet)(nil)), - "Interface": reflect.ValueOf((*net.Interface)(nil)), - "InvalidAddrError": reflect.ValueOf((*net.InvalidAddrError)(nil)), - "ListenConfig": reflect.ValueOf((*net.ListenConfig)(nil)), - "Listener": reflect.ValueOf((*net.Listener)(nil)), - "MX": reflect.ValueOf((*net.MX)(nil)), - "NS": reflect.ValueOf((*net.NS)(nil)), - "OpError": reflect.ValueOf((*net.OpError)(nil)), - "PacketConn": reflect.ValueOf((*net.PacketConn)(nil)), - "ParseError": reflect.ValueOf((*net.ParseError)(nil)), - "Resolver": reflect.ValueOf((*net.Resolver)(nil)), - "SRV": reflect.ValueOf((*net.SRV)(nil)), - "TCPAddr": reflect.ValueOf((*net.TCPAddr)(nil)), - "TCPConn": reflect.ValueOf((*net.TCPConn)(nil)), - "TCPListener": reflect.ValueOf((*net.TCPListener)(nil)), - "UDPAddr": reflect.ValueOf((*net.UDPAddr)(nil)), - "UDPConn": reflect.ValueOf((*net.UDPConn)(nil)), - "UnixAddr": reflect.ValueOf((*net.UnixAddr)(nil)), - "UnixConn": reflect.ValueOf((*net.UnixConn)(nil)), - "UnixListener": reflect.ValueOf((*net.UnixListener)(nil)), - "UnknownNetworkError": reflect.ValueOf((*net.UnknownNetworkError)(nil)), - - // interface wrapper definitions - "_Addr": reflect.ValueOf((*_net_Addr)(nil)), - "_Conn": reflect.ValueOf((*_net_Conn)(nil)), - "_Error": reflect.ValueOf((*_net_Error)(nil)), - "_Listener": reflect.ValueOf((*_net_Listener)(nil)), - "_PacketConn": reflect.ValueOf((*_net_PacketConn)(nil)), - } -} - -// _net_Addr is an interface wrapper for Addr type -type _net_Addr struct { - IValue interface{} - WNetwork func() string - WString func() string -} - -func (W _net_Addr) Network() string { - return W.WNetwork() -} -func (W _net_Addr) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} - -// _net_Conn is an interface wrapper for Conn type -type _net_Conn struct { - IValue interface{} - WClose func() error - WLocalAddr func() net.Addr - WRead func(b []byte) (n int, err error) - WRemoteAddr func() net.Addr - WSetDeadline func(t time.Time) error - WSetReadDeadline func(t time.Time) error - WSetWriteDeadline func(t time.Time) error - WWrite func(b []byte) (n int, err error) -} - -func (W _net_Conn) Close() error { - return W.WClose() -} -func (W _net_Conn) LocalAddr() net.Addr { - return W.WLocalAddr() -} -func (W _net_Conn) Read(b []byte) (n int, err error) { - return W.WRead(b) -} -func (W _net_Conn) RemoteAddr() net.Addr { - return W.WRemoteAddr() -} -func (W _net_Conn) SetDeadline(t time.Time) error { - return W.WSetDeadline(t) -} -func (W _net_Conn) SetReadDeadline(t time.Time) error { - return W.WSetReadDeadline(t) -} -func (W _net_Conn) SetWriteDeadline(t time.Time) error { - return W.WSetWriteDeadline(t) -} -func (W _net_Conn) Write(b []byte) (n int, err error) { - return W.WWrite(b) -} - -// _net_Error is an interface wrapper for Error type -type _net_Error struct { - IValue interface{} - WError func() string - WTemporary func() bool - WTimeout func() bool -} - -func (W _net_Error) Error() string { - return W.WError() -} -func (W _net_Error) Temporary() bool { - return W.WTemporary() -} -func (W _net_Error) Timeout() bool { - return W.WTimeout() -} - -// _net_Listener is an interface wrapper for Listener type -type _net_Listener struct { - IValue interface{} - WAccept func() (net.Conn, error) - WAddr func() net.Addr - WClose func() error -} - -func (W _net_Listener) Accept() (net.Conn, error) { - return W.WAccept() -} -func (W _net_Listener) Addr() net.Addr { - return W.WAddr() -} -func (W _net_Listener) Close() error { - return W.WClose() -} - -// _net_PacketConn is an interface wrapper for PacketConn type -type _net_PacketConn struct { - IValue interface{} - WClose func() error - WLocalAddr func() net.Addr - WReadFrom func(p []byte) (n int, addr net.Addr, err error) - WSetDeadline func(t time.Time) error - WSetReadDeadline func(t time.Time) error - WSetWriteDeadline func(t time.Time) error - WWriteTo func(p []byte, addr net.Addr) (n int, err error) -} - -func (W _net_PacketConn) Close() error { - return W.WClose() -} -func (W _net_PacketConn) LocalAddr() net.Addr { - return W.WLocalAddr() -} -func (W _net_PacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { - return W.WReadFrom(p) -} -func (W _net_PacketConn) SetDeadline(t time.Time) error { - return W.WSetDeadline(t) -} -func (W _net_PacketConn) SetReadDeadline(t time.Time) error { - return W.WSetReadDeadline(t) -} -func (W _net_PacketConn) SetWriteDeadline(t time.Time) error { - return W.WSetWriteDeadline(t) -} -func (W _net_PacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) { - return W.WWriteTo(p, addr) -} diff --git a/stdlib/go1_17_net_http.go b/stdlib/go1_17_net_http.go deleted file mode 100644 index e3c716da2..000000000 --- a/stdlib/go1_17_net_http.go +++ /dev/null @@ -1,337 +0,0 @@ -// Code generated by 'yaegi extract net/http'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "bufio" - "go/constant" - "go/token" - "io/fs" - "net" - "net/http" - "net/url" - "reflect" -) - -func init() { - Symbols["net/http/http"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllowQuerySemicolons": reflect.ValueOf(http.AllowQuerySemicolons), - "CanonicalHeaderKey": reflect.ValueOf(http.CanonicalHeaderKey), - "DefaultClient": reflect.ValueOf(&http.DefaultClient).Elem(), - "DefaultMaxHeaderBytes": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "DefaultMaxIdleConnsPerHost": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DefaultServeMux": reflect.ValueOf(&http.DefaultServeMux).Elem(), - "DefaultTransport": reflect.ValueOf(&http.DefaultTransport).Elem(), - "DetectContentType": reflect.ValueOf(http.DetectContentType), - "ErrAbortHandler": reflect.ValueOf(&http.ErrAbortHandler).Elem(), - "ErrBodyNotAllowed": reflect.ValueOf(&http.ErrBodyNotAllowed).Elem(), - "ErrBodyReadAfterClose": reflect.ValueOf(&http.ErrBodyReadAfterClose).Elem(), - "ErrContentLength": reflect.ValueOf(&http.ErrContentLength).Elem(), - "ErrHandlerTimeout": reflect.ValueOf(&http.ErrHandlerTimeout).Elem(), - "ErrHeaderTooLong": reflect.ValueOf(&http.ErrHeaderTooLong).Elem(), - "ErrHijacked": reflect.ValueOf(&http.ErrHijacked).Elem(), - "ErrLineTooLong": reflect.ValueOf(&http.ErrLineTooLong).Elem(), - "ErrMissingBoundary": reflect.ValueOf(&http.ErrMissingBoundary).Elem(), - "ErrMissingContentLength": reflect.ValueOf(&http.ErrMissingContentLength).Elem(), - "ErrMissingFile": reflect.ValueOf(&http.ErrMissingFile).Elem(), - "ErrNoCookie": reflect.ValueOf(&http.ErrNoCookie).Elem(), - "ErrNoLocation": reflect.ValueOf(&http.ErrNoLocation).Elem(), - "ErrNotMultipart": reflect.ValueOf(&http.ErrNotMultipart).Elem(), - "ErrNotSupported": reflect.ValueOf(&http.ErrNotSupported).Elem(), - "ErrServerClosed": reflect.ValueOf(&http.ErrServerClosed).Elem(), - "ErrShortBody": reflect.ValueOf(&http.ErrShortBody).Elem(), - "ErrSkipAltProtocol": reflect.ValueOf(&http.ErrSkipAltProtocol).Elem(), - "ErrUnexpectedTrailer": reflect.ValueOf(&http.ErrUnexpectedTrailer).Elem(), - "ErrUseLastResponse": reflect.ValueOf(&http.ErrUseLastResponse).Elem(), - "ErrWriteAfterFlush": reflect.ValueOf(&http.ErrWriteAfterFlush).Elem(), - "Error": reflect.ValueOf(http.Error), - "FS": reflect.ValueOf(http.FS), - "FileServer": reflect.ValueOf(http.FileServer), - "Get": reflect.ValueOf(http.Get), - "Handle": reflect.ValueOf(http.Handle), - "HandleFunc": reflect.ValueOf(http.HandleFunc), - "Head": reflect.ValueOf(http.Head), - "ListenAndServe": reflect.ValueOf(http.ListenAndServe), - "ListenAndServeTLS": reflect.ValueOf(http.ListenAndServeTLS), - "LocalAddrContextKey": reflect.ValueOf(&http.LocalAddrContextKey).Elem(), - "MaxBytesReader": reflect.ValueOf(http.MaxBytesReader), - "MethodConnect": reflect.ValueOf(constant.MakeFromLiteral("\"CONNECT\"", token.STRING, 0)), - "MethodDelete": reflect.ValueOf(constant.MakeFromLiteral("\"DELETE\"", token.STRING, 0)), - "MethodGet": reflect.ValueOf(constant.MakeFromLiteral("\"GET\"", token.STRING, 0)), - "MethodHead": reflect.ValueOf(constant.MakeFromLiteral("\"HEAD\"", token.STRING, 0)), - "MethodOptions": reflect.ValueOf(constant.MakeFromLiteral("\"OPTIONS\"", token.STRING, 0)), - "MethodPatch": reflect.ValueOf(constant.MakeFromLiteral("\"PATCH\"", token.STRING, 0)), - "MethodPost": reflect.ValueOf(constant.MakeFromLiteral("\"POST\"", token.STRING, 0)), - "MethodPut": reflect.ValueOf(constant.MakeFromLiteral("\"PUT\"", token.STRING, 0)), - "MethodTrace": reflect.ValueOf(constant.MakeFromLiteral("\"TRACE\"", token.STRING, 0)), - "NewFileTransport": reflect.ValueOf(http.NewFileTransport), - "NewRequest": reflect.ValueOf(http.NewRequest), - "NewRequestWithContext": reflect.ValueOf(http.NewRequestWithContext), - "NewServeMux": reflect.ValueOf(http.NewServeMux), - "NoBody": reflect.ValueOf(&http.NoBody).Elem(), - "NotFound": reflect.ValueOf(http.NotFound), - "NotFoundHandler": reflect.ValueOf(http.NotFoundHandler), - "ParseHTTPVersion": reflect.ValueOf(http.ParseHTTPVersion), - "ParseTime": reflect.ValueOf(http.ParseTime), - "Post": reflect.ValueOf(http.Post), - "PostForm": reflect.ValueOf(http.PostForm), - "ProxyFromEnvironment": reflect.ValueOf(http.ProxyFromEnvironment), - "ProxyURL": reflect.ValueOf(http.ProxyURL), - "ReadRequest": reflect.ValueOf(http.ReadRequest), - "ReadResponse": reflect.ValueOf(http.ReadResponse), - "Redirect": reflect.ValueOf(http.Redirect), - "RedirectHandler": reflect.ValueOf(http.RedirectHandler), - "SameSiteDefaultMode": reflect.ValueOf(http.SameSiteDefaultMode), - "SameSiteLaxMode": reflect.ValueOf(http.SameSiteLaxMode), - "SameSiteNoneMode": reflect.ValueOf(http.SameSiteNoneMode), - "SameSiteStrictMode": reflect.ValueOf(http.SameSiteStrictMode), - "Serve": reflect.ValueOf(http.Serve), - "ServeContent": reflect.ValueOf(http.ServeContent), - "ServeFile": reflect.ValueOf(http.ServeFile), - "ServeTLS": reflect.ValueOf(http.ServeTLS), - "ServerContextKey": reflect.ValueOf(&http.ServerContextKey).Elem(), - "SetCookie": reflect.ValueOf(http.SetCookie), - "StateActive": reflect.ValueOf(http.StateActive), - "StateClosed": reflect.ValueOf(http.StateClosed), - "StateHijacked": reflect.ValueOf(http.StateHijacked), - "StateIdle": reflect.ValueOf(http.StateIdle), - "StateNew": reflect.ValueOf(http.StateNew), - "StatusAccepted": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "StatusAlreadyReported": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "StatusBadGateway": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "StatusBadRequest": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "StatusConflict": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "StatusContinue": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "StatusCreated": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "StatusEarlyHints": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "StatusExpectationFailed": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "StatusFailedDependency": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "StatusForbidden": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "StatusFound": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "StatusGatewayTimeout": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "StatusGone": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "StatusHTTPVersionNotSupported": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), - "StatusIMUsed": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "StatusInsufficientStorage": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "StatusInternalServerError": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "StatusLengthRequired": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "StatusLocked": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "StatusLoopDetected": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "StatusMethodNotAllowed": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "StatusMisdirectedRequest": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "StatusMovedPermanently": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "StatusMultiStatus": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "StatusMultipleChoices": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "StatusNetworkAuthenticationRequired": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "StatusNoContent": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "StatusNonAuthoritativeInfo": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "StatusNotAcceptable": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "StatusNotExtended": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), - "StatusNotFound": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "StatusNotImplemented": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "StatusNotModified": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "StatusOK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "StatusPartialContent": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "StatusPaymentRequired": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "StatusPermanentRedirect": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "StatusPreconditionFailed": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "StatusPreconditionRequired": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "StatusProcessing": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "StatusProxyAuthRequired": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "StatusRequestEntityTooLarge": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "StatusRequestHeaderFieldsTooLarge": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "StatusRequestTimeout": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "StatusRequestURITooLong": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "StatusRequestedRangeNotSatisfiable": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "StatusResetContent": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "StatusSeeOther": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "StatusServiceUnavailable": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "StatusSwitchingProtocols": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "StatusTeapot": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "StatusTemporaryRedirect": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "StatusText": reflect.ValueOf(http.StatusText), - "StatusTooEarly": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "StatusTooManyRequests": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "StatusUnauthorized": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "StatusUnavailableForLegalReasons": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "StatusUnprocessableEntity": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "StatusUnsupportedMediaType": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "StatusUpgradeRequired": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "StatusUseProxy": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "StatusVariantAlsoNegotiates": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "StripPrefix": reflect.ValueOf(http.StripPrefix), - "TimeFormat": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 GMT\"", token.STRING, 0)), - "TimeoutHandler": reflect.ValueOf(http.TimeoutHandler), - "TrailerPrefix": reflect.ValueOf(constant.MakeFromLiteral("\"Trailer:\"", token.STRING, 0)), - - // type definitions - "Client": reflect.ValueOf((*http.Client)(nil)), - "CloseNotifier": reflect.ValueOf((*http.CloseNotifier)(nil)), - "ConnState": reflect.ValueOf((*http.ConnState)(nil)), - "Cookie": reflect.ValueOf((*http.Cookie)(nil)), - "CookieJar": reflect.ValueOf((*http.CookieJar)(nil)), - "Dir": reflect.ValueOf((*http.Dir)(nil)), - "File": reflect.ValueOf((*http.File)(nil)), - "FileSystem": reflect.ValueOf((*http.FileSystem)(nil)), - "Flusher": reflect.ValueOf((*http.Flusher)(nil)), - "Handler": reflect.ValueOf((*http.Handler)(nil)), - "HandlerFunc": reflect.ValueOf((*http.HandlerFunc)(nil)), - "Header": reflect.ValueOf((*http.Header)(nil)), - "Hijacker": reflect.ValueOf((*http.Hijacker)(nil)), - "ProtocolError": reflect.ValueOf((*http.ProtocolError)(nil)), - "PushOptions": reflect.ValueOf((*http.PushOptions)(nil)), - "Pusher": reflect.ValueOf((*http.Pusher)(nil)), - "Request": reflect.ValueOf((*http.Request)(nil)), - "Response": reflect.ValueOf((*http.Response)(nil)), - "ResponseWriter": reflect.ValueOf((*http.ResponseWriter)(nil)), - "RoundTripper": reflect.ValueOf((*http.RoundTripper)(nil)), - "SameSite": reflect.ValueOf((*http.SameSite)(nil)), - "ServeMux": reflect.ValueOf((*http.ServeMux)(nil)), - "Server": reflect.ValueOf((*http.Server)(nil)), - "Transport": reflect.ValueOf((*http.Transport)(nil)), - - // interface wrapper definitions - "_CloseNotifier": reflect.ValueOf((*_net_http_CloseNotifier)(nil)), - "_CookieJar": reflect.ValueOf((*_net_http_CookieJar)(nil)), - "_File": reflect.ValueOf((*_net_http_File)(nil)), - "_FileSystem": reflect.ValueOf((*_net_http_FileSystem)(nil)), - "_Flusher": reflect.ValueOf((*_net_http_Flusher)(nil)), - "_Handler": reflect.ValueOf((*_net_http_Handler)(nil)), - "_Hijacker": reflect.ValueOf((*_net_http_Hijacker)(nil)), - "_Pusher": reflect.ValueOf((*_net_http_Pusher)(nil)), - "_ResponseWriter": reflect.ValueOf((*_net_http_ResponseWriter)(nil)), - "_RoundTripper": reflect.ValueOf((*_net_http_RoundTripper)(nil)), - } -} - -// _net_http_CloseNotifier is an interface wrapper for CloseNotifier type -type _net_http_CloseNotifier struct { - IValue interface{} - WCloseNotify func() <-chan bool -} - -func (W _net_http_CloseNotifier) CloseNotify() <-chan bool { - return W.WCloseNotify() -} - -// _net_http_CookieJar is an interface wrapper for CookieJar type -type _net_http_CookieJar struct { - IValue interface{} - WCookies func(u *url.URL) []*http.Cookie - WSetCookies func(u *url.URL, cookies []*http.Cookie) -} - -func (W _net_http_CookieJar) Cookies(u *url.URL) []*http.Cookie { - return W.WCookies(u) -} -func (W _net_http_CookieJar) SetCookies(u *url.URL, cookies []*http.Cookie) { - W.WSetCookies(u, cookies) -} - -// _net_http_File is an interface wrapper for File type -type _net_http_File struct { - IValue interface{} - WClose func() error - WRead func(p []byte) (n int, err error) - WReaddir func(count int) ([]fs.FileInfo, error) - WSeek func(offset int64, whence int) (int64, error) - WStat func() (fs.FileInfo, error) -} - -func (W _net_http_File) Close() error { - return W.WClose() -} -func (W _net_http_File) Read(p []byte) (n int, err error) { - return W.WRead(p) -} -func (W _net_http_File) Readdir(count int) ([]fs.FileInfo, error) { - return W.WReaddir(count) -} -func (W _net_http_File) Seek(offset int64, whence int) (int64, error) { - return W.WSeek(offset, whence) -} -func (W _net_http_File) Stat() (fs.FileInfo, error) { - return W.WStat() -} - -// _net_http_FileSystem is an interface wrapper for FileSystem type -type _net_http_FileSystem struct { - IValue interface{} - WOpen func(name string) (http.File, error) -} - -func (W _net_http_FileSystem) Open(name string) (http.File, error) { - return W.WOpen(name) -} - -// _net_http_Flusher is an interface wrapper for Flusher type -type _net_http_Flusher struct { - IValue interface{} - WFlush func() -} - -func (W _net_http_Flusher) Flush() { - W.WFlush() -} - -// _net_http_Handler is an interface wrapper for Handler type -type _net_http_Handler struct { - IValue interface{} - WServeHTTP func(a0 http.ResponseWriter, a1 *http.Request) -} - -func (W _net_http_Handler) ServeHTTP(a0 http.ResponseWriter, a1 *http.Request) { - W.WServeHTTP(a0, a1) -} - -// _net_http_Hijacker is an interface wrapper for Hijacker type -type _net_http_Hijacker struct { - IValue interface{} - WHijack func() (net.Conn, *bufio.ReadWriter, error) -} - -func (W _net_http_Hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { - return W.WHijack() -} - -// _net_http_Pusher is an interface wrapper for Pusher type -type _net_http_Pusher struct { - IValue interface{} - WPush func(target string, opts *http.PushOptions) error -} - -func (W _net_http_Pusher) Push(target string, opts *http.PushOptions) error { - return W.WPush(target, opts) -} - -// _net_http_ResponseWriter is an interface wrapper for ResponseWriter type -type _net_http_ResponseWriter struct { - IValue interface{} - WHeader func() http.Header - WWrite func(a0 []byte) (int, error) - WWriteHeader func(statusCode int) -} - -func (W _net_http_ResponseWriter) Header() http.Header { - return W.WHeader() -} -func (W _net_http_ResponseWriter) Write(a0 []byte) (int, error) { - return W.WWrite(a0) -} -func (W _net_http_ResponseWriter) WriteHeader(statusCode int) { - W.WWriteHeader(statusCode) -} - -// _net_http_RoundTripper is an interface wrapper for RoundTripper type -type _net_http_RoundTripper struct { - IValue interface{} - WRoundTrip func(a0 *http.Request) (*http.Response, error) -} - -func (W _net_http_RoundTripper) RoundTrip(a0 *http.Request) (*http.Response, error) { - return W.WRoundTrip(a0) -} diff --git a/stdlib/go1_17_net_http_cgi.go b/stdlib/go1_17_net_http_cgi.go deleted file mode 100644 index 2d9808015..000000000 --- a/stdlib/go1_17_net_http_cgi.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/http/cgi" - "reflect" -) - -func init() { - Symbols["net/http/cgi/cgi"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Request": reflect.ValueOf(cgi.Request), - "RequestFromMap": reflect.ValueOf(cgi.RequestFromMap), - "Serve": reflect.ValueOf(cgi.Serve), - - // type definitions - "Handler": reflect.ValueOf((*cgi.Handler)(nil)), - } -} diff --git a/stdlib/go1_17_net_http_cookiejar.go b/stdlib/go1_17_net_http_cookiejar.go deleted file mode 100644 index 019cc9f73..000000000 --- a/stdlib/go1_17_net_http_cookiejar.go +++ /dev/null @@ -1,43 +0,0 @@ -// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/http/cookiejar" - "reflect" -) - -func init() { - Symbols["net/http/cookiejar/cookiejar"] = map[string]reflect.Value{ - // function, constant and variable definitions - "New": reflect.ValueOf(cookiejar.New), - - // type definitions - "Jar": reflect.ValueOf((*cookiejar.Jar)(nil)), - "Options": reflect.ValueOf((*cookiejar.Options)(nil)), - "PublicSuffixList": reflect.ValueOf((*cookiejar.PublicSuffixList)(nil)), - - // interface wrapper definitions - "_PublicSuffixList": reflect.ValueOf((*_net_http_cookiejar_PublicSuffixList)(nil)), - } -} - -// _net_http_cookiejar_PublicSuffixList is an interface wrapper for PublicSuffixList type -type _net_http_cookiejar_PublicSuffixList struct { - IValue interface{} - WPublicSuffix func(domain string) string - WString func() string -} - -func (W _net_http_cookiejar_PublicSuffixList) PublicSuffix(domain string) string { - return W.WPublicSuffix(domain) -} -func (W _net_http_cookiejar_PublicSuffixList) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_net_http_fcgi.go b/stdlib/go1_17_net_http_fcgi.go deleted file mode 100644 index 681103759..000000000 --- a/stdlib/go1_17_net_http_fcgi.go +++ /dev/null @@ -1,21 +0,0 @@ -// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/http/fcgi" - "reflect" -) - -func init() { - Symbols["net/http/fcgi/fcgi"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrConnClosed": reflect.ValueOf(&fcgi.ErrConnClosed).Elem(), - "ErrRequestAborted": reflect.ValueOf(&fcgi.ErrRequestAborted).Elem(), - "ProcessEnv": reflect.ValueOf(fcgi.ProcessEnv), - "Serve": reflect.ValueOf(fcgi.Serve), - } -} diff --git a/stdlib/go1_17_net_http_httptest.go b/stdlib/go1_17_net_http_httptest.go deleted file mode 100644 index 38461f184..000000000 --- a/stdlib/go1_17_net_http_httptest.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "net/http/httptest" - "reflect" -) - -func init() { - Symbols["net/http/httptest/httptest"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DefaultRemoteAddr": reflect.ValueOf(constant.MakeFromLiteral("\"1.2.3.4\"", token.STRING, 0)), - "NewRecorder": reflect.ValueOf(httptest.NewRecorder), - "NewRequest": reflect.ValueOf(httptest.NewRequest), - "NewServer": reflect.ValueOf(httptest.NewServer), - "NewTLSServer": reflect.ValueOf(httptest.NewTLSServer), - "NewUnstartedServer": reflect.ValueOf(httptest.NewUnstartedServer), - - // type definitions - "ResponseRecorder": reflect.ValueOf((*httptest.ResponseRecorder)(nil)), - "Server": reflect.ValueOf((*httptest.Server)(nil)), - } -} diff --git a/stdlib/go1_17_net_http_httptrace.go b/stdlib/go1_17_net_http_httptrace.go deleted file mode 100644 index 74d299dda..000000000 --- a/stdlib/go1_17_net_http_httptrace.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/http/httptrace" - "reflect" -) - -func init() { - Symbols["net/http/httptrace/httptrace"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ContextClientTrace": reflect.ValueOf(httptrace.ContextClientTrace), - "WithClientTrace": reflect.ValueOf(httptrace.WithClientTrace), - - // type definitions - "ClientTrace": reflect.ValueOf((*httptrace.ClientTrace)(nil)), - "DNSDoneInfo": reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)), - "DNSStartInfo": reflect.ValueOf((*httptrace.DNSStartInfo)(nil)), - "GotConnInfo": reflect.ValueOf((*httptrace.GotConnInfo)(nil)), - "WroteRequestInfo": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)), - } -} diff --git a/stdlib/go1_17_net_http_httputil.go b/stdlib/go1_17_net_http_httputil.go deleted file mode 100644 index 16f97b4f9..000000000 --- a/stdlib/go1_17_net_http_httputil.go +++ /dev/null @@ -1,53 +0,0 @@ -// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/http/httputil" - "reflect" -) - -func init() { - Symbols["net/http/httputil/httputil"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DumpRequest": reflect.ValueOf(httputil.DumpRequest), - "DumpRequestOut": reflect.ValueOf(httputil.DumpRequestOut), - "DumpResponse": reflect.ValueOf(httputil.DumpResponse), - "ErrClosed": reflect.ValueOf(&httputil.ErrClosed).Elem(), - "ErrLineTooLong": reflect.ValueOf(&httputil.ErrLineTooLong).Elem(), - "ErrPersistEOF": reflect.ValueOf(&httputil.ErrPersistEOF).Elem(), - "ErrPipeline": reflect.ValueOf(&httputil.ErrPipeline).Elem(), - "NewChunkedReader": reflect.ValueOf(httputil.NewChunkedReader), - "NewChunkedWriter": reflect.ValueOf(httputil.NewChunkedWriter), - "NewClientConn": reflect.ValueOf(httputil.NewClientConn), - "NewProxyClientConn": reflect.ValueOf(httputil.NewProxyClientConn), - "NewServerConn": reflect.ValueOf(httputil.NewServerConn), - "NewSingleHostReverseProxy": reflect.ValueOf(httputil.NewSingleHostReverseProxy), - - // type definitions - "BufferPool": reflect.ValueOf((*httputil.BufferPool)(nil)), - "ClientConn": reflect.ValueOf((*httputil.ClientConn)(nil)), - "ReverseProxy": reflect.ValueOf((*httputil.ReverseProxy)(nil)), - "ServerConn": reflect.ValueOf((*httputil.ServerConn)(nil)), - - // interface wrapper definitions - "_BufferPool": reflect.ValueOf((*_net_http_httputil_BufferPool)(nil)), - } -} - -// _net_http_httputil_BufferPool is an interface wrapper for BufferPool type -type _net_http_httputil_BufferPool struct { - IValue interface{} - WGet func() []byte - WPut func(a0 []byte) -} - -func (W _net_http_httputil_BufferPool) Get() []byte { - return W.WGet() -} -func (W _net_http_httputil_BufferPool) Put(a0 []byte) { - W.WPut(a0) -} diff --git a/stdlib/go1_17_net_http_pprof.go b/stdlib/go1_17_net_http_pprof.go deleted file mode 100644 index 0fe4d41ca..000000000 --- a/stdlib/go1_17_net_http_pprof.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/http/pprof" - "reflect" -) - -func init() { - Symbols["net/http/pprof/pprof"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Cmdline": reflect.ValueOf(pprof.Cmdline), - "Handler": reflect.ValueOf(pprof.Handler), - "Index": reflect.ValueOf(pprof.Index), - "Profile": reflect.ValueOf(pprof.Profile), - "Symbol": reflect.ValueOf(pprof.Symbol), - "Trace": reflect.ValueOf(pprof.Trace), - } -} diff --git a/stdlib/go1_17_net_mail.go b/stdlib/go1_17_net_mail.go deleted file mode 100644 index ef697d557..000000000 --- a/stdlib/go1_17_net_mail.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract net/mail'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/mail" - "reflect" -) - -func init() { - Symbols["net/mail/mail"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ErrHeaderNotPresent": reflect.ValueOf(&mail.ErrHeaderNotPresent).Elem(), - "ParseAddress": reflect.ValueOf(mail.ParseAddress), - "ParseAddressList": reflect.ValueOf(mail.ParseAddressList), - "ParseDate": reflect.ValueOf(mail.ParseDate), - "ReadMessage": reflect.ValueOf(mail.ReadMessage), - - // type definitions - "Address": reflect.ValueOf((*mail.Address)(nil)), - "AddressParser": reflect.ValueOf((*mail.AddressParser)(nil)), - "Header": reflect.ValueOf((*mail.Header)(nil)), - "Message": reflect.ValueOf((*mail.Message)(nil)), - } -} diff --git a/stdlib/go1_17_net_rpc.go b/stdlib/go1_17_net_rpc.go deleted file mode 100644 index 5a8cf5c96..000000000 --- a/stdlib/go1_17_net_rpc.go +++ /dev/null @@ -1,94 +0,0 @@ -// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "net/rpc" - "reflect" -) - -func init() { - Symbols["net/rpc/rpc"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Accept": reflect.ValueOf(rpc.Accept), - "DefaultDebugPath": reflect.ValueOf(constant.MakeFromLiteral("\"/debug/rpc\"", token.STRING, 0)), - "DefaultRPCPath": reflect.ValueOf(constant.MakeFromLiteral("\"/_goRPC_\"", token.STRING, 0)), - "DefaultServer": reflect.ValueOf(&rpc.DefaultServer).Elem(), - "Dial": reflect.ValueOf(rpc.Dial), - "DialHTTP": reflect.ValueOf(rpc.DialHTTP), - "DialHTTPPath": reflect.ValueOf(rpc.DialHTTPPath), - "ErrShutdown": reflect.ValueOf(&rpc.ErrShutdown).Elem(), - "HandleHTTP": reflect.ValueOf(rpc.HandleHTTP), - "NewClient": reflect.ValueOf(rpc.NewClient), - "NewClientWithCodec": reflect.ValueOf(rpc.NewClientWithCodec), - "NewServer": reflect.ValueOf(rpc.NewServer), - "Register": reflect.ValueOf(rpc.Register), - "RegisterName": reflect.ValueOf(rpc.RegisterName), - "ServeCodec": reflect.ValueOf(rpc.ServeCodec), - "ServeConn": reflect.ValueOf(rpc.ServeConn), - "ServeRequest": reflect.ValueOf(rpc.ServeRequest), - - // type definitions - "Call": reflect.ValueOf((*rpc.Call)(nil)), - "Client": reflect.ValueOf((*rpc.Client)(nil)), - "ClientCodec": reflect.ValueOf((*rpc.ClientCodec)(nil)), - "Request": reflect.ValueOf((*rpc.Request)(nil)), - "Response": reflect.ValueOf((*rpc.Response)(nil)), - "Server": reflect.ValueOf((*rpc.Server)(nil)), - "ServerCodec": reflect.ValueOf((*rpc.ServerCodec)(nil)), - "ServerError": reflect.ValueOf((*rpc.ServerError)(nil)), - - // interface wrapper definitions - "_ClientCodec": reflect.ValueOf((*_net_rpc_ClientCodec)(nil)), - "_ServerCodec": reflect.ValueOf((*_net_rpc_ServerCodec)(nil)), - } -} - -// _net_rpc_ClientCodec is an interface wrapper for ClientCodec type -type _net_rpc_ClientCodec struct { - IValue interface{} - WClose func() error - WReadResponseBody func(a0 interface{}) error - WReadResponseHeader func(a0 *rpc.Response) error - WWriteRequest func(a0 *rpc.Request, a1 interface{}) error -} - -func (W _net_rpc_ClientCodec) Close() error { - return W.WClose() -} -func (W _net_rpc_ClientCodec) ReadResponseBody(a0 interface{}) error { - return W.WReadResponseBody(a0) -} -func (W _net_rpc_ClientCodec) ReadResponseHeader(a0 *rpc.Response) error { - return W.WReadResponseHeader(a0) -} -func (W _net_rpc_ClientCodec) WriteRequest(a0 *rpc.Request, a1 interface{}) error { - return W.WWriteRequest(a0, a1) -} - -// _net_rpc_ServerCodec is an interface wrapper for ServerCodec type -type _net_rpc_ServerCodec struct { - IValue interface{} - WClose func() error - WReadRequestBody func(a0 interface{}) error - WReadRequestHeader func(a0 *rpc.Request) error - WWriteResponse func(a0 *rpc.Response, a1 interface{}) error -} - -func (W _net_rpc_ServerCodec) Close() error { - return W.WClose() -} -func (W _net_rpc_ServerCodec) ReadRequestBody(a0 interface{}) error { - return W.WReadRequestBody(a0) -} -func (W _net_rpc_ServerCodec) ReadRequestHeader(a0 *rpc.Request) error { - return W.WReadRequestHeader(a0) -} -func (W _net_rpc_ServerCodec) WriteResponse(a0 *rpc.Response, a1 interface{}) error { - return W.WWriteResponse(a0, a1) -} diff --git a/stdlib/go1_17_net_rpc_jsonrpc.go b/stdlib/go1_17_net_rpc_jsonrpc.go deleted file mode 100644 index 0e2d536f0..000000000 --- a/stdlib/go1_17_net_rpc_jsonrpc.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/rpc/jsonrpc" - "reflect" -) - -func init() { - Symbols["net/rpc/jsonrpc/jsonrpc"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Dial": reflect.ValueOf(jsonrpc.Dial), - "NewClient": reflect.ValueOf(jsonrpc.NewClient), - "NewClientCodec": reflect.ValueOf(jsonrpc.NewClientCodec), - "NewServerCodec": reflect.ValueOf(jsonrpc.NewServerCodec), - "ServeConn": reflect.ValueOf(jsonrpc.ServeConn), - } -} diff --git a/stdlib/go1_17_net_smtp.go b/stdlib/go1_17_net_smtp.go deleted file mode 100644 index 7a99d318b..000000000 --- a/stdlib/go1_17_net_smtp.go +++ /dev/null @@ -1,44 +0,0 @@ -// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/smtp" - "reflect" -) - -func init() { - Symbols["net/smtp/smtp"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CRAMMD5Auth": reflect.ValueOf(smtp.CRAMMD5Auth), - "Dial": reflect.ValueOf(smtp.Dial), - "NewClient": reflect.ValueOf(smtp.NewClient), - "PlainAuth": reflect.ValueOf(smtp.PlainAuth), - "SendMail": reflect.ValueOf(smtp.SendMail), - - // type definitions - "Auth": reflect.ValueOf((*smtp.Auth)(nil)), - "Client": reflect.ValueOf((*smtp.Client)(nil)), - "ServerInfo": reflect.ValueOf((*smtp.ServerInfo)(nil)), - - // interface wrapper definitions - "_Auth": reflect.ValueOf((*_net_smtp_Auth)(nil)), - } -} - -// _net_smtp_Auth is an interface wrapper for Auth type -type _net_smtp_Auth struct { - IValue interface{} - WNext func(fromServer []byte, more bool) (toServer []byte, err error) - WStart func(server *smtp.ServerInfo) (proto string, toServer []byte, err error) -} - -func (W _net_smtp_Auth) Next(fromServer []byte, more bool) (toServer []byte, err error) { - return W.WNext(fromServer, more) -} -func (W _net_smtp_Auth) Start(server *smtp.ServerInfo) (proto string, toServer []byte, err error) { - return W.WStart(server) -} diff --git a/stdlib/go1_17_net_textproto.go b/stdlib/go1_17_net_textproto.go deleted file mode 100644 index d9e175cdd..000000000 --- a/stdlib/go1_17_net_textproto.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/textproto" - "reflect" -) - -func init() { - Symbols["net/textproto/textproto"] = map[string]reflect.Value{ - // function, constant and variable definitions - "CanonicalMIMEHeaderKey": reflect.ValueOf(textproto.CanonicalMIMEHeaderKey), - "Dial": reflect.ValueOf(textproto.Dial), - "NewConn": reflect.ValueOf(textproto.NewConn), - "NewReader": reflect.ValueOf(textproto.NewReader), - "NewWriter": reflect.ValueOf(textproto.NewWriter), - "TrimBytes": reflect.ValueOf(textproto.TrimBytes), - "TrimString": reflect.ValueOf(textproto.TrimString), - - // type definitions - "Conn": reflect.ValueOf((*textproto.Conn)(nil)), - "Error": reflect.ValueOf((*textproto.Error)(nil)), - "MIMEHeader": reflect.ValueOf((*textproto.MIMEHeader)(nil)), - "Pipeline": reflect.ValueOf((*textproto.Pipeline)(nil)), - "ProtocolError": reflect.ValueOf((*textproto.ProtocolError)(nil)), - "Reader": reflect.ValueOf((*textproto.Reader)(nil)), - "Writer": reflect.ValueOf((*textproto.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_net_url.go b/stdlib/go1_17_net_url.go deleted file mode 100644 index d102b2b61..000000000 --- a/stdlib/go1_17_net_url.go +++ /dev/null @@ -1,34 +0,0 @@ -// Code generated by 'yaegi extract net/url'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "net/url" - "reflect" -) - -func init() { - Symbols["net/url/url"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Parse": reflect.ValueOf(url.Parse), - "ParseQuery": reflect.ValueOf(url.ParseQuery), - "ParseRequestURI": reflect.ValueOf(url.ParseRequestURI), - "PathEscape": reflect.ValueOf(url.PathEscape), - "PathUnescape": reflect.ValueOf(url.PathUnescape), - "QueryEscape": reflect.ValueOf(url.QueryEscape), - "QueryUnescape": reflect.ValueOf(url.QueryUnescape), - "User": reflect.ValueOf(url.User), - "UserPassword": reflect.ValueOf(url.UserPassword), - - // type definitions - "Error": reflect.ValueOf((*url.Error)(nil)), - "EscapeError": reflect.ValueOf((*url.EscapeError)(nil)), - "InvalidHostError": reflect.ValueOf((*url.InvalidHostError)(nil)), - "URL": reflect.ValueOf((*url.URL)(nil)), - "Userinfo": reflect.ValueOf((*url.Userinfo)(nil)), - "Values": reflect.ValueOf((*url.Values)(nil)), - } -} diff --git a/stdlib/go1_17_os.go b/stdlib/go1_17_os.go deleted file mode 100644 index ae2cb1dd1..000000000 --- a/stdlib/go1_17_os.go +++ /dev/null @@ -1,211 +0,0 @@ -// Code generated by 'yaegi extract os'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "io/fs" - "os" - "reflect" - "time" -) - -func init() { - Symbols["os/os"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Args": reflect.ValueOf(&os.Args).Elem(), - "Chdir": reflect.ValueOf(os.Chdir), - "Chmod": reflect.ValueOf(os.Chmod), - "Chown": reflect.ValueOf(os.Chown), - "Chtimes": reflect.ValueOf(os.Chtimes), - "Clearenv": reflect.ValueOf(os.Clearenv), - "Create": reflect.ValueOf(os.Create), - "CreateTemp": reflect.ValueOf(os.CreateTemp), - "DevNull": reflect.ValueOf(constant.MakeFromLiteral("\"/dev/null\"", token.STRING, 0)), - "DirFS": reflect.ValueOf(os.DirFS), - "Environ": reflect.ValueOf(os.Environ), - "ErrClosed": reflect.ValueOf(&os.ErrClosed).Elem(), - "ErrDeadlineExceeded": reflect.ValueOf(&os.ErrDeadlineExceeded).Elem(), - "ErrExist": reflect.ValueOf(&os.ErrExist).Elem(), - "ErrInvalid": reflect.ValueOf(&os.ErrInvalid).Elem(), - "ErrNoDeadline": reflect.ValueOf(&os.ErrNoDeadline).Elem(), - "ErrNotExist": reflect.ValueOf(&os.ErrNotExist).Elem(), - "ErrPermission": reflect.ValueOf(&os.ErrPermission).Elem(), - "ErrProcessDone": reflect.ValueOf(&os.ErrProcessDone).Elem(), - "Executable": reflect.ValueOf(os.Executable), - "Exit": reflect.ValueOf(osExit), - "Expand": reflect.ValueOf(os.Expand), - "ExpandEnv": reflect.ValueOf(os.ExpandEnv), - "FindProcess": reflect.ValueOf(osFindProcess), - "Getegid": reflect.ValueOf(os.Getegid), - "Getenv": reflect.ValueOf(os.Getenv), - "Geteuid": reflect.ValueOf(os.Geteuid), - "Getgid": reflect.ValueOf(os.Getgid), - "Getgroups": reflect.ValueOf(os.Getgroups), - "Getpagesize": reflect.ValueOf(os.Getpagesize), - "Getpid": reflect.ValueOf(os.Getpid), - "Getppid": reflect.ValueOf(os.Getppid), - "Getuid": reflect.ValueOf(os.Getuid), - "Getwd": reflect.ValueOf(os.Getwd), - "Hostname": reflect.ValueOf(os.Hostname), - "Interrupt": reflect.ValueOf(&os.Interrupt).Elem(), - "IsExist": reflect.ValueOf(os.IsExist), - "IsNotExist": reflect.ValueOf(os.IsNotExist), - "IsPathSeparator": reflect.ValueOf(os.IsPathSeparator), - "IsPermission": reflect.ValueOf(os.IsPermission), - "IsTimeout": reflect.ValueOf(os.IsTimeout), - "Kill": reflect.ValueOf(&os.Kill).Elem(), - "Lchown": reflect.ValueOf(os.Lchown), - "Link": reflect.ValueOf(os.Link), - "LookupEnv": reflect.ValueOf(os.LookupEnv), - "Lstat": reflect.ValueOf(os.Lstat), - "Mkdir": reflect.ValueOf(os.Mkdir), - "MkdirAll": reflect.ValueOf(os.MkdirAll), - "MkdirTemp": reflect.ValueOf(os.MkdirTemp), - "ModeAppend": reflect.ValueOf(os.ModeAppend), - "ModeCharDevice": reflect.ValueOf(os.ModeCharDevice), - "ModeDevice": reflect.ValueOf(os.ModeDevice), - "ModeDir": reflect.ValueOf(os.ModeDir), - "ModeExclusive": reflect.ValueOf(os.ModeExclusive), - "ModeIrregular": reflect.ValueOf(os.ModeIrregular), - "ModeNamedPipe": reflect.ValueOf(os.ModeNamedPipe), - "ModePerm": reflect.ValueOf(os.ModePerm), - "ModeSetgid": reflect.ValueOf(os.ModeSetgid), - "ModeSetuid": reflect.ValueOf(os.ModeSetuid), - "ModeSocket": reflect.ValueOf(os.ModeSocket), - "ModeSticky": reflect.ValueOf(os.ModeSticky), - "ModeSymlink": reflect.ValueOf(os.ModeSymlink), - "ModeTemporary": reflect.ValueOf(os.ModeTemporary), - "ModeType": reflect.ValueOf(os.ModeType), - "NewFile": reflect.ValueOf(os.NewFile), - "NewSyscallError": reflect.ValueOf(os.NewSyscallError), - "O_APPEND": reflect.ValueOf(os.O_APPEND), - "O_CREATE": reflect.ValueOf(os.O_CREATE), - "O_EXCL": reflect.ValueOf(os.O_EXCL), - "O_RDONLY": reflect.ValueOf(os.O_RDONLY), - "O_RDWR": reflect.ValueOf(os.O_RDWR), - "O_SYNC": reflect.ValueOf(os.O_SYNC), - "O_TRUNC": reflect.ValueOf(os.O_TRUNC), - "O_WRONLY": reflect.ValueOf(os.O_WRONLY), - "Open": reflect.ValueOf(os.Open), - "OpenFile": reflect.ValueOf(os.OpenFile), - "PathListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "PathSeparator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "Pipe": reflect.ValueOf(os.Pipe), - "ReadDir": reflect.ValueOf(os.ReadDir), - "ReadFile": reflect.ValueOf(os.ReadFile), - "Readlink": reflect.ValueOf(os.Readlink), - "Remove": reflect.ValueOf(os.Remove), - "RemoveAll": reflect.ValueOf(os.RemoveAll), - "Rename": reflect.ValueOf(os.Rename), - "SEEK_CUR": reflect.ValueOf(os.SEEK_CUR), - "SEEK_END": reflect.ValueOf(os.SEEK_END), - "SEEK_SET": reflect.ValueOf(os.SEEK_SET), - "SameFile": reflect.ValueOf(os.SameFile), - "Setenv": reflect.ValueOf(os.Setenv), - "StartProcess": reflect.ValueOf(os.StartProcess), - "Stat": reflect.ValueOf(os.Stat), - "Stderr": reflect.ValueOf(&os.Stderr).Elem(), - "Stdin": reflect.ValueOf(&os.Stdin).Elem(), - "Stdout": reflect.ValueOf(&os.Stdout).Elem(), - "Symlink": reflect.ValueOf(os.Symlink), - "TempDir": reflect.ValueOf(os.TempDir), - "Truncate": reflect.ValueOf(os.Truncate), - "Unsetenv": reflect.ValueOf(os.Unsetenv), - "UserCacheDir": reflect.ValueOf(os.UserCacheDir), - "UserConfigDir": reflect.ValueOf(os.UserConfigDir), - "UserHomeDir": reflect.ValueOf(os.UserHomeDir), - "WriteFile": reflect.ValueOf(os.WriteFile), - - // type definitions - "DirEntry": reflect.ValueOf((*os.DirEntry)(nil)), - "File": reflect.ValueOf((*os.File)(nil)), - "FileInfo": reflect.ValueOf((*os.FileInfo)(nil)), - "FileMode": reflect.ValueOf((*os.FileMode)(nil)), - "LinkError": reflect.ValueOf((*os.LinkError)(nil)), - "PathError": reflect.ValueOf((*os.PathError)(nil)), - "ProcAttr": reflect.ValueOf((*os.ProcAttr)(nil)), - "Process": reflect.ValueOf((*os.Process)(nil)), - "ProcessState": reflect.ValueOf((*os.ProcessState)(nil)), - "Signal": reflect.ValueOf((*os.Signal)(nil)), - "SyscallError": reflect.ValueOf((*os.SyscallError)(nil)), - - // interface wrapper definitions - "_DirEntry": reflect.ValueOf((*_os_DirEntry)(nil)), - "_FileInfo": reflect.ValueOf((*_os_FileInfo)(nil)), - "_Signal": reflect.ValueOf((*_os_Signal)(nil)), - } -} - -// _os_DirEntry is an interface wrapper for DirEntry type -type _os_DirEntry struct { - IValue interface{} - WInfo func() (fs.FileInfo, error) - WIsDir func() bool - WName func() string - WType func() fs.FileMode -} - -func (W _os_DirEntry) Info() (fs.FileInfo, error) { - return W.WInfo() -} -func (W _os_DirEntry) IsDir() bool { - return W.WIsDir() -} -func (W _os_DirEntry) Name() string { - return W.WName() -} -func (W _os_DirEntry) Type() fs.FileMode { - return W.WType() -} - -// _os_FileInfo is an interface wrapper for FileInfo type -type _os_FileInfo struct { - IValue interface{} - WIsDir func() bool - WModTime func() time.Time - WMode func() fs.FileMode - WName func() string - WSize func() int64 - WSys func() interface{} -} - -func (W _os_FileInfo) IsDir() bool { - return W.WIsDir() -} -func (W _os_FileInfo) ModTime() time.Time { - return W.WModTime() -} -func (W _os_FileInfo) Mode() fs.FileMode { - return W.WMode() -} -func (W _os_FileInfo) Name() string { - return W.WName() -} -func (W _os_FileInfo) Size() int64 { - return W.WSize() -} -func (W _os_FileInfo) Sys() interface{} { - return W.WSys() -} - -// _os_Signal is an interface wrapper for Signal type -type _os_Signal struct { - IValue interface{} - WSignal func() - WString func() string -} - -func (W _os_Signal) Signal() { - W.WSignal() -} -func (W _os_Signal) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_os_signal.go b/stdlib/go1_17_os_signal.go deleted file mode 100644 index 06e2c9157..000000000 --- a/stdlib/go1_17_os_signal.go +++ /dev/null @@ -1,23 +0,0 @@ -// Code generated by 'yaegi extract os/signal'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "os/signal" - "reflect" -) - -func init() { - Symbols["os/signal/signal"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Ignore": reflect.ValueOf(signal.Ignore), - "Ignored": reflect.ValueOf(signal.Ignored), - "Notify": reflect.ValueOf(signal.Notify), - "NotifyContext": reflect.ValueOf(signal.NotifyContext), - "Reset": reflect.ValueOf(signal.Reset), - "Stop": reflect.ValueOf(signal.Stop), - } -} diff --git a/stdlib/go1_17_os_user.go b/stdlib/go1_17_os_user.go deleted file mode 100644 index 523143199..000000000 --- a/stdlib/go1_17_os_user.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract os/user'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "os/user" - "reflect" -) - -func init() { - Symbols["os/user/user"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Current": reflect.ValueOf(user.Current), - "Lookup": reflect.ValueOf(user.Lookup), - "LookupGroup": reflect.ValueOf(user.LookupGroup), - "LookupGroupId": reflect.ValueOf(user.LookupGroupId), - "LookupId": reflect.ValueOf(user.LookupId), - - // type definitions - "Group": reflect.ValueOf((*user.Group)(nil)), - "UnknownGroupError": reflect.ValueOf((*user.UnknownGroupError)(nil)), - "UnknownGroupIdError": reflect.ValueOf((*user.UnknownGroupIdError)(nil)), - "UnknownUserError": reflect.ValueOf((*user.UnknownUserError)(nil)), - "UnknownUserIdError": reflect.ValueOf((*user.UnknownUserIdError)(nil)), - "User": reflect.ValueOf((*user.User)(nil)), - } -} diff --git a/stdlib/go1_17_path.go b/stdlib/go1_17_path.go deleted file mode 100644 index 84112a87c..000000000 --- a/stdlib/go1_17_path.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract path'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "path" - "reflect" -) - -func init() { - Symbols["path/path"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Base": reflect.ValueOf(path.Base), - "Clean": reflect.ValueOf(path.Clean), - "Dir": reflect.ValueOf(path.Dir), - "ErrBadPattern": reflect.ValueOf(&path.ErrBadPattern).Elem(), - "Ext": reflect.ValueOf(path.Ext), - "IsAbs": reflect.ValueOf(path.IsAbs), - "Join": reflect.ValueOf(path.Join), - "Match": reflect.ValueOf(path.Match), - "Split": reflect.ValueOf(path.Split), - } -} diff --git a/stdlib/go1_17_path_filepath.go b/stdlib/go1_17_path_filepath.go deleted file mode 100644 index 5d371a970..000000000 --- a/stdlib/go1_17_path_filepath.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "path/filepath" - "reflect" -) - -func init() { - Symbols["path/filepath/filepath"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Abs": reflect.ValueOf(filepath.Abs), - "Base": reflect.ValueOf(filepath.Base), - "Clean": reflect.ValueOf(filepath.Clean), - "Dir": reflect.ValueOf(filepath.Dir), - "ErrBadPattern": reflect.ValueOf(&filepath.ErrBadPattern).Elem(), - "EvalSymlinks": reflect.ValueOf(filepath.EvalSymlinks), - "Ext": reflect.ValueOf(filepath.Ext), - "FromSlash": reflect.ValueOf(filepath.FromSlash), - "Glob": reflect.ValueOf(filepath.Glob), - "HasPrefix": reflect.ValueOf(filepath.HasPrefix), - "IsAbs": reflect.ValueOf(filepath.IsAbs), - "Join": reflect.ValueOf(filepath.Join), - "ListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "Match": reflect.ValueOf(filepath.Match), - "Rel": reflect.ValueOf(filepath.Rel), - "Separator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SkipDir": reflect.ValueOf(&filepath.SkipDir).Elem(), - "Split": reflect.ValueOf(filepath.Split), - "SplitList": reflect.ValueOf(filepath.SplitList), - "ToSlash": reflect.ValueOf(filepath.ToSlash), - "VolumeName": reflect.ValueOf(filepath.VolumeName), - "Walk": reflect.ValueOf(filepath.Walk), - "WalkDir": reflect.ValueOf(filepath.WalkDir), - - // type definitions - "WalkFunc": reflect.ValueOf((*filepath.WalkFunc)(nil)), - } -} diff --git a/stdlib/go1_17_reflect.go b/stdlib/go1_17_reflect.go deleted file mode 100644 index 40c0748e6..000000000 --- a/stdlib/go1_17_reflect.go +++ /dev/null @@ -1,217 +0,0 @@ -// Code generated by 'yaegi extract reflect'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" -) - -func init() { - Symbols["reflect/reflect"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Append": reflect.ValueOf(reflect.Append), - "AppendSlice": reflect.ValueOf(reflect.AppendSlice), - "Array": reflect.ValueOf(reflect.Array), - "ArrayOf": reflect.ValueOf(reflect.ArrayOf), - "Bool": reflect.ValueOf(reflect.Bool), - "BothDir": reflect.ValueOf(reflect.BothDir), - "Chan": reflect.ValueOf(reflect.Chan), - "ChanOf": reflect.ValueOf(reflect.ChanOf), - "Complex128": reflect.ValueOf(reflect.Complex128), - "Complex64": reflect.ValueOf(reflect.Complex64), - "Copy": reflect.ValueOf(reflect.Copy), - "DeepEqual": reflect.ValueOf(reflect.DeepEqual), - "Float32": reflect.ValueOf(reflect.Float32), - "Float64": reflect.ValueOf(reflect.Float64), - "Func": reflect.ValueOf(reflect.Func), - "FuncOf": reflect.ValueOf(reflect.FuncOf), - "Indirect": reflect.ValueOf(reflect.Indirect), - "Int": reflect.ValueOf(reflect.Int), - "Int16": reflect.ValueOf(reflect.Int16), - "Int32": reflect.ValueOf(reflect.Int32), - "Int64": reflect.ValueOf(reflect.Int64), - "Int8": reflect.ValueOf(reflect.Int8), - "Interface": reflect.ValueOf(reflect.Interface), - "Invalid": reflect.ValueOf(reflect.Invalid), - "MakeChan": reflect.ValueOf(reflect.MakeChan), - "MakeFunc": reflect.ValueOf(reflect.MakeFunc), - "MakeMap": reflect.ValueOf(reflect.MakeMap), - "MakeMapWithSize": reflect.ValueOf(reflect.MakeMapWithSize), - "MakeSlice": reflect.ValueOf(reflect.MakeSlice), - "Map": reflect.ValueOf(reflect.Map), - "MapOf": reflect.ValueOf(reflect.MapOf), - "New": reflect.ValueOf(reflect.New), - "NewAt": reflect.ValueOf(reflect.NewAt), - "Ptr": reflect.ValueOf(reflect.Ptr), - "PtrTo": reflect.ValueOf(reflect.PtrTo), - "RecvDir": reflect.ValueOf(reflect.RecvDir), - "Select": reflect.ValueOf(reflect.Select), - "SelectDefault": reflect.ValueOf(reflect.SelectDefault), - "SelectRecv": reflect.ValueOf(reflect.SelectRecv), - "SelectSend": reflect.ValueOf(reflect.SelectSend), - "SendDir": reflect.ValueOf(reflect.SendDir), - "Slice": reflect.ValueOf(reflect.Slice), - "SliceOf": reflect.ValueOf(reflect.SliceOf), - "String": reflect.ValueOf(reflect.String), - "Struct": reflect.ValueOf(reflect.Struct), - "StructOf": reflect.ValueOf(reflect.StructOf), - "Swapper": reflect.ValueOf(reflect.Swapper), - "TypeOf": reflect.ValueOf(reflect.TypeOf), - "Uint": reflect.ValueOf(reflect.Uint), - "Uint16": reflect.ValueOf(reflect.Uint16), - "Uint32": reflect.ValueOf(reflect.Uint32), - "Uint64": reflect.ValueOf(reflect.Uint64), - "Uint8": reflect.ValueOf(reflect.Uint8), - "Uintptr": reflect.ValueOf(reflect.Uintptr), - "UnsafePointer": reflect.ValueOf(reflect.UnsafePointer), - "ValueOf": reflect.ValueOf(reflect.ValueOf), - "VisibleFields": reflect.ValueOf(reflect.VisibleFields), - "Zero": reflect.ValueOf(reflect.Zero), - - // type definitions - "ChanDir": reflect.ValueOf((*reflect.ChanDir)(nil)), - "Kind": reflect.ValueOf((*reflect.Kind)(nil)), - "MapIter": reflect.ValueOf((*reflect.MapIter)(nil)), - "Method": reflect.ValueOf((*reflect.Method)(nil)), - "SelectCase": reflect.ValueOf((*reflect.SelectCase)(nil)), - "SelectDir": reflect.ValueOf((*reflect.SelectDir)(nil)), - "SliceHeader": reflect.ValueOf((*reflect.SliceHeader)(nil)), - "StringHeader": reflect.ValueOf((*reflect.StringHeader)(nil)), - "StructField": reflect.ValueOf((*reflect.StructField)(nil)), - "StructTag": reflect.ValueOf((*reflect.StructTag)(nil)), - "Type": reflect.ValueOf((*reflect.Type)(nil)), - "Value": reflect.ValueOf((*reflect.Value)(nil)), - "ValueError": reflect.ValueOf((*reflect.ValueError)(nil)), - - // interface wrapper definitions - "_Type": reflect.ValueOf((*_reflect_Type)(nil)), - } -} - -// _reflect_Type is an interface wrapper for Type type -type _reflect_Type struct { - IValue interface{} - WAlign func() int - WAssignableTo func(u reflect.Type) bool - WBits func() int - WChanDir func() reflect.ChanDir - WComparable func() bool - WConvertibleTo func(u reflect.Type) bool - WElem func() reflect.Type - WField func(i int) reflect.StructField - WFieldAlign func() int - WFieldByIndex func(index []int) reflect.StructField - WFieldByName func(name string) (reflect.StructField, bool) - WFieldByNameFunc func(match func(string) bool) (reflect.StructField, bool) - WImplements func(u reflect.Type) bool - WIn func(i int) reflect.Type - WIsVariadic func() bool - WKey func() reflect.Type - WKind func() reflect.Kind - WLen func() int - WMethod func(a0 int) reflect.Method - WMethodByName func(a0 string) (reflect.Method, bool) - WName func() string - WNumField func() int - WNumIn func() int - WNumMethod func() int - WNumOut func() int - WOut func(i int) reflect.Type - WPkgPath func() string - WSize func() uintptr - WString func() string -} - -func (W _reflect_Type) Align() int { - return W.WAlign() -} -func (W _reflect_Type) AssignableTo(u reflect.Type) bool { - return W.WAssignableTo(u) -} -func (W _reflect_Type) Bits() int { - return W.WBits() -} -func (W _reflect_Type) ChanDir() reflect.ChanDir { - return W.WChanDir() -} -func (W _reflect_Type) Comparable() bool { - return W.WComparable() -} -func (W _reflect_Type) ConvertibleTo(u reflect.Type) bool { - return W.WConvertibleTo(u) -} -func (W _reflect_Type) Elem() reflect.Type { - return W.WElem() -} -func (W _reflect_Type) Field(i int) reflect.StructField { - return W.WField(i) -} -func (W _reflect_Type) FieldAlign() int { - return W.WFieldAlign() -} -func (W _reflect_Type) FieldByIndex(index []int) reflect.StructField { - return W.WFieldByIndex(index) -} -func (W _reflect_Type) FieldByName(name string) (reflect.StructField, bool) { - return W.WFieldByName(name) -} -func (W _reflect_Type) FieldByNameFunc(match func(string) bool) (reflect.StructField, bool) { - return W.WFieldByNameFunc(match) -} -func (W _reflect_Type) Implements(u reflect.Type) bool { - return W.WImplements(u) -} -func (W _reflect_Type) In(i int) reflect.Type { - return W.WIn(i) -} -func (W _reflect_Type) IsVariadic() bool { - return W.WIsVariadic() -} -func (W _reflect_Type) Key() reflect.Type { - return W.WKey() -} -func (W _reflect_Type) Kind() reflect.Kind { - return W.WKind() -} -func (W _reflect_Type) Len() int { - return W.WLen() -} -func (W _reflect_Type) Method(a0 int) reflect.Method { - return W.WMethod(a0) -} -func (W _reflect_Type) MethodByName(a0 string) (reflect.Method, bool) { - return W.WMethodByName(a0) -} -func (W _reflect_Type) Name() string { - return W.WName() -} -func (W _reflect_Type) NumField() int { - return W.WNumField() -} -func (W _reflect_Type) NumIn() int { - return W.WNumIn() -} -func (W _reflect_Type) NumMethod() int { - return W.WNumMethod() -} -func (W _reflect_Type) NumOut() int { - return W.WNumOut() -} -func (W _reflect_Type) Out(i int) reflect.Type { - return W.WOut(i) -} -func (W _reflect_Type) PkgPath() string { - return W.WPkgPath() -} -func (W _reflect_Type) Size() uintptr { - return W.WSize() -} -func (W _reflect_Type) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} diff --git a/stdlib/go1_17_regexp.go b/stdlib/go1_17_regexp.go deleted file mode 100644 index 7db029aa3..000000000 --- a/stdlib/go1_17_regexp.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract regexp'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "regexp" -) - -func init() { - Symbols["regexp/regexp"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compile": reflect.ValueOf(regexp.Compile), - "CompilePOSIX": reflect.ValueOf(regexp.CompilePOSIX), - "Match": reflect.ValueOf(regexp.Match), - "MatchReader": reflect.ValueOf(regexp.MatchReader), - "MatchString": reflect.ValueOf(regexp.MatchString), - "MustCompile": reflect.ValueOf(regexp.MustCompile), - "MustCompilePOSIX": reflect.ValueOf(regexp.MustCompilePOSIX), - "QuoteMeta": reflect.ValueOf(regexp.QuoteMeta), - - // type definitions - "Regexp": reflect.ValueOf((*regexp.Regexp)(nil)), - } -} diff --git a/stdlib/go1_17_regexp_syntax.go b/stdlib/go1_17_regexp_syntax.go deleted file mode 100644 index b46cac2f2..000000000 --- a/stdlib/go1_17_regexp_syntax.go +++ /dev/null @@ -1,95 +0,0 @@ -// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "regexp/syntax" -) - -func init() { - Symbols["regexp/syntax/syntax"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ClassNL": reflect.ValueOf(syntax.ClassNL), - "Compile": reflect.ValueOf(syntax.Compile), - "DotNL": reflect.ValueOf(syntax.DotNL), - "EmptyBeginLine": reflect.ValueOf(syntax.EmptyBeginLine), - "EmptyBeginText": reflect.ValueOf(syntax.EmptyBeginText), - "EmptyEndLine": reflect.ValueOf(syntax.EmptyEndLine), - "EmptyEndText": reflect.ValueOf(syntax.EmptyEndText), - "EmptyNoWordBoundary": reflect.ValueOf(syntax.EmptyNoWordBoundary), - "EmptyOpContext": reflect.ValueOf(syntax.EmptyOpContext), - "EmptyWordBoundary": reflect.ValueOf(syntax.EmptyWordBoundary), - "ErrInternalError": reflect.ValueOf(syntax.ErrInternalError), - "ErrInvalidCharClass": reflect.ValueOf(syntax.ErrInvalidCharClass), - "ErrInvalidCharRange": reflect.ValueOf(syntax.ErrInvalidCharRange), - "ErrInvalidEscape": reflect.ValueOf(syntax.ErrInvalidEscape), - "ErrInvalidNamedCapture": reflect.ValueOf(syntax.ErrInvalidNamedCapture), - "ErrInvalidPerlOp": reflect.ValueOf(syntax.ErrInvalidPerlOp), - "ErrInvalidRepeatOp": reflect.ValueOf(syntax.ErrInvalidRepeatOp), - "ErrInvalidRepeatSize": reflect.ValueOf(syntax.ErrInvalidRepeatSize), - "ErrInvalidUTF8": reflect.ValueOf(syntax.ErrInvalidUTF8), - "ErrMissingBracket": reflect.ValueOf(syntax.ErrMissingBracket), - "ErrMissingParen": reflect.ValueOf(syntax.ErrMissingParen), - "ErrMissingRepeatArgument": reflect.ValueOf(syntax.ErrMissingRepeatArgument), - "ErrTrailingBackslash": reflect.ValueOf(syntax.ErrTrailingBackslash), - "ErrUnexpectedParen": reflect.ValueOf(syntax.ErrUnexpectedParen), - "FoldCase": reflect.ValueOf(syntax.FoldCase), - "InstAlt": reflect.ValueOf(syntax.InstAlt), - "InstAltMatch": reflect.ValueOf(syntax.InstAltMatch), - "InstCapture": reflect.ValueOf(syntax.InstCapture), - "InstEmptyWidth": reflect.ValueOf(syntax.InstEmptyWidth), - "InstFail": reflect.ValueOf(syntax.InstFail), - "InstMatch": reflect.ValueOf(syntax.InstMatch), - "InstNop": reflect.ValueOf(syntax.InstNop), - "InstRune": reflect.ValueOf(syntax.InstRune), - "InstRune1": reflect.ValueOf(syntax.InstRune1), - "InstRuneAny": reflect.ValueOf(syntax.InstRuneAny), - "InstRuneAnyNotNL": reflect.ValueOf(syntax.InstRuneAnyNotNL), - "IsWordChar": reflect.ValueOf(syntax.IsWordChar), - "Literal": reflect.ValueOf(syntax.Literal), - "MatchNL": reflect.ValueOf(syntax.MatchNL), - "NonGreedy": reflect.ValueOf(syntax.NonGreedy), - "OneLine": reflect.ValueOf(syntax.OneLine), - "OpAlternate": reflect.ValueOf(syntax.OpAlternate), - "OpAnyChar": reflect.ValueOf(syntax.OpAnyChar), - "OpAnyCharNotNL": reflect.ValueOf(syntax.OpAnyCharNotNL), - "OpBeginLine": reflect.ValueOf(syntax.OpBeginLine), - "OpBeginText": reflect.ValueOf(syntax.OpBeginText), - "OpCapture": reflect.ValueOf(syntax.OpCapture), - "OpCharClass": reflect.ValueOf(syntax.OpCharClass), - "OpConcat": reflect.ValueOf(syntax.OpConcat), - "OpEmptyMatch": reflect.ValueOf(syntax.OpEmptyMatch), - "OpEndLine": reflect.ValueOf(syntax.OpEndLine), - "OpEndText": reflect.ValueOf(syntax.OpEndText), - "OpLiteral": reflect.ValueOf(syntax.OpLiteral), - "OpNoMatch": reflect.ValueOf(syntax.OpNoMatch), - "OpNoWordBoundary": reflect.ValueOf(syntax.OpNoWordBoundary), - "OpPlus": reflect.ValueOf(syntax.OpPlus), - "OpQuest": reflect.ValueOf(syntax.OpQuest), - "OpRepeat": reflect.ValueOf(syntax.OpRepeat), - "OpStar": reflect.ValueOf(syntax.OpStar), - "OpWordBoundary": reflect.ValueOf(syntax.OpWordBoundary), - "POSIX": reflect.ValueOf(syntax.POSIX), - "Parse": reflect.ValueOf(syntax.Parse), - "Perl": reflect.ValueOf(syntax.Perl), - "PerlX": reflect.ValueOf(syntax.PerlX), - "Simple": reflect.ValueOf(syntax.Simple), - "UnicodeGroups": reflect.ValueOf(syntax.UnicodeGroups), - "WasDollar": reflect.ValueOf(syntax.WasDollar), - - // type definitions - "EmptyOp": reflect.ValueOf((*syntax.EmptyOp)(nil)), - "Error": reflect.ValueOf((*syntax.Error)(nil)), - "ErrorCode": reflect.ValueOf((*syntax.ErrorCode)(nil)), - "Flags": reflect.ValueOf((*syntax.Flags)(nil)), - "Inst": reflect.ValueOf((*syntax.Inst)(nil)), - "InstOp": reflect.ValueOf((*syntax.InstOp)(nil)), - "Op": reflect.ValueOf((*syntax.Op)(nil)), - "Prog": reflect.ValueOf((*syntax.Prog)(nil)), - "Regexp": reflect.ValueOf((*syntax.Regexp)(nil)), - } -} diff --git a/stdlib/go1_17_runtime.go b/stdlib/go1_17_runtime.go deleted file mode 100644 index 4f2ced5f2..000000000 --- a/stdlib/go1_17_runtime.go +++ /dev/null @@ -1,84 +0,0 @@ -// Code generated by 'yaegi extract runtime'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "runtime" -) - -func init() { - Symbols["runtime/runtime"] = map[string]reflect.Value{ - // function, constant and variable definitions - "BlockProfile": reflect.ValueOf(runtime.BlockProfile), - "Breakpoint": reflect.ValueOf(runtime.Breakpoint), - "CPUProfile": reflect.ValueOf(runtime.CPUProfile), - "Caller": reflect.ValueOf(runtime.Caller), - "Callers": reflect.ValueOf(runtime.Callers), - "CallersFrames": reflect.ValueOf(runtime.CallersFrames), - "Compiler": reflect.ValueOf(constant.MakeFromLiteral("\"gc\"", token.STRING, 0)), - "FuncForPC": reflect.ValueOf(runtime.FuncForPC), - "GC": reflect.ValueOf(runtime.GC), - "GOARCH": reflect.ValueOf(runtime.GOARCH), - "GOMAXPROCS": reflect.ValueOf(runtime.GOMAXPROCS), - "GOOS": reflect.ValueOf(runtime.GOOS), - "GOROOT": reflect.ValueOf(runtime.GOROOT), - "Goexit": reflect.ValueOf(runtime.Goexit), - "GoroutineProfile": reflect.ValueOf(runtime.GoroutineProfile), - "Gosched": reflect.ValueOf(runtime.Gosched), - "KeepAlive": reflect.ValueOf(runtime.KeepAlive), - "LockOSThread": reflect.ValueOf(runtime.LockOSThread), - "MemProfile": reflect.ValueOf(runtime.MemProfile), - "MemProfileRate": reflect.ValueOf(&runtime.MemProfileRate).Elem(), - "MutexProfile": reflect.ValueOf(runtime.MutexProfile), - "NumCPU": reflect.ValueOf(runtime.NumCPU), - "NumCgoCall": reflect.ValueOf(runtime.NumCgoCall), - "NumGoroutine": reflect.ValueOf(runtime.NumGoroutine), - "ReadMemStats": reflect.ValueOf(runtime.ReadMemStats), - "ReadTrace": reflect.ValueOf(runtime.ReadTrace), - "SetBlockProfileRate": reflect.ValueOf(runtime.SetBlockProfileRate), - "SetCPUProfileRate": reflect.ValueOf(runtime.SetCPUProfileRate), - "SetCgoTraceback": reflect.ValueOf(runtime.SetCgoTraceback), - "SetFinalizer": reflect.ValueOf(runtime.SetFinalizer), - "SetMutexProfileFraction": reflect.ValueOf(runtime.SetMutexProfileFraction), - "Stack": reflect.ValueOf(runtime.Stack), - "StartTrace": reflect.ValueOf(runtime.StartTrace), - "StopTrace": reflect.ValueOf(runtime.StopTrace), - "ThreadCreateProfile": reflect.ValueOf(runtime.ThreadCreateProfile), - "UnlockOSThread": reflect.ValueOf(runtime.UnlockOSThread), - "Version": reflect.ValueOf(runtime.Version), - - // type definitions - "BlockProfileRecord": reflect.ValueOf((*runtime.BlockProfileRecord)(nil)), - "Error": reflect.ValueOf((*runtime.Error)(nil)), - "Frame": reflect.ValueOf((*runtime.Frame)(nil)), - "Frames": reflect.ValueOf((*runtime.Frames)(nil)), - "Func": reflect.ValueOf((*runtime.Func)(nil)), - "MemProfileRecord": reflect.ValueOf((*runtime.MemProfileRecord)(nil)), - "MemStats": reflect.ValueOf((*runtime.MemStats)(nil)), - "StackRecord": reflect.ValueOf((*runtime.StackRecord)(nil)), - "TypeAssertionError": reflect.ValueOf((*runtime.TypeAssertionError)(nil)), - - // interface wrapper definitions - "_Error": reflect.ValueOf((*_runtime_Error)(nil)), - } -} - -// _runtime_Error is an interface wrapper for Error type -type _runtime_Error struct { - IValue interface{} - WError func() string - WRuntimeError func() -} - -func (W _runtime_Error) Error() string { - return W.WError() -} -func (W _runtime_Error) RuntimeError() { - W.WRuntimeError() -} diff --git a/stdlib/go1_17_runtime_debug.go b/stdlib/go1_17_runtime_debug.go deleted file mode 100644 index f009ed4bd..000000000 --- a/stdlib/go1_17_runtime_debug.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "runtime/debug" -) - -func init() { - Symbols["runtime/debug/debug"] = map[string]reflect.Value{ - // function, constant and variable definitions - "FreeOSMemory": reflect.ValueOf(debug.FreeOSMemory), - "PrintStack": reflect.ValueOf(debug.PrintStack), - "ReadBuildInfo": reflect.ValueOf(debug.ReadBuildInfo), - "ReadGCStats": reflect.ValueOf(debug.ReadGCStats), - "SetGCPercent": reflect.ValueOf(debug.SetGCPercent), - "SetMaxStack": reflect.ValueOf(debug.SetMaxStack), - "SetMaxThreads": reflect.ValueOf(debug.SetMaxThreads), - "SetPanicOnFault": reflect.ValueOf(debug.SetPanicOnFault), - "SetTraceback": reflect.ValueOf(debug.SetTraceback), - "Stack": reflect.ValueOf(debug.Stack), - "WriteHeapDump": reflect.ValueOf(debug.WriteHeapDump), - - // type definitions - "BuildInfo": reflect.ValueOf((*debug.BuildInfo)(nil)), - "GCStats": reflect.ValueOf((*debug.GCStats)(nil)), - "Module": reflect.ValueOf((*debug.Module)(nil)), - } -} diff --git a/stdlib/go1_17_runtime_metrics.go b/stdlib/go1_17_runtime_metrics.go deleted file mode 100644 index 6d013f3f1..000000000 --- a/stdlib/go1_17_runtime_metrics.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "runtime/metrics" -) - -func init() { - Symbols["runtime/metrics/metrics"] = map[string]reflect.Value{ - // function, constant and variable definitions - "All": reflect.ValueOf(metrics.All), - "KindBad": reflect.ValueOf(metrics.KindBad), - "KindFloat64": reflect.ValueOf(metrics.KindFloat64), - "KindFloat64Histogram": reflect.ValueOf(metrics.KindFloat64Histogram), - "KindUint64": reflect.ValueOf(metrics.KindUint64), - "Read": reflect.ValueOf(metrics.Read), - - // type definitions - "Description": reflect.ValueOf((*metrics.Description)(nil)), - "Float64Histogram": reflect.ValueOf((*metrics.Float64Histogram)(nil)), - "Sample": reflect.ValueOf((*metrics.Sample)(nil)), - "Value": reflect.ValueOf((*metrics.Value)(nil)), - "ValueKind": reflect.ValueOf((*metrics.ValueKind)(nil)), - } -} diff --git a/stdlib/go1_17_runtime_pprof.go b/stdlib/go1_17_runtime_pprof.go deleted file mode 100644 index 92c640c58..000000000 --- a/stdlib/go1_17_runtime_pprof.go +++ /dev/null @@ -1,33 +0,0 @@ -// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "runtime/pprof" -) - -func init() { - Symbols["runtime/pprof/pprof"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Do": reflect.ValueOf(pprof.Do), - "ForLabels": reflect.ValueOf(pprof.ForLabels), - "Label": reflect.ValueOf(pprof.Label), - "Labels": reflect.ValueOf(pprof.Labels), - "Lookup": reflect.ValueOf(pprof.Lookup), - "NewProfile": reflect.ValueOf(pprof.NewProfile), - "Profiles": reflect.ValueOf(pprof.Profiles), - "SetGoroutineLabels": reflect.ValueOf(pprof.SetGoroutineLabels), - "StartCPUProfile": reflect.ValueOf(pprof.StartCPUProfile), - "StopCPUProfile": reflect.ValueOf(pprof.StopCPUProfile), - "WithLabels": reflect.ValueOf(pprof.WithLabels), - "WriteHeapProfile": reflect.ValueOf(pprof.WriteHeapProfile), - - // type definitions - "LabelSet": reflect.ValueOf((*pprof.LabelSet)(nil)), - "Profile": reflect.ValueOf((*pprof.Profile)(nil)), - } -} diff --git a/stdlib/go1_17_runtime_trace.go b/stdlib/go1_17_runtime_trace.go deleted file mode 100644 index 4e063b1c0..000000000 --- a/stdlib/go1_17_runtime_trace.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "runtime/trace" -) - -func init() { - Symbols["runtime/trace/trace"] = map[string]reflect.Value{ - // function, constant and variable definitions - "IsEnabled": reflect.ValueOf(trace.IsEnabled), - "Log": reflect.ValueOf(trace.Log), - "Logf": reflect.ValueOf(trace.Logf), - "NewTask": reflect.ValueOf(trace.NewTask), - "Start": reflect.ValueOf(trace.Start), - "StartRegion": reflect.ValueOf(trace.StartRegion), - "Stop": reflect.ValueOf(trace.Stop), - "WithRegion": reflect.ValueOf(trace.WithRegion), - - // type definitions - "Region": reflect.ValueOf((*trace.Region)(nil)), - "Task": reflect.ValueOf((*trace.Task)(nil)), - } -} diff --git a/stdlib/go1_17_sort.go b/stdlib/go1_17_sort.go deleted file mode 100644 index 90ab9fa0c..000000000 --- a/stdlib/go1_17_sort.go +++ /dev/null @@ -1,61 +0,0 @@ -// Code generated by 'yaegi extract sort'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "sort" -) - -func init() { - Symbols["sort/sort"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Float64s": reflect.ValueOf(sort.Float64s), - "Float64sAreSorted": reflect.ValueOf(sort.Float64sAreSorted), - "Ints": reflect.ValueOf(sort.Ints), - "IntsAreSorted": reflect.ValueOf(sort.IntsAreSorted), - "IsSorted": reflect.ValueOf(sort.IsSorted), - "Reverse": reflect.ValueOf(sort.Reverse), - "Search": reflect.ValueOf(sort.Search), - "SearchFloat64s": reflect.ValueOf(sort.SearchFloat64s), - "SearchInts": reflect.ValueOf(sort.SearchInts), - "SearchStrings": reflect.ValueOf(sort.SearchStrings), - "Slice": reflect.ValueOf(sort.Slice), - "SliceIsSorted": reflect.ValueOf(sort.SliceIsSorted), - "SliceStable": reflect.ValueOf(sort.SliceStable), - "Sort": reflect.ValueOf(sort.Sort), - "Stable": reflect.ValueOf(sort.Stable), - "Strings": reflect.ValueOf(sort.Strings), - "StringsAreSorted": reflect.ValueOf(sort.StringsAreSorted), - - // type definitions - "Float64Slice": reflect.ValueOf((*sort.Float64Slice)(nil)), - "IntSlice": reflect.ValueOf((*sort.IntSlice)(nil)), - "Interface": reflect.ValueOf((*sort.Interface)(nil)), - "StringSlice": reflect.ValueOf((*sort.StringSlice)(nil)), - - // interface wrapper definitions - "_Interface": reflect.ValueOf((*_sort_Interface)(nil)), - } -} - -// _sort_Interface is an interface wrapper for Interface type -type _sort_Interface struct { - IValue interface{} - WLen func() int - WLess func(i int, j int) bool - WSwap func(i int, j int) -} - -func (W _sort_Interface) Len() int { - return W.WLen() -} -func (W _sort_Interface) Less(i int, j int) bool { - return W.WLess(i, j) -} -func (W _sort_Interface) Swap(i int, j int) { - W.WSwap(i, j) -} diff --git a/stdlib/go1_17_strconv.go b/stdlib/go1_17_strconv.go deleted file mode 100644 index 08a1947a2..000000000 --- a/stdlib/go1_17_strconv.go +++ /dev/null @@ -1,59 +0,0 @@ -// Code generated by 'yaegi extract strconv'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "strconv" -) - -func init() { - Symbols["strconv/strconv"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AppendBool": reflect.ValueOf(strconv.AppendBool), - "AppendFloat": reflect.ValueOf(strconv.AppendFloat), - "AppendInt": reflect.ValueOf(strconv.AppendInt), - "AppendQuote": reflect.ValueOf(strconv.AppendQuote), - "AppendQuoteRune": reflect.ValueOf(strconv.AppendQuoteRune), - "AppendQuoteRuneToASCII": reflect.ValueOf(strconv.AppendQuoteRuneToASCII), - "AppendQuoteRuneToGraphic": reflect.ValueOf(strconv.AppendQuoteRuneToGraphic), - "AppendQuoteToASCII": reflect.ValueOf(strconv.AppendQuoteToASCII), - "AppendQuoteToGraphic": reflect.ValueOf(strconv.AppendQuoteToGraphic), - "AppendUint": reflect.ValueOf(strconv.AppendUint), - "Atoi": reflect.ValueOf(strconv.Atoi), - "CanBackquote": reflect.ValueOf(strconv.CanBackquote), - "ErrRange": reflect.ValueOf(&strconv.ErrRange).Elem(), - "ErrSyntax": reflect.ValueOf(&strconv.ErrSyntax).Elem(), - "FormatBool": reflect.ValueOf(strconv.FormatBool), - "FormatComplex": reflect.ValueOf(strconv.FormatComplex), - "FormatFloat": reflect.ValueOf(strconv.FormatFloat), - "FormatInt": reflect.ValueOf(strconv.FormatInt), - "FormatUint": reflect.ValueOf(strconv.FormatUint), - "IntSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IsGraphic": reflect.ValueOf(strconv.IsGraphic), - "IsPrint": reflect.ValueOf(strconv.IsPrint), - "Itoa": reflect.ValueOf(strconv.Itoa), - "ParseBool": reflect.ValueOf(strconv.ParseBool), - "ParseComplex": reflect.ValueOf(strconv.ParseComplex), - "ParseFloat": reflect.ValueOf(strconv.ParseFloat), - "ParseInt": reflect.ValueOf(strconv.ParseInt), - "ParseUint": reflect.ValueOf(strconv.ParseUint), - "Quote": reflect.ValueOf(strconv.Quote), - "QuoteRune": reflect.ValueOf(strconv.QuoteRune), - "QuoteRuneToASCII": reflect.ValueOf(strconv.QuoteRuneToASCII), - "QuoteRuneToGraphic": reflect.ValueOf(strconv.QuoteRuneToGraphic), - "QuoteToASCII": reflect.ValueOf(strconv.QuoteToASCII), - "QuoteToGraphic": reflect.ValueOf(strconv.QuoteToGraphic), - "QuotedPrefix": reflect.ValueOf(strconv.QuotedPrefix), - "Unquote": reflect.ValueOf(strconv.Unquote), - "UnquoteChar": reflect.ValueOf(strconv.UnquoteChar), - - // type definitions - "NumError": reflect.ValueOf((*strconv.NumError)(nil)), - } -} diff --git a/stdlib/go1_17_strings.go b/stdlib/go1_17_strings.go deleted file mode 100644 index 0bd542cfa..000000000 --- a/stdlib/go1_17_strings.go +++ /dev/null @@ -1,69 +0,0 @@ -// Code generated by 'yaegi extract strings'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "strings" -) - -func init() { - Symbols["strings/strings"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Compare": reflect.ValueOf(strings.Compare), - "Contains": reflect.ValueOf(strings.Contains), - "ContainsAny": reflect.ValueOf(strings.ContainsAny), - "ContainsRune": reflect.ValueOf(strings.ContainsRune), - "Count": reflect.ValueOf(strings.Count), - "EqualFold": reflect.ValueOf(strings.EqualFold), - "Fields": reflect.ValueOf(strings.Fields), - "FieldsFunc": reflect.ValueOf(strings.FieldsFunc), - "HasPrefix": reflect.ValueOf(strings.HasPrefix), - "HasSuffix": reflect.ValueOf(strings.HasSuffix), - "Index": reflect.ValueOf(strings.Index), - "IndexAny": reflect.ValueOf(strings.IndexAny), - "IndexByte": reflect.ValueOf(strings.IndexByte), - "IndexFunc": reflect.ValueOf(strings.IndexFunc), - "IndexRune": reflect.ValueOf(strings.IndexRune), - "Join": reflect.ValueOf(strings.Join), - "LastIndex": reflect.ValueOf(strings.LastIndex), - "LastIndexAny": reflect.ValueOf(strings.LastIndexAny), - "LastIndexByte": reflect.ValueOf(strings.LastIndexByte), - "LastIndexFunc": reflect.ValueOf(strings.LastIndexFunc), - "Map": reflect.ValueOf(strings.Map), - "NewReader": reflect.ValueOf(strings.NewReader), - "NewReplacer": reflect.ValueOf(strings.NewReplacer), - "Repeat": reflect.ValueOf(strings.Repeat), - "Replace": reflect.ValueOf(strings.Replace), - "ReplaceAll": reflect.ValueOf(strings.ReplaceAll), - "Split": reflect.ValueOf(strings.Split), - "SplitAfter": reflect.ValueOf(strings.SplitAfter), - "SplitAfterN": reflect.ValueOf(strings.SplitAfterN), - "SplitN": reflect.ValueOf(strings.SplitN), - "Title": reflect.ValueOf(strings.Title), - "ToLower": reflect.ValueOf(strings.ToLower), - "ToLowerSpecial": reflect.ValueOf(strings.ToLowerSpecial), - "ToTitle": reflect.ValueOf(strings.ToTitle), - "ToTitleSpecial": reflect.ValueOf(strings.ToTitleSpecial), - "ToUpper": reflect.ValueOf(strings.ToUpper), - "ToUpperSpecial": reflect.ValueOf(strings.ToUpperSpecial), - "ToValidUTF8": reflect.ValueOf(strings.ToValidUTF8), - "Trim": reflect.ValueOf(strings.Trim), - "TrimFunc": reflect.ValueOf(strings.TrimFunc), - "TrimLeft": reflect.ValueOf(strings.TrimLeft), - "TrimLeftFunc": reflect.ValueOf(strings.TrimLeftFunc), - "TrimPrefix": reflect.ValueOf(strings.TrimPrefix), - "TrimRight": reflect.ValueOf(strings.TrimRight), - "TrimRightFunc": reflect.ValueOf(strings.TrimRightFunc), - "TrimSpace": reflect.ValueOf(strings.TrimSpace), - "TrimSuffix": reflect.ValueOf(strings.TrimSuffix), - - // type definitions - "Builder": reflect.ValueOf((*strings.Builder)(nil)), - "Reader": reflect.ValueOf((*strings.Reader)(nil)), - "Replacer": reflect.ValueOf((*strings.Replacer)(nil)), - } -} diff --git a/stdlib/go1_17_sync.go b/stdlib/go1_17_sync.go deleted file mode 100644 index 49f376207..000000000 --- a/stdlib/go1_17_sync.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract sync'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "sync" -) - -func init() { - Symbols["sync/sync"] = map[string]reflect.Value{ - // function, constant and variable definitions - "NewCond": reflect.ValueOf(sync.NewCond), - - // type definitions - "Cond": reflect.ValueOf((*sync.Cond)(nil)), - "Locker": reflect.ValueOf((*sync.Locker)(nil)), - "Map": reflect.ValueOf((*sync.Map)(nil)), - "Mutex": reflect.ValueOf((*sync.Mutex)(nil)), - "Once": reflect.ValueOf((*sync.Once)(nil)), - "Pool": reflect.ValueOf((*sync.Pool)(nil)), - "RWMutex": reflect.ValueOf((*sync.RWMutex)(nil)), - "WaitGroup": reflect.ValueOf((*sync.WaitGroup)(nil)), - - // interface wrapper definitions - "_Locker": reflect.ValueOf((*_sync_Locker)(nil)), - } -} - -// _sync_Locker is an interface wrapper for Locker type -type _sync_Locker struct { - IValue interface{} - WLock func() - WUnlock func() -} - -func (W _sync_Locker) Lock() { - W.WLock() -} -func (W _sync_Locker) Unlock() { - W.WUnlock() -} diff --git a/stdlib/go1_17_sync_atomic.go b/stdlib/go1_17_sync_atomic.go deleted file mode 100644 index ada9968f4..000000000 --- a/stdlib/go1_17_sync_atomic.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "sync/atomic" -) - -func init() { - Symbols["sync/atomic/atomic"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AddInt32": reflect.ValueOf(atomic.AddInt32), - "AddInt64": reflect.ValueOf(atomic.AddInt64), - "AddUint32": reflect.ValueOf(atomic.AddUint32), - "AddUint64": reflect.ValueOf(atomic.AddUint64), - "AddUintptr": reflect.ValueOf(atomic.AddUintptr), - "CompareAndSwapInt32": reflect.ValueOf(atomic.CompareAndSwapInt32), - "CompareAndSwapInt64": reflect.ValueOf(atomic.CompareAndSwapInt64), - "CompareAndSwapPointer": reflect.ValueOf(atomic.CompareAndSwapPointer), - "CompareAndSwapUint32": reflect.ValueOf(atomic.CompareAndSwapUint32), - "CompareAndSwapUint64": reflect.ValueOf(atomic.CompareAndSwapUint64), - "CompareAndSwapUintptr": reflect.ValueOf(atomic.CompareAndSwapUintptr), - "LoadInt32": reflect.ValueOf(atomic.LoadInt32), - "LoadInt64": reflect.ValueOf(atomic.LoadInt64), - "LoadPointer": reflect.ValueOf(atomic.LoadPointer), - "LoadUint32": reflect.ValueOf(atomic.LoadUint32), - "LoadUint64": reflect.ValueOf(atomic.LoadUint64), - "LoadUintptr": reflect.ValueOf(atomic.LoadUintptr), - "StoreInt32": reflect.ValueOf(atomic.StoreInt32), - "StoreInt64": reflect.ValueOf(atomic.StoreInt64), - "StorePointer": reflect.ValueOf(atomic.StorePointer), - "StoreUint32": reflect.ValueOf(atomic.StoreUint32), - "StoreUint64": reflect.ValueOf(atomic.StoreUint64), - "StoreUintptr": reflect.ValueOf(atomic.StoreUintptr), - "SwapInt32": reflect.ValueOf(atomic.SwapInt32), - "SwapInt64": reflect.ValueOf(atomic.SwapInt64), - "SwapPointer": reflect.ValueOf(atomic.SwapPointer), - "SwapUint32": reflect.ValueOf(atomic.SwapUint32), - "SwapUint64": reflect.ValueOf(atomic.SwapUint64), - "SwapUintptr": reflect.ValueOf(atomic.SwapUintptr), - - // type definitions - "Value": reflect.ValueOf((*atomic.Value)(nil)), - } -} diff --git a/stdlib/go1_17_testing.go b/stdlib/go1_17_testing.go deleted file mode 100644 index 283b08f19..000000000 --- a/stdlib/go1_17_testing.go +++ /dev/null @@ -1,124 +0,0 @@ -// Code generated by 'yaegi extract testing'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "testing" -) - -func init() { - Symbols["testing/testing"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllocsPerRun": reflect.ValueOf(testing.AllocsPerRun), - "Benchmark": reflect.ValueOf(testing.Benchmark), - "CoverMode": reflect.ValueOf(testing.CoverMode), - "Coverage": reflect.ValueOf(testing.Coverage), - "Init": reflect.ValueOf(testing.Init), - "Main": reflect.ValueOf(testing.Main), - "MainStart": reflect.ValueOf(testing.MainStart), - "RegisterCover": reflect.ValueOf(testing.RegisterCover), - "RunBenchmarks": reflect.ValueOf(testing.RunBenchmarks), - "RunExamples": reflect.ValueOf(testing.RunExamples), - "RunTests": reflect.ValueOf(testing.RunTests), - "Short": reflect.ValueOf(testing.Short), - "Verbose": reflect.ValueOf(testing.Verbose), - - // type definitions - "B": reflect.ValueOf((*testing.B)(nil)), - "BenchmarkResult": reflect.ValueOf((*testing.BenchmarkResult)(nil)), - "Cover": reflect.ValueOf((*testing.Cover)(nil)), - "CoverBlock": reflect.ValueOf((*testing.CoverBlock)(nil)), - "InternalBenchmark": reflect.ValueOf((*testing.InternalBenchmark)(nil)), - "InternalExample": reflect.ValueOf((*testing.InternalExample)(nil)), - "InternalTest": reflect.ValueOf((*testing.InternalTest)(nil)), - "M": reflect.ValueOf((*testing.M)(nil)), - "PB": reflect.ValueOf((*testing.PB)(nil)), - "T": reflect.ValueOf((*testing.T)(nil)), - "TB": reflect.ValueOf((*testing.TB)(nil)), - - // interface wrapper definitions - "_TB": reflect.ValueOf((*_testing_TB)(nil)), - } -} - -// _testing_TB is an interface wrapper for TB type -type _testing_TB struct { - IValue interface{} - WCleanup func(a0 func()) - WError func(args ...interface{}) - WErrorf func(format string, args ...interface{}) - WFail func() - WFailNow func() - WFailed func() bool - WFatal func(args ...interface{}) - WFatalf func(format string, args ...interface{}) - WHelper func() - WLog func(args ...interface{}) - WLogf func(format string, args ...interface{}) - WName func() string - WSetenv func(key string, value string) - WSkip func(args ...interface{}) - WSkipNow func() - WSkipf func(format string, args ...interface{}) - WSkipped func() bool - WTempDir func() string -} - -func (W _testing_TB) Cleanup(a0 func()) { - W.WCleanup(a0) -} -func (W _testing_TB) Error(args ...interface{}) { - W.WError(args...) -} -func (W _testing_TB) Errorf(format string, args ...interface{}) { - W.WErrorf(format, args...) -} -func (W _testing_TB) Fail() { - W.WFail() -} -func (W _testing_TB) FailNow() { - W.WFailNow() -} -func (W _testing_TB) Failed() bool { - return W.WFailed() -} -func (W _testing_TB) Fatal(args ...interface{}) { - W.WFatal(args...) -} -func (W _testing_TB) Fatalf(format string, args ...interface{}) { - W.WFatalf(format, args...) -} -func (W _testing_TB) Helper() { - W.WHelper() -} -func (W _testing_TB) Log(args ...interface{}) { - W.WLog(args...) -} -func (W _testing_TB) Logf(format string, args ...interface{}) { - W.WLogf(format, args...) -} -func (W _testing_TB) Name() string { - return W.WName() -} -func (W _testing_TB) Setenv(key string, value string) { - W.WSetenv(key, value) -} -func (W _testing_TB) Skip(args ...interface{}) { - W.WSkip(args...) -} -func (W _testing_TB) SkipNow() { - W.WSkipNow() -} -func (W _testing_TB) Skipf(format string, args ...interface{}) { - W.WSkipf(format, args...) -} -func (W _testing_TB) Skipped() bool { - return W.WSkipped() -} -func (W _testing_TB) TempDir() string { - return W.WTempDir() -} diff --git a/stdlib/go1_17_testing_fstest.go b/stdlib/go1_17_testing_fstest.go deleted file mode 100644 index 208fd1572..000000000 --- a/stdlib/go1_17_testing_fstest.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "testing/fstest" -) - -func init() { - Symbols["testing/fstest/fstest"] = map[string]reflect.Value{ - // function, constant and variable definitions - "TestFS": reflect.ValueOf(fstest.TestFS), - - // type definitions - "MapFS": reflect.ValueOf((*fstest.MapFS)(nil)), - "MapFile": reflect.ValueOf((*fstest.MapFile)(nil)), - } -} diff --git a/stdlib/go1_17_testing_iotest.go b/stdlib/go1_17_testing_iotest.go deleted file mode 100644 index 5d9b8fe47..000000000 --- a/stdlib/go1_17_testing_iotest.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "testing/iotest" -) - -func init() { - Symbols["testing/iotest/iotest"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DataErrReader": reflect.ValueOf(iotest.DataErrReader), - "ErrReader": reflect.ValueOf(iotest.ErrReader), - "ErrTimeout": reflect.ValueOf(&iotest.ErrTimeout).Elem(), - "HalfReader": reflect.ValueOf(iotest.HalfReader), - "NewReadLogger": reflect.ValueOf(iotest.NewReadLogger), - "NewWriteLogger": reflect.ValueOf(iotest.NewWriteLogger), - "OneByteReader": reflect.ValueOf(iotest.OneByteReader), - "TestReader": reflect.ValueOf(iotest.TestReader), - "TimeoutReader": reflect.ValueOf(iotest.TimeoutReader), - "TruncateWriter": reflect.ValueOf(iotest.TruncateWriter), - } -} diff --git a/stdlib/go1_17_testing_quick.go b/stdlib/go1_17_testing_quick.go deleted file mode 100644 index d5e668265..000000000 --- a/stdlib/go1_17_testing_quick.go +++ /dev/null @@ -1,41 +0,0 @@ -// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "math/rand" - "reflect" - "testing/quick" -) - -func init() { - Symbols["testing/quick/quick"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Check": reflect.ValueOf(quick.Check), - "CheckEqual": reflect.ValueOf(quick.CheckEqual), - "Value": reflect.ValueOf(quick.Value), - - // type definitions - "CheckEqualError": reflect.ValueOf((*quick.CheckEqualError)(nil)), - "CheckError": reflect.ValueOf((*quick.CheckError)(nil)), - "Config": reflect.ValueOf((*quick.Config)(nil)), - "Generator": reflect.ValueOf((*quick.Generator)(nil)), - "SetupError": reflect.ValueOf((*quick.SetupError)(nil)), - - // interface wrapper definitions - "_Generator": reflect.ValueOf((*_testing_quick_Generator)(nil)), - } -} - -// _testing_quick_Generator is an interface wrapper for Generator type -type _testing_quick_Generator struct { - IValue interface{} - WGenerate func(rand *rand.Rand, size int) reflect.Value -} - -func (W _testing_quick_Generator) Generate(rand *rand.Rand, size int) reflect.Value { - return W.WGenerate(rand, size) -} diff --git a/stdlib/go1_17_text_scanner.go b/stdlib/go1_17_text_scanner.go deleted file mode 100644 index de386468d..000000000 --- a/stdlib/go1_17_text_scanner.go +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "text/scanner" -) - -func init() { - Symbols["text/scanner/scanner"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Char": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "Comment": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EOF": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "Float": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "GoTokens": reflect.ValueOf(constant.MakeFromLiteral("1012", token.INT, 0)), - "GoWhitespace": reflect.ValueOf(constant.MakeFromLiteral("4294977024", token.INT, 0)), - "Ident": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Int": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "RawString": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "ScanChars": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ScanComments": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ScanFloats": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ScanIdents": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ScanInts": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ScanRawStrings": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ScanStrings": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SkipComments": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "String": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "TokenString": reflect.ValueOf(scanner.TokenString), - - // type definitions - "Position": reflect.ValueOf((*scanner.Position)(nil)), - "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), - } -} diff --git a/stdlib/go1_17_text_tabwriter.go b/stdlib/go1_17_text_tabwriter.go deleted file mode 100644 index 21b5811ec..000000000 --- a/stdlib/go1_17_text_tabwriter.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "text/tabwriter" -) - -func init() { - Symbols["text/tabwriter/tabwriter"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AlignRight": reflect.ValueOf(tabwriter.AlignRight), - "Debug": reflect.ValueOf(tabwriter.Debug), - "DiscardEmptyColumns": reflect.ValueOf(tabwriter.DiscardEmptyColumns), - "Escape": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FilterHTML": reflect.ValueOf(tabwriter.FilterHTML), - "NewWriter": reflect.ValueOf(tabwriter.NewWriter), - "StripEscape": reflect.ValueOf(tabwriter.StripEscape), - "TabIndent": reflect.ValueOf(tabwriter.TabIndent), - - // type definitions - "Writer": reflect.ValueOf((*tabwriter.Writer)(nil)), - } -} diff --git a/stdlib/go1_17_text_template.go b/stdlib/go1_17_text_template.go deleted file mode 100644 index 45b00653d..000000000 --- a/stdlib/go1_17_text_template.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by 'yaegi extract text/template'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "text/template" -) - -func init() { - Symbols["text/template/template"] = map[string]reflect.Value{ - // function, constant and variable definitions - "HTMLEscape": reflect.ValueOf(template.HTMLEscape), - "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), - "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), - "IsTrue": reflect.ValueOf(template.IsTrue), - "JSEscape": reflect.ValueOf(template.JSEscape), - "JSEscapeString": reflect.ValueOf(template.JSEscapeString), - "JSEscaper": reflect.ValueOf(template.JSEscaper), - "Must": reflect.ValueOf(template.Must), - "New": reflect.ValueOf(template.New), - "ParseFS": reflect.ValueOf(template.ParseFS), - "ParseFiles": reflect.ValueOf(template.ParseFiles), - "ParseGlob": reflect.ValueOf(template.ParseGlob), - "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), - - // type definitions - "ExecError": reflect.ValueOf((*template.ExecError)(nil)), - "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), - "Template": reflect.ValueOf((*template.Template)(nil)), - } -} diff --git a/stdlib/go1_17_text_template_parse.go b/stdlib/go1_17_text_template_parse.go deleted file mode 100644 index a8789962b..000000000 --- a/stdlib/go1_17_text_template_parse.go +++ /dev/null @@ -1,97 +0,0 @@ -// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "text/template/parse" -) - -func init() { - Symbols["text/template/parse/parse"] = map[string]reflect.Value{ - // function, constant and variable definitions - "IsEmptyTree": reflect.ValueOf(parse.IsEmptyTree), - "New": reflect.ValueOf(parse.New), - "NewIdentifier": reflect.ValueOf(parse.NewIdentifier), - "NodeAction": reflect.ValueOf(parse.NodeAction), - "NodeBool": reflect.ValueOf(parse.NodeBool), - "NodeChain": reflect.ValueOf(parse.NodeChain), - "NodeCommand": reflect.ValueOf(parse.NodeCommand), - "NodeComment": reflect.ValueOf(parse.NodeComment), - "NodeDot": reflect.ValueOf(parse.NodeDot), - "NodeField": reflect.ValueOf(parse.NodeField), - "NodeIdentifier": reflect.ValueOf(parse.NodeIdentifier), - "NodeIf": reflect.ValueOf(parse.NodeIf), - "NodeList": reflect.ValueOf(parse.NodeList), - "NodeNil": reflect.ValueOf(parse.NodeNil), - "NodeNumber": reflect.ValueOf(parse.NodeNumber), - "NodePipe": reflect.ValueOf(parse.NodePipe), - "NodeRange": reflect.ValueOf(parse.NodeRange), - "NodeString": reflect.ValueOf(parse.NodeString), - "NodeTemplate": reflect.ValueOf(parse.NodeTemplate), - "NodeText": reflect.ValueOf(parse.NodeText), - "NodeVariable": reflect.ValueOf(parse.NodeVariable), - "NodeWith": reflect.ValueOf(parse.NodeWith), - "Parse": reflect.ValueOf(parse.Parse), - "ParseComments": reflect.ValueOf(parse.ParseComments), - "SkipFuncCheck": reflect.ValueOf(parse.SkipFuncCheck), - - // type definitions - "ActionNode": reflect.ValueOf((*parse.ActionNode)(nil)), - "BoolNode": reflect.ValueOf((*parse.BoolNode)(nil)), - "BranchNode": reflect.ValueOf((*parse.BranchNode)(nil)), - "ChainNode": reflect.ValueOf((*parse.ChainNode)(nil)), - "CommandNode": reflect.ValueOf((*parse.CommandNode)(nil)), - "CommentNode": reflect.ValueOf((*parse.CommentNode)(nil)), - "DotNode": reflect.ValueOf((*parse.DotNode)(nil)), - "FieldNode": reflect.ValueOf((*parse.FieldNode)(nil)), - "IdentifierNode": reflect.ValueOf((*parse.IdentifierNode)(nil)), - "IfNode": reflect.ValueOf((*parse.IfNode)(nil)), - "ListNode": reflect.ValueOf((*parse.ListNode)(nil)), - "Mode": reflect.ValueOf((*parse.Mode)(nil)), - "NilNode": reflect.ValueOf((*parse.NilNode)(nil)), - "Node": reflect.ValueOf((*parse.Node)(nil)), - "NodeType": reflect.ValueOf((*parse.NodeType)(nil)), - "NumberNode": reflect.ValueOf((*parse.NumberNode)(nil)), - "PipeNode": reflect.ValueOf((*parse.PipeNode)(nil)), - "Pos": reflect.ValueOf((*parse.Pos)(nil)), - "RangeNode": reflect.ValueOf((*parse.RangeNode)(nil)), - "StringNode": reflect.ValueOf((*parse.StringNode)(nil)), - "TemplateNode": reflect.ValueOf((*parse.TemplateNode)(nil)), - "TextNode": reflect.ValueOf((*parse.TextNode)(nil)), - "Tree": reflect.ValueOf((*parse.Tree)(nil)), - "VariableNode": reflect.ValueOf((*parse.VariableNode)(nil)), - "WithNode": reflect.ValueOf((*parse.WithNode)(nil)), - - // interface wrapper definitions - "_Node": reflect.ValueOf((*_text_template_parse_Node)(nil)), - } -} - -// _text_template_parse_Node is an interface wrapper for Node type -type _text_template_parse_Node struct { - IValue interface{} - WCopy func() parse.Node - WPosition func() parse.Pos - WString func() string - WType func() parse.NodeType -} - -func (W _text_template_parse_Node) Copy() parse.Node { - return W.WCopy() -} -func (W _text_template_parse_Node) Position() parse.Pos { - return W.WPosition() -} -func (W _text_template_parse_Node) String() string { - if W.WString == nil { - return "" - } - return W.WString() -} -func (W _text_template_parse_Node) Type() parse.NodeType { - return W.WType() -} diff --git a/stdlib/go1_17_time.go b/stdlib/go1_17_time.go deleted file mode 100644 index 25b71f6dd..000000000 --- a/stdlib/go1_17_time.go +++ /dev/null @@ -1,91 +0,0 @@ -// Code generated by 'yaegi extract time'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "time" -) - -func init() { - Symbols["time/time"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ANSIC": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 2006\"", token.STRING, 0)), - "After": reflect.ValueOf(time.After), - "AfterFunc": reflect.ValueOf(time.AfterFunc), - "April": reflect.ValueOf(time.April), - "August": reflect.ValueOf(time.August), - "Date": reflect.ValueOf(time.Date), - "December": reflect.ValueOf(time.December), - "February": reflect.ValueOf(time.February), - "FixedZone": reflect.ValueOf(time.FixedZone), - "Friday": reflect.ValueOf(time.Friday), - "Hour": reflect.ValueOf(time.Hour), - "January": reflect.ValueOf(time.January), - "July": reflect.ValueOf(time.July), - "June": reflect.ValueOf(time.June), - "Kitchen": reflect.ValueOf(constant.MakeFromLiteral("\"3:04PM\"", token.STRING, 0)), - "Layout": reflect.ValueOf(constant.MakeFromLiteral("\"01/02 03:04:05PM '06 -0700\"", token.STRING, 0)), - "LoadLocation": reflect.ValueOf(time.LoadLocation), - "LoadLocationFromTZData": reflect.ValueOf(time.LoadLocationFromTZData), - "Local": reflect.ValueOf(&time.Local).Elem(), - "March": reflect.ValueOf(time.March), - "May": reflect.ValueOf(time.May), - "Microsecond": reflect.ValueOf(time.Microsecond), - "Millisecond": reflect.ValueOf(time.Millisecond), - "Minute": reflect.ValueOf(time.Minute), - "Monday": reflect.ValueOf(time.Monday), - "Nanosecond": reflect.ValueOf(time.Nanosecond), - "NewTicker": reflect.ValueOf(time.NewTicker), - "NewTimer": reflect.ValueOf(time.NewTimer), - "November": reflect.ValueOf(time.November), - "Now": reflect.ValueOf(time.Now), - "October": reflect.ValueOf(time.October), - "Parse": reflect.ValueOf(time.Parse), - "ParseDuration": reflect.ValueOf(time.ParseDuration), - "ParseInLocation": reflect.ValueOf(time.ParseInLocation), - "RFC1123": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 MST\"", token.STRING, 0)), - "RFC1123Z": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 -0700\"", token.STRING, 0)), - "RFC3339": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05Z07:00\"", token.STRING, 0)), - "RFC3339Nano": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05.999999999Z07:00\"", token.STRING, 0)), - "RFC822": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 MST\"", token.STRING, 0)), - "RFC822Z": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 -0700\"", token.STRING, 0)), - "RFC850": reflect.ValueOf(constant.MakeFromLiteral("\"Monday, 02-Jan-06 15:04:05 MST\"", token.STRING, 0)), - "RubyDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan 02 15:04:05 -0700 2006\"", token.STRING, 0)), - "Saturday": reflect.ValueOf(time.Saturday), - "Second": reflect.ValueOf(time.Second), - "September": reflect.ValueOf(time.September), - "Since": reflect.ValueOf(time.Since), - "Sleep": reflect.ValueOf(time.Sleep), - "Stamp": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05\"", token.STRING, 0)), - "StampMicro": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000\"", token.STRING, 0)), - "StampMilli": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000\"", token.STRING, 0)), - "StampNano": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000000\"", token.STRING, 0)), - "Sunday": reflect.ValueOf(time.Sunday), - "Thursday": reflect.ValueOf(time.Thursday), - "Tick": reflect.ValueOf(time.Tick), - "Tuesday": reflect.ValueOf(time.Tuesday), - "UTC": reflect.ValueOf(&time.UTC).Elem(), - "Unix": reflect.ValueOf(time.Unix), - "UnixDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 MST 2006\"", token.STRING, 0)), - "UnixMicro": reflect.ValueOf(time.UnixMicro), - "UnixMilli": reflect.ValueOf(time.UnixMilli), - "Until": reflect.ValueOf(time.Until), - "Wednesday": reflect.ValueOf(time.Wednesday), - - // type definitions - "Duration": reflect.ValueOf((*time.Duration)(nil)), - "Location": reflect.ValueOf((*time.Location)(nil)), - "Month": reflect.ValueOf((*time.Month)(nil)), - "ParseError": reflect.ValueOf((*time.ParseError)(nil)), - "Ticker": reflect.ValueOf((*time.Ticker)(nil)), - "Time": reflect.ValueOf((*time.Time)(nil)), - "Timer": reflect.ValueOf((*time.Timer)(nil)), - "Weekday": reflect.ValueOf((*time.Weekday)(nil)), - } -} diff --git a/stdlib/go1_17_unicode.go b/stdlib/go1_17_unicode.go deleted file mode 100644 index 16f344c30..000000000 --- a/stdlib/go1_17_unicode.go +++ /dev/null @@ -1,305 +0,0 @@ -// Code generated by 'yaegi extract unicode'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "unicode" -) - -func init() { - Symbols["unicode/unicode"] = map[string]reflect.Value{ - // function, constant and variable definitions - "ASCII_Hex_Digit": reflect.ValueOf(&unicode.ASCII_Hex_Digit).Elem(), - "Adlam": reflect.ValueOf(&unicode.Adlam).Elem(), - "Ahom": reflect.ValueOf(&unicode.Ahom).Elem(), - "Anatolian_Hieroglyphs": reflect.ValueOf(&unicode.Anatolian_Hieroglyphs).Elem(), - "Arabic": reflect.ValueOf(&unicode.Arabic).Elem(), - "Armenian": reflect.ValueOf(&unicode.Armenian).Elem(), - "Avestan": reflect.ValueOf(&unicode.Avestan).Elem(), - "AzeriCase": reflect.ValueOf(&unicode.AzeriCase).Elem(), - "Balinese": reflect.ValueOf(&unicode.Balinese).Elem(), - "Bamum": reflect.ValueOf(&unicode.Bamum).Elem(), - "Bassa_Vah": reflect.ValueOf(&unicode.Bassa_Vah).Elem(), - "Batak": reflect.ValueOf(&unicode.Batak).Elem(), - "Bengali": reflect.ValueOf(&unicode.Bengali).Elem(), - "Bhaiksuki": reflect.ValueOf(&unicode.Bhaiksuki).Elem(), - "Bidi_Control": reflect.ValueOf(&unicode.Bidi_Control).Elem(), - "Bopomofo": reflect.ValueOf(&unicode.Bopomofo).Elem(), - "Brahmi": reflect.ValueOf(&unicode.Brahmi).Elem(), - "Braille": reflect.ValueOf(&unicode.Braille).Elem(), - "Buginese": reflect.ValueOf(&unicode.Buginese).Elem(), - "Buhid": reflect.ValueOf(&unicode.Buhid).Elem(), - "C": reflect.ValueOf(&unicode.C).Elem(), - "Canadian_Aboriginal": reflect.ValueOf(&unicode.Canadian_Aboriginal).Elem(), - "Carian": reflect.ValueOf(&unicode.Carian).Elem(), - "CaseRanges": reflect.ValueOf(&unicode.CaseRanges).Elem(), - "Categories": reflect.ValueOf(&unicode.Categories).Elem(), - "Caucasian_Albanian": reflect.ValueOf(&unicode.Caucasian_Albanian).Elem(), - "Cc": reflect.ValueOf(&unicode.Cc).Elem(), - "Cf": reflect.ValueOf(&unicode.Cf).Elem(), - "Chakma": reflect.ValueOf(&unicode.Chakma).Elem(), - "Cham": reflect.ValueOf(&unicode.Cham).Elem(), - "Cherokee": reflect.ValueOf(&unicode.Cherokee).Elem(), - "Chorasmian": reflect.ValueOf(&unicode.Chorasmian).Elem(), - "Co": reflect.ValueOf(&unicode.Co).Elem(), - "Common": reflect.ValueOf(&unicode.Common).Elem(), - "Coptic": reflect.ValueOf(&unicode.Coptic).Elem(), - "Cs": reflect.ValueOf(&unicode.Cs).Elem(), - "Cuneiform": reflect.ValueOf(&unicode.Cuneiform).Elem(), - "Cypriot": reflect.ValueOf(&unicode.Cypriot).Elem(), - "Cyrillic": reflect.ValueOf(&unicode.Cyrillic).Elem(), - "Dash": reflect.ValueOf(&unicode.Dash).Elem(), - "Deprecated": reflect.ValueOf(&unicode.Deprecated).Elem(), - "Deseret": reflect.ValueOf(&unicode.Deseret).Elem(), - "Devanagari": reflect.ValueOf(&unicode.Devanagari).Elem(), - "Diacritic": reflect.ValueOf(&unicode.Diacritic).Elem(), - "Digit": reflect.ValueOf(&unicode.Digit).Elem(), - "Dives_Akuru": reflect.ValueOf(&unicode.Dives_Akuru).Elem(), - "Dogra": reflect.ValueOf(&unicode.Dogra).Elem(), - "Duployan": reflect.ValueOf(&unicode.Duployan).Elem(), - "Egyptian_Hieroglyphs": reflect.ValueOf(&unicode.Egyptian_Hieroglyphs).Elem(), - "Elbasan": reflect.ValueOf(&unicode.Elbasan).Elem(), - "Elymaic": reflect.ValueOf(&unicode.Elymaic).Elem(), - "Ethiopic": reflect.ValueOf(&unicode.Ethiopic).Elem(), - "Extender": reflect.ValueOf(&unicode.Extender).Elem(), - "FoldCategory": reflect.ValueOf(&unicode.FoldCategory).Elem(), - "FoldScript": reflect.ValueOf(&unicode.FoldScript).Elem(), - "Georgian": reflect.ValueOf(&unicode.Georgian).Elem(), - "Glagolitic": reflect.ValueOf(&unicode.Glagolitic).Elem(), - "Gothic": reflect.ValueOf(&unicode.Gothic).Elem(), - "Grantha": reflect.ValueOf(&unicode.Grantha).Elem(), - "GraphicRanges": reflect.ValueOf(&unicode.GraphicRanges).Elem(), - "Greek": reflect.ValueOf(&unicode.Greek).Elem(), - "Gujarati": reflect.ValueOf(&unicode.Gujarati).Elem(), - "Gunjala_Gondi": reflect.ValueOf(&unicode.Gunjala_Gondi).Elem(), - "Gurmukhi": reflect.ValueOf(&unicode.Gurmukhi).Elem(), - "Han": reflect.ValueOf(&unicode.Han).Elem(), - "Hangul": reflect.ValueOf(&unicode.Hangul).Elem(), - "Hanifi_Rohingya": reflect.ValueOf(&unicode.Hanifi_Rohingya).Elem(), - "Hanunoo": reflect.ValueOf(&unicode.Hanunoo).Elem(), - "Hatran": reflect.ValueOf(&unicode.Hatran).Elem(), - "Hebrew": reflect.ValueOf(&unicode.Hebrew).Elem(), - "Hex_Digit": reflect.ValueOf(&unicode.Hex_Digit).Elem(), - "Hiragana": reflect.ValueOf(&unicode.Hiragana).Elem(), - "Hyphen": reflect.ValueOf(&unicode.Hyphen).Elem(), - "IDS_Binary_Operator": reflect.ValueOf(&unicode.IDS_Binary_Operator).Elem(), - "IDS_Trinary_Operator": reflect.ValueOf(&unicode.IDS_Trinary_Operator).Elem(), - "Ideographic": reflect.ValueOf(&unicode.Ideographic).Elem(), - "Imperial_Aramaic": reflect.ValueOf(&unicode.Imperial_Aramaic).Elem(), - "In": reflect.ValueOf(unicode.In), - "Inherited": reflect.ValueOf(&unicode.Inherited).Elem(), - "Inscriptional_Pahlavi": reflect.ValueOf(&unicode.Inscriptional_Pahlavi).Elem(), - "Inscriptional_Parthian": reflect.ValueOf(&unicode.Inscriptional_Parthian).Elem(), - "Is": reflect.ValueOf(unicode.Is), - "IsControl": reflect.ValueOf(unicode.IsControl), - "IsDigit": reflect.ValueOf(unicode.IsDigit), - "IsGraphic": reflect.ValueOf(unicode.IsGraphic), - "IsLetter": reflect.ValueOf(unicode.IsLetter), - "IsLower": reflect.ValueOf(unicode.IsLower), - "IsMark": reflect.ValueOf(unicode.IsMark), - "IsNumber": reflect.ValueOf(unicode.IsNumber), - "IsOneOf": reflect.ValueOf(unicode.IsOneOf), - "IsPrint": reflect.ValueOf(unicode.IsPrint), - "IsPunct": reflect.ValueOf(unicode.IsPunct), - "IsSpace": reflect.ValueOf(unicode.IsSpace), - "IsSymbol": reflect.ValueOf(unicode.IsSymbol), - "IsTitle": reflect.ValueOf(unicode.IsTitle), - "IsUpper": reflect.ValueOf(unicode.IsUpper), - "Javanese": reflect.ValueOf(&unicode.Javanese).Elem(), - "Join_Control": reflect.ValueOf(&unicode.Join_Control).Elem(), - "Kaithi": reflect.ValueOf(&unicode.Kaithi).Elem(), - "Kannada": reflect.ValueOf(&unicode.Kannada).Elem(), - "Katakana": reflect.ValueOf(&unicode.Katakana).Elem(), - "Kayah_Li": reflect.ValueOf(&unicode.Kayah_Li).Elem(), - "Kharoshthi": reflect.ValueOf(&unicode.Kharoshthi).Elem(), - "Khitan_Small_Script": reflect.ValueOf(&unicode.Khitan_Small_Script).Elem(), - "Khmer": reflect.ValueOf(&unicode.Khmer).Elem(), - "Khojki": reflect.ValueOf(&unicode.Khojki).Elem(), - "Khudawadi": reflect.ValueOf(&unicode.Khudawadi).Elem(), - "L": reflect.ValueOf(&unicode.L).Elem(), - "Lao": reflect.ValueOf(&unicode.Lao).Elem(), - "Latin": reflect.ValueOf(&unicode.Latin).Elem(), - "Lepcha": reflect.ValueOf(&unicode.Lepcha).Elem(), - "Letter": reflect.ValueOf(&unicode.Letter).Elem(), - "Limbu": reflect.ValueOf(&unicode.Limbu).Elem(), - "Linear_A": reflect.ValueOf(&unicode.Linear_A).Elem(), - "Linear_B": reflect.ValueOf(&unicode.Linear_B).Elem(), - "Lisu": reflect.ValueOf(&unicode.Lisu).Elem(), - "Ll": reflect.ValueOf(&unicode.Ll).Elem(), - "Lm": reflect.ValueOf(&unicode.Lm).Elem(), - "Lo": reflect.ValueOf(&unicode.Lo).Elem(), - "Logical_Order_Exception": reflect.ValueOf(&unicode.Logical_Order_Exception).Elem(), - "Lower": reflect.ValueOf(&unicode.Lower).Elem(), - "LowerCase": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Lt": reflect.ValueOf(&unicode.Lt).Elem(), - "Lu": reflect.ValueOf(&unicode.Lu).Elem(), - "Lycian": reflect.ValueOf(&unicode.Lycian).Elem(), - "Lydian": reflect.ValueOf(&unicode.Lydian).Elem(), - "M": reflect.ValueOf(&unicode.M).Elem(), - "Mahajani": reflect.ValueOf(&unicode.Mahajani).Elem(), - "Makasar": reflect.ValueOf(&unicode.Makasar).Elem(), - "Malayalam": reflect.ValueOf(&unicode.Malayalam).Elem(), - "Mandaic": reflect.ValueOf(&unicode.Mandaic).Elem(), - "Manichaean": reflect.ValueOf(&unicode.Manichaean).Elem(), - "Marchen": reflect.ValueOf(&unicode.Marchen).Elem(), - "Mark": reflect.ValueOf(&unicode.Mark).Elem(), - "Masaram_Gondi": reflect.ValueOf(&unicode.Masaram_Gondi).Elem(), - "MaxASCII": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "MaxCase": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MaxLatin1": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), - "Mc": reflect.ValueOf(&unicode.Mc).Elem(), - "Me": reflect.ValueOf(&unicode.Me).Elem(), - "Medefaidrin": reflect.ValueOf(&unicode.Medefaidrin).Elem(), - "Meetei_Mayek": reflect.ValueOf(&unicode.Meetei_Mayek).Elem(), - "Mende_Kikakui": reflect.ValueOf(&unicode.Mende_Kikakui).Elem(), - "Meroitic_Cursive": reflect.ValueOf(&unicode.Meroitic_Cursive).Elem(), - "Meroitic_Hieroglyphs": reflect.ValueOf(&unicode.Meroitic_Hieroglyphs).Elem(), - "Miao": reflect.ValueOf(&unicode.Miao).Elem(), - "Mn": reflect.ValueOf(&unicode.Mn).Elem(), - "Modi": reflect.ValueOf(&unicode.Modi).Elem(), - "Mongolian": reflect.ValueOf(&unicode.Mongolian).Elem(), - "Mro": reflect.ValueOf(&unicode.Mro).Elem(), - "Multani": reflect.ValueOf(&unicode.Multani).Elem(), - "Myanmar": reflect.ValueOf(&unicode.Myanmar).Elem(), - "N": reflect.ValueOf(&unicode.N).Elem(), - "Nabataean": reflect.ValueOf(&unicode.Nabataean).Elem(), - "Nandinagari": reflect.ValueOf(&unicode.Nandinagari).Elem(), - "Nd": reflect.ValueOf(&unicode.Nd).Elem(), - "New_Tai_Lue": reflect.ValueOf(&unicode.New_Tai_Lue).Elem(), - "Newa": reflect.ValueOf(&unicode.Newa).Elem(), - "Nko": reflect.ValueOf(&unicode.Nko).Elem(), - "Nl": reflect.ValueOf(&unicode.Nl).Elem(), - "No": reflect.ValueOf(&unicode.No).Elem(), - "Noncharacter_Code_Point": reflect.ValueOf(&unicode.Noncharacter_Code_Point).Elem(), - "Number": reflect.ValueOf(&unicode.Number).Elem(), - "Nushu": reflect.ValueOf(&unicode.Nushu).Elem(), - "Nyiakeng_Puachue_Hmong": reflect.ValueOf(&unicode.Nyiakeng_Puachue_Hmong).Elem(), - "Ogham": reflect.ValueOf(&unicode.Ogham).Elem(), - "Ol_Chiki": reflect.ValueOf(&unicode.Ol_Chiki).Elem(), - "Old_Hungarian": reflect.ValueOf(&unicode.Old_Hungarian).Elem(), - "Old_Italic": reflect.ValueOf(&unicode.Old_Italic).Elem(), - "Old_North_Arabian": reflect.ValueOf(&unicode.Old_North_Arabian).Elem(), - "Old_Permic": reflect.ValueOf(&unicode.Old_Permic).Elem(), - "Old_Persian": reflect.ValueOf(&unicode.Old_Persian).Elem(), - "Old_Sogdian": reflect.ValueOf(&unicode.Old_Sogdian).Elem(), - "Old_South_Arabian": reflect.ValueOf(&unicode.Old_South_Arabian).Elem(), - "Old_Turkic": reflect.ValueOf(&unicode.Old_Turkic).Elem(), - "Oriya": reflect.ValueOf(&unicode.Oriya).Elem(), - "Osage": reflect.ValueOf(&unicode.Osage).Elem(), - "Osmanya": reflect.ValueOf(&unicode.Osmanya).Elem(), - "Other": reflect.ValueOf(&unicode.Other).Elem(), - "Other_Alphabetic": reflect.ValueOf(&unicode.Other_Alphabetic).Elem(), - "Other_Default_Ignorable_Code_Point": reflect.ValueOf(&unicode.Other_Default_Ignorable_Code_Point).Elem(), - "Other_Grapheme_Extend": reflect.ValueOf(&unicode.Other_Grapheme_Extend).Elem(), - "Other_ID_Continue": reflect.ValueOf(&unicode.Other_ID_Continue).Elem(), - "Other_ID_Start": reflect.ValueOf(&unicode.Other_ID_Start).Elem(), - "Other_Lowercase": reflect.ValueOf(&unicode.Other_Lowercase).Elem(), - "Other_Math": reflect.ValueOf(&unicode.Other_Math).Elem(), - "Other_Uppercase": reflect.ValueOf(&unicode.Other_Uppercase).Elem(), - "P": reflect.ValueOf(&unicode.P).Elem(), - "Pahawh_Hmong": reflect.ValueOf(&unicode.Pahawh_Hmong).Elem(), - "Palmyrene": reflect.ValueOf(&unicode.Palmyrene).Elem(), - "Pattern_Syntax": reflect.ValueOf(&unicode.Pattern_Syntax).Elem(), - "Pattern_White_Space": reflect.ValueOf(&unicode.Pattern_White_Space).Elem(), - "Pau_Cin_Hau": reflect.ValueOf(&unicode.Pau_Cin_Hau).Elem(), - "Pc": reflect.ValueOf(&unicode.Pc).Elem(), - "Pd": reflect.ValueOf(&unicode.Pd).Elem(), - "Pe": reflect.ValueOf(&unicode.Pe).Elem(), - "Pf": reflect.ValueOf(&unicode.Pf).Elem(), - "Phags_Pa": reflect.ValueOf(&unicode.Phags_Pa).Elem(), - "Phoenician": reflect.ValueOf(&unicode.Phoenician).Elem(), - "Pi": reflect.ValueOf(&unicode.Pi).Elem(), - "Po": reflect.ValueOf(&unicode.Po).Elem(), - "Prepended_Concatenation_Mark": reflect.ValueOf(&unicode.Prepended_Concatenation_Mark).Elem(), - "PrintRanges": reflect.ValueOf(&unicode.PrintRanges).Elem(), - "Properties": reflect.ValueOf(&unicode.Properties).Elem(), - "Ps": reflect.ValueOf(&unicode.Ps).Elem(), - "Psalter_Pahlavi": reflect.ValueOf(&unicode.Psalter_Pahlavi).Elem(), - "Punct": reflect.ValueOf(&unicode.Punct).Elem(), - "Quotation_Mark": reflect.ValueOf(&unicode.Quotation_Mark).Elem(), - "Radical": reflect.ValueOf(&unicode.Radical).Elem(), - "Regional_Indicator": reflect.ValueOf(&unicode.Regional_Indicator).Elem(), - "Rejang": reflect.ValueOf(&unicode.Rejang).Elem(), - "ReplacementChar": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "Runic": reflect.ValueOf(&unicode.Runic).Elem(), - "S": reflect.ValueOf(&unicode.S).Elem(), - "STerm": reflect.ValueOf(&unicode.STerm).Elem(), - "Samaritan": reflect.ValueOf(&unicode.Samaritan).Elem(), - "Saurashtra": reflect.ValueOf(&unicode.Saurashtra).Elem(), - "Sc": reflect.ValueOf(&unicode.Sc).Elem(), - "Scripts": reflect.ValueOf(&unicode.Scripts).Elem(), - "Sentence_Terminal": reflect.ValueOf(&unicode.Sentence_Terminal).Elem(), - "Sharada": reflect.ValueOf(&unicode.Sharada).Elem(), - "Shavian": reflect.ValueOf(&unicode.Shavian).Elem(), - "Siddham": reflect.ValueOf(&unicode.Siddham).Elem(), - "SignWriting": reflect.ValueOf(&unicode.SignWriting).Elem(), - "SimpleFold": reflect.ValueOf(unicode.SimpleFold), - "Sinhala": reflect.ValueOf(&unicode.Sinhala).Elem(), - "Sk": reflect.ValueOf(&unicode.Sk).Elem(), - "Sm": reflect.ValueOf(&unicode.Sm).Elem(), - "So": reflect.ValueOf(&unicode.So).Elem(), - "Soft_Dotted": reflect.ValueOf(&unicode.Soft_Dotted).Elem(), - "Sogdian": reflect.ValueOf(&unicode.Sogdian).Elem(), - "Sora_Sompeng": reflect.ValueOf(&unicode.Sora_Sompeng).Elem(), - "Soyombo": reflect.ValueOf(&unicode.Soyombo).Elem(), - "Space": reflect.ValueOf(&unicode.Space).Elem(), - "Sundanese": reflect.ValueOf(&unicode.Sundanese).Elem(), - "Syloti_Nagri": reflect.ValueOf(&unicode.Syloti_Nagri).Elem(), - "Symbol": reflect.ValueOf(&unicode.Symbol).Elem(), - "Syriac": reflect.ValueOf(&unicode.Syriac).Elem(), - "Tagalog": reflect.ValueOf(&unicode.Tagalog).Elem(), - "Tagbanwa": reflect.ValueOf(&unicode.Tagbanwa).Elem(), - "Tai_Le": reflect.ValueOf(&unicode.Tai_Le).Elem(), - "Tai_Tham": reflect.ValueOf(&unicode.Tai_Tham).Elem(), - "Tai_Viet": reflect.ValueOf(&unicode.Tai_Viet).Elem(), - "Takri": reflect.ValueOf(&unicode.Takri).Elem(), - "Tamil": reflect.ValueOf(&unicode.Tamil).Elem(), - "Tangut": reflect.ValueOf(&unicode.Tangut).Elem(), - "Telugu": reflect.ValueOf(&unicode.Telugu).Elem(), - "Terminal_Punctuation": reflect.ValueOf(&unicode.Terminal_Punctuation).Elem(), - "Thaana": reflect.ValueOf(&unicode.Thaana).Elem(), - "Thai": reflect.ValueOf(&unicode.Thai).Elem(), - "Tibetan": reflect.ValueOf(&unicode.Tibetan).Elem(), - "Tifinagh": reflect.ValueOf(&unicode.Tifinagh).Elem(), - "Tirhuta": reflect.ValueOf(&unicode.Tirhuta).Elem(), - "Title": reflect.ValueOf(&unicode.Title).Elem(), - "TitleCase": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "To": reflect.ValueOf(unicode.To), - "ToLower": reflect.ValueOf(unicode.ToLower), - "ToTitle": reflect.ValueOf(unicode.ToTitle), - "ToUpper": reflect.ValueOf(unicode.ToUpper), - "TurkishCase": reflect.ValueOf(&unicode.TurkishCase).Elem(), - "Ugaritic": reflect.ValueOf(&unicode.Ugaritic).Elem(), - "Unified_Ideograph": reflect.ValueOf(&unicode.Unified_Ideograph).Elem(), - "Upper": reflect.ValueOf(&unicode.Upper).Elem(), - "UpperCase": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "UpperLower": reflect.ValueOf(constant.MakeFromLiteral("1114112", token.INT, 0)), - "Vai": reflect.ValueOf(&unicode.Vai).Elem(), - "Variation_Selector": reflect.ValueOf(&unicode.Variation_Selector).Elem(), - "Version": reflect.ValueOf(constant.MakeFromLiteral("\"13.0.0\"", token.STRING, 0)), - "Wancho": reflect.ValueOf(&unicode.Wancho).Elem(), - "Warang_Citi": reflect.ValueOf(&unicode.Warang_Citi).Elem(), - "White_Space": reflect.ValueOf(&unicode.White_Space).Elem(), - "Yezidi": reflect.ValueOf(&unicode.Yezidi).Elem(), - "Yi": reflect.ValueOf(&unicode.Yi).Elem(), - "Z": reflect.ValueOf(&unicode.Z).Elem(), - "Zanabazar_Square": reflect.ValueOf(&unicode.Zanabazar_Square).Elem(), - "Zl": reflect.ValueOf(&unicode.Zl).Elem(), - "Zp": reflect.ValueOf(&unicode.Zp).Elem(), - "Zs": reflect.ValueOf(&unicode.Zs).Elem(), - - // type definitions - "CaseRange": reflect.ValueOf((*unicode.CaseRange)(nil)), - "Range16": reflect.ValueOf((*unicode.Range16)(nil)), - "Range32": reflect.ValueOf((*unicode.Range32)(nil)), - "RangeTable": reflect.ValueOf((*unicode.RangeTable)(nil)), - "SpecialCase": reflect.ValueOf((*unicode.SpecialCase)(nil)), - } -} diff --git a/stdlib/go1_17_unicode_utf16.go b/stdlib/go1_17_unicode_utf16.go deleted file mode 100644 index f113d5fa9..000000000 --- a/stdlib/go1_17_unicode_utf16.go +++ /dev/null @@ -1,22 +0,0 @@ -// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "reflect" - "unicode/utf16" -) - -func init() { - Symbols["unicode/utf16/utf16"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Decode": reflect.ValueOf(utf16.Decode), - "DecodeRune": reflect.ValueOf(utf16.DecodeRune), - "Encode": reflect.ValueOf(utf16.Encode), - "EncodeRune": reflect.ValueOf(utf16.EncodeRune), - "IsSurrogate": reflect.ValueOf(utf16.IsSurrogate), - } -} diff --git a/stdlib/go1_17_unicode_utf8.go b/stdlib/go1_17_unicode_utf8.go deleted file mode 100644 index 56d0f8e12..000000000 --- a/stdlib/go1_17_unicode_utf8.go +++ /dev/null @@ -1,37 +0,0 @@ -// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package stdlib - -import ( - "go/constant" - "go/token" - "reflect" - "unicode/utf8" -) - -func init() { - Symbols["unicode/utf8/utf8"] = map[string]reflect.Value{ - // function, constant and variable definitions - "DecodeLastRune": reflect.ValueOf(utf8.DecodeLastRune), - "DecodeLastRuneInString": reflect.ValueOf(utf8.DecodeLastRuneInString), - "DecodeRune": reflect.ValueOf(utf8.DecodeRune), - "DecodeRuneInString": reflect.ValueOf(utf8.DecodeRuneInString), - "EncodeRune": reflect.ValueOf(utf8.EncodeRune), - "FullRune": reflect.ValueOf(utf8.FullRune), - "FullRuneInString": reflect.ValueOf(utf8.FullRuneInString), - "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), - "RuneCount": reflect.ValueOf(utf8.RuneCount), - "RuneCountInString": reflect.ValueOf(utf8.RuneCountInString), - "RuneError": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "RuneLen": reflect.ValueOf(utf8.RuneLen), - "RuneSelf": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RuneStart": reflect.ValueOf(utf8.RuneStart), - "UTFMax": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Valid": reflect.ValueOf(utf8.Valid), - "ValidRune": reflect.ValueOf(utf8.ValidRune), - "ValidString": reflect.ValueOf(utf8.ValidString), - } -} diff --git a/stdlib/go1_18_archive_tar.go b/stdlib/go1_18_archive_tar.go new file mode 100644 index 000000000..e097be1b5 --- /dev/null +++ b/stdlib/go1_18_archive_tar.go @@ -0,0 +1,50 @@ +// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "archive/tar" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["archive/tar/tar"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrFieldTooLong": reflect.ValueOf(&tar.ErrFieldTooLong).Elem(), + "ErrHeader": reflect.ValueOf(&tar.ErrHeader).Elem(), + "ErrWriteAfterClose": reflect.ValueOf(&tar.ErrWriteAfterClose).Elem(), + "ErrWriteTooLong": reflect.ValueOf(&tar.ErrWriteTooLong).Elem(), + "FileInfoHeader": reflect.ValueOf(tar.FileInfoHeader), + "FormatGNU": reflect.ValueOf(tar.FormatGNU), + "FormatPAX": reflect.ValueOf(tar.FormatPAX), + "FormatUSTAR": reflect.ValueOf(tar.FormatUSTAR), + "FormatUnknown": reflect.ValueOf(tar.FormatUnknown), + "NewReader": reflect.ValueOf(tar.NewReader), + "NewWriter": reflect.ValueOf(tar.NewWriter), + "TypeBlock": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "TypeChar": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "TypeCont": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "TypeDir": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "TypeFifo": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "TypeGNULongLink": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "TypeGNULongName": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "TypeGNUSparse": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "TypeLink": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "TypeReg": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "TypeRegA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TypeSymlink": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "TypeXGlobalHeader": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "TypeXHeader": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + + // type definitions + "Format": reflect.ValueOf((*tar.Format)(nil)), + "Header": reflect.ValueOf((*tar.Header)(nil)), + "Reader": reflect.ValueOf((*tar.Reader)(nil)), + "Writer": reflect.ValueOf((*tar.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_archive_zip.go b/stdlib/go1_18_archive_zip.go new file mode 100644 index 000000000..6b825511e --- /dev/null +++ b/stdlib/go1_18_archive_zip.go @@ -0,0 +1,37 @@ +// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "archive/zip" + "reflect" +) + +func init() { + Symbols["archive/zip/zip"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Deflate": reflect.ValueOf(zip.Deflate), + "ErrAlgorithm": reflect.ValueOf(&zip.ErrAlgorithm).Elem(), + "ErrChecksum": reflect.ValueOf(&zip.ErrChecksum).Elem(), + "ErrFormat": reflect.ValueOf(&zip.ErrFormat).Elem(), + "FileInfoHeader": reflect.ValueOf(zip.FileInfoHeader), + "NewReader": reflect.ValueOf(zip.NewReader), + "NewWriter": reflect.ValueOf(zip.NewWriter), + "OpenReader": reflect.ValueOf(zip.OpenReader), + "RegisterCompressor": reflect.ValueOf(zip.RegisterCompressor), + "RegisterDecompressor": reflect.ValueOf(zip.RegisterDecompressor), + "Store": reflect.ValueOf(zip.Store), + + // type definitions + "Compressor": reflect.ValueOf((*zip.Compressor)(nil)), + "Decompressor": reflect.ValueOf((*zip.Decompressor)(nil)), + "File": reflect.ValueOf((*zip.File)(nil)), + "FileHeader": reflect.ValueOf((*zip.FileHeader)(nil)), + "ReadCloser": reflect.ValueOf((*zip.ReadCloser)(nil)), + "Reader": reflect.ValueOf((*zip.Reader)(nil)), + "Writer": reflect.ValueOf((*zip.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_bufio.go b/stdlib/go1_18_bufio.go new file mode 100644 index 000000000..021390233 --- /dev/null +++ b/stdlib/go1_18_bufio.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract bufio'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "bufio" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["bufio/bufio"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrAdvanceTooFar": reflect.ValueOf(&bufio.ErrAdvanceTooFar).Elem(), + "ErrBadReadCount": reflect.ValueOf(&bufio.ErrBadReadCount).Elem(), + "ErrBufferFull": reflect.ValueOf(&bufio.ErrBufferFull).Elem(), + "ErrFinalToken": reflect.ValueOf(&bufio.ErrFinalToken).Elem(), + "ErrInvalidUnreadByte": reflect.ValueOf(&bufio.ErrInvalidUnreadByte).Elem(), + "ErrInvalidUnreadRune": reflect.ValueOf(&bufio.ErrInvalidUnreadRune).Elem(), + "ErrNegativeAdvance": reflect.ValueOf(&bufio.ErrNegativeAdvance).Elem(), + "ErrNegativeCount": reflect.ValueOf(&bufio.ErrNegativeCount).Elem(), + "ErrTooLong": reflect.ValueOf(&bufio.ErrTooLong).Elem(), + "MaxScanTokenSize": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "NewReadWriter": reflect.ValueOf(bufio.NewReadWriter), + "NewReader": reflect.ValueOf(bufio.NewReader), + "NewReaderSize": reflect.ValueOf(bufio.NewReaderSize), + "NewScanner": reflect.ValueOf(bufio.NewScanner), + "NewWriter": reflect.ValueOf(bufio.NewWriter), + "NewWriterSize": reflect.ValueOf(bufio.NewWriterSize), + "ScanBytes": reflect.ValueOf(bufio.ScanBytes), + "ScanLines": reflect.ValueOf(bufio.ScanLines), + "ScanRunes": reflect.ValueOf(bufio.ScanRunes), + "ScanWords": reflect.ValueOf(bufio.ScanWords), + + // type definitions + "ReadWriter": reflect.ValueOf((*bufio.ReadWriter)(nil)), + "Reader": reflect.ValueOf((*bufio.Reader)(nil)), + "Scanner": reflect.ValueOf((*bufio.Scanner)(nil)), + "SplitFunc": reflect.ValueOf((*bufio.SplitFunc)(nil)), + "Writer": reflect.ValueOf((*bufio.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_bytes.go b/stdlib/go1_18_bytes.go new file mode 100644 index 000000000..6d75a6cdd --- /dev/null +++ b/stdlib/go1_18_bytes.go @@ -0,0 +1,76 @@ +// Code generated by 'yaegi extract bytes'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "bytes" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["bytes/bytes"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Compare": reflect.ValueOf(bytes.Compare), + "Contains": reflect.ValueOf(bytes.Contains), + "ContainsAny": reflect.ValueOf(bytes.ContainsAny), + "ContainsRune": reflect.ValueOf(bytes.ContainsRune), + "Count": reflect.ValueOf(bytes.Count), + "Cut": reflect.ValueOf(bytes.Cut), + "Equal": reflect.ValueOf(bytes.Equal), + "EqualFold": reflect.ValueOf(bytes.EqualFold), + "ErrTooLarge": reflect.ValueOf(&bytes.ErrTooLarge).Elem(), + "Fields": reflect.ValueOf(bytes.Fields), + "FieldsFunc": reflect.ValueOf(bytes.FieldsFunc), + "HasPrefix": reflect.ValueOf(bytes.HasPrefix), + "HasSuffix": reflect.ValueOf(bytes.HasSuffix), + "Index": reflect.ValueOf(bytes.Index), + "IndexAny": reflect.ValueOf(bytes.IndexAny), + "IndexByte": reflect.ValueOf(bytes.IndexByte), + "IndexFunc": reflect.ValueOf(bytes.IndexFunc), + "IndexRune": reflect.ValueOf(bytes.IndexRune), + "Join": reflect.ValueOf(bytes.Join), + "LastIndex": reflect.ValueOf(bytes.LastIndex), + "LastIndexAny": reflect.ValueOf(bytes.LastIndexAny), + "LastIndexByte": reflect.ValueOf(bytes.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(bytes.LastIndexFunc), + "Map": reflect.ValueOf(bytes.Map), + "MinRead": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NewBuffer": reflect.ValueOf(bytes.NewBuffer), + "NewBufferString": reflect.ValueOf(bytes.NewBufferString), + "NewReader": reflect.ValueOf(bytes.NewReader), + "Repeat": reflect.ValueOf(bytes.Repeat), + "Replace": reflect.ValueOf(bytes.Replace), + "ReplaceAll": reflect.ValueOf(bytes.ReplaceAll), + "Runes": reflect.ValueOf(bytes.Runes), + "Split": reflect.ValueOf(bytes.Split), + "SplitAfter": reflect.ValueOf(bytes.SplitAfter), + "SplitAfterN": reflect.ValueOf(bytes.SplitAfterN), + "SplitN": reflect.ValueOf(bytes.SplitN), + "Title": reflect.ValueOf(bytes.Title), + "ToLower": reflect.ValueOf(bytes.ToLower), + "ToLowerSpecial": reflect.ValueOf(bytes.ToLowerSpecial), + "ToTitle": reflect.ValueOf(bytes.ToTitle), + "ToTitleSpecial": reflect.ValueOf(bytes.ToTitleSpecial), + "ToUpper": reflect.ValueOf(bytes.ToUpper), + "ToUpperSpecial": reflect.ValueOf(bytes.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(bytes.ToValidUTF8), + "Trim": reflect.ValueOf(bytes.Trim), + "TrimFunc": reflect.ValueOf(bytes.TrimFunc), + "TrimLeft": reflect.ValueOf(bytes.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(bytes.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(bytes.TrimPrefix), + "TrimRight": reflect.ValueOf(bytes.TrimRight), + "TrimRightFunc": reflect.ValueOf(bytes.TrimRightFunc), + "TrimSpace": reflect.ValueOf(bytes.TrimSpace), + "TrimSuffix": reflect.ValueOf(bytes.TrimSuffix), + + // type definitions + "Buffer": reflect.ValueOf((*bytes.Buffer)(nil)), + "Reader": reflect.ValueOf((*bytes.Reader)(nil)), + } +} diff --git a/stdlib/go1_18_compress_bzip2.go b/stdlib/go1_18_compress_bzip2.go new file mode 100644 index 000000000..b62263fce --- /dev/null +++ b/stdlib/go1_18_compress_bzip2.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "compress/bzip2" + "reflect" +) + +func init() { + Symbols["compress/bzip2/bzip2"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewReader": reflect.ValueOf(bzip2.NewReader), + + // type definitions + "StructuralError": reflect.ValueOf((*bzip2.StructuralError)(nil)), + } +} diff --git a/stdlib/go1_18_compress_flate.go b/stdlib/go1_18_compress_flate.go new file mode 100644 index 000000000..34363fb6c --- /dev/null +++ b/stdlib/go1_18_compress_flate.go @@ -0,0 +1,66 @@ +// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "compress/flate" + "go/constant" + "go/token" + "io" + "reflect" +) + +func init() { + Symbols["compress/flate/flate"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "NewReader": reflect.ValueOf(flate.NewReader), + "NewReaderDict": reflect.ValueOf(flate.NewReaderDict), + "NewWriter": reflect.ValueOf(flate.NewWriter), + "NewWriterDict": reflect.ValueOf(flate.NewWriterDict), + "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + + // type definitions + "CorruptInputError": reflect.ValueOf((*flate.CorruptInputError)(nil)), + "InternalError": reflect.ValueOf((*flate.InternalError)(nil)), + "ReadError": reflect.ValueOf((*flate.ReadError)(nil)), + "Reader": reflect.ValueOf((*flate.Reader)(nil)), + "Resetter": reflect.ValueOf((*flate.Resetter)(nil)), + "WriteError": reflect.ValueOf((*flate.WriteError)(nil)), + "Writer": reflect.ValueOf((*flate.Writer)(nil)), + + // interface wrapper definitions + "_Reader": reflect.ValueOf((*_compress_flate_Reader)(nil)), + "_Resetter": reflect.ValueOf((*_compress_flate_Resetter)(nil)), + } +} + +// _compress_flate_Reader is an interface wrapper for Reader type +type _compress_flate_Reader struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WReadByte func() (byte, error) +} + +func (W _compress_flate_Reader) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _compress_flate_Reader) ReadByte() (byte, error) { + return W.WReadByte() +} + +// _compress_flate_Resetter is an interface wrapper for Resetter type +type _compress_flate_Resetter struct { + IValue interface{} + WReset func(r io.Reader, dict []byte) error +} + +func (W _compress_flate_Resetter) Reset(r io.Reader, dict []byte) error { + return W.WReset(r, dict) +} diff --git a/stdlib/go1_18_compress_gzip.go b/stdlib/go1_18_compress_gzip.go new file mode 100644 index 000000000..c696d6f27 --- /dev/null +++ b/stdlib/go1_18_compress_gzip.go @@ -0,0 +1,34 @@ +// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "compress/gzip" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["compress/gzip/gzip"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "ErrChecksum": reflect.ValueOf(&gzip.ErrChecksum).Elem(), + "ErrHeader": reflect.ValueOf(&gzip.ErrHeader).Elem(), + "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "NewReader": reflect.ValueOf(gzip.NewReader), + "NewWriter": reflect.ValueOf(gzip.NewWriter), + "NewWriterLevel": reflect.ValueOf(gzip.NewWriterLevel), + "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + + // type definitions + "Header": reflect.ValueOf((*gzip.Header)(nil)), + "Reader": reflect.ValueOf((*gzip.Reader)(nil)), + "Writer": reflect.ValueOf((*gzip.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_compress_lzw.go b/stdlib/go1_18_compress_lzw.go new file mode 100644 index 000000000..f02ef61be --- /dev/null +++ b/stdlib/go1_18_compress_lzw.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "compress/lzw" + "reflect" +) + +func init() { + Symbols["compress/lzw/lzw"] = map[string]reflect.Value{ + // function, constant and variable definitions + "LSB": reflect.ValueOf(lzw.LSB), + "MSB": reflect.ValueOf(lzw.MSB), + "NewReader": reflect.ValueOf(lzw.NewReader), + "NewWriter": reflect.ValueOf(lzw.NewWriter), + + // type definitions + "Order": reflect.ValueOf((*lzw.Order)(nil)), + "Reader": reflect.ValueOf((*lzw.Reader)(nil)), + "Writer": reflect.ValueOf((*lzw.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_compress_zlib.go b/stdlib/go1_18_compress_zlib.go new file mode 100644 index 000000000..cd768fa87 --- /dev/null +++ b/stdlib/go1_18_compress_zlib.go @@ -0,0 +1,50 @@ +// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "compress/zlib" + "go/constant" + "go/token" + "io" + "reflect" +) + +func init() { + Symbols["compress/zlib/zlib"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "ErrChecksum": reflect.ValueOf(&zlib.ErrChecksum).Elem(), + "ErrDictionary": reflect.ValueOf(&zlib.ErrDictionary).Elem(), + "ErrHeader": reflect.ValueOf(&zlib.ErrHeader).Elem(), + "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "NewReader": reflect.ValueOf(zlib.NewReader), + "NewReaderDict": reflect.ValueOf(zlib.NewReaderDict), + "NewWriter": reflect.ValueOf(zlib.NewWriter), + "NewWriterLevel": reflect.ValueOf(zlib.NewWriterLevel), + "NewWriterLevelDict": reflect.ValueOf(zlib.NewWriterLevelDict), + "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + + // type definitions + "Resetter": reflect.ValueOf((*zlib.Resetter)(nil)), + "Writer": reflect.ValueOf((*zlib.Writer)(nil)), + + // interface wrapper definitions + "_Resetter": reflect.ValueOf((*_compress_zlib_Resetter)(nil)), + } +} + +// _compress_zlib_Resetter is an interface wrapper for Resetter type +type _compress_zlib_Resetter struct { + IValue interface{} + WReset func(r io.Reader, dict []byte) error +} + +func (W _compress_zlib_Resetter) Reset(r io.Reader, dict []byte) error { + return W.WReset(r, dict) +} diff --git a/stdlib/go1_18_container_heap.go b/stdlib/go1_18_container_heap.go new file mode 100644 index 000000000..7ac3579e6 --- /dev/null +++ b/stdlib/go1_18_container_heap.go @@ -0,0 +1,54 @@ +// Code generated by 'yaegi extract container/heap'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "container/heap" + "reflect" +) + +func init() { + Symbols["container/heap/heap"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Fix": reflect.ValueOf(heap.Fix), + "Init": reflect.ValueOf(heap.Init), + "Pop": reflect.ValueOf(heap.Pop), + "Push": reflect.ValueOf(heap.Push), + "Remove": reflect.ValueOf(heap.Remove), + + // type definitions + "Interface": reflect.ValueOf((*heap.Interface)(nil)), + + // interface wrapper definitions + "_Interface": reflect.ValueOf((*_container_heap_Interface)(nil)), + } +} + +// _container_heap_Interface is an interface wrapper for Interface type +type _container_heap_Interface struct { + IValue interface{} + WLen func() int + WLess func(i int, j int) bool + WPop func() any + WPush func(x any) + WSwap func(i int, j int) +} + +func (W _container_heap_Interface) Len() int { + return W.WLen() +} +func (W _container_heap_Interface) Less(i int, j int) bool { + return W.WLess(i, j) +} +func (W _container_heap_Interface) Pop() any { + return W.WPop() +} +func (W _container_heap_Interface) Push(x any) { + W.WPush(x) +} +func (W _container_heap_Interface) Swap(i int, j int) { + W.WSwap(i, j) +} diff --git a/stdlib/go1_18_container_list.go b/stdlib/go1_18_container_list.go new file mode 100644 index 000000000..bd351b00d --- /dev/null +++ b/stdlib/go1_18_container_list.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract container/list'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "container/list" + "reflect" +) + +func init() { + Symbols["container/list/list"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(list.New), + + // type definitions + "Element": reflect.ValueOf((*list.Element)(nil)), + "List": reflect.ValueOf((*list.List)(nil)), + } +} diff --git a/stdlib/go1_18_container_ring.go b/stdlib/go1_18_container_ring.go new file mode 100644 index 000000000..3d4523efc --- /dev/null +++ b/stdlib/go1_18_container_ring.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract container/ring'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "container/ring" + "reflect" +) + +func init() { + Symbols["container/ring/ring"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(ring.New), + + // type definitions + "Ring": reflect.ValueOf((*ring.Ring)(nil)), + } +} diff --git a/stdlib/go1_18_context.go b/stdlib/go1_18_context.go new file mode 100644 index 000000000..c31349664 --- /dev/null +++ b/stdlib/go1_18_context.go @@ -0,0 +1,55 @@ +// Code generated by 'yaegi extract context'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "context" + "reflect" + "time" +) + +func init() { + Symbols["context/context"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Background": reflect.ValueOf(context.Background), + "Canceled": reflect.ValueOf(&context.Canceled).Elem(), + "DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(), + "TODO": reflect.ValueOf(context.TODO), + "WithCancel": reflect.ValueOf(context.WithCancel), + "WithDeadline": reflect.ValueOf(context.WithDeadline), + "WithTimeout": reflect.ValueOf(context.WithTimeout), + "WithValue": reflect.ValueOf(context.WithValue), + + // type definitions + "CancelFunc": reflect.ValueOf((*context.CancelFunc)(nil)), + "Context": reflect.ValueOf((*context.Context)(nil)), + + // interface wrapper definitions + "_Context": reflect.ValueOf((*_context_Context)(nil)), + } +} + +// _context_Context is an interface wrapper for Context type +type _context_Context struct { + IValue interface{} + WDeadline func() (deadline time.Time, ok bool) + WDone func() <-chan struct{} + WErr func() error + WValue func(key any) any +} + +func (W _context_Context) Deadline() (deadline time.Time, ok bool) { + return W.WDeadline() +} +func (W _context_Context) Done() <-chan struct{} { + return W.WDone() +} +func (W _context_Context) Err() error { + return W.WErr() +} +func (W _context_Context) Value(key any) any { + return W.WValue(key) +} diff --git a/stdlib/go1_18_crypto.go b/stdlib/go1_18_crypto.go new file mode 100644 index 000000000..ce27a3f16 --- /dev/null +++ b/stdlib/go1_18_crypto.go @@ -0,0 +1,108 @@ +// Code generated by 'yaegi extract crypto'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto" + "io" + "reflect" +) + +func init() { + Symbols["crypto/crypto"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BLAKE2b_256": reflect.ValueOf(crypto.BLAKE2b_256), + "BLAKE2b_384": reflect.ValueOf(crypto.BLAKE2b_384), + "BLAKE2b_512": reflect.ValueOf(crypto.BLAKE2b_512), + "BLAKE2s_256": reflect.ValueOf(crypto.BLAKE2s_256), + "MD4": reflect.ValueOf(crypto.MD4), + "MD5": reflect.ValueOf(crypto.MD5), + "MD5SHA1": reflect.ValueOf(crypto.MD5SHA1), + "RIPEMD160": reflect.ValueOf(crypto.RIPEMD160), + "RegisterHash": reflect.ValueOf(crypto.RegisterHash), + "SHA1": reflect.ValueOf(crypto.SHA1), + "SHA224": reflect.ValueOf(crypto.SHA224), + "SHA256": reflect.ValueOf(crypto.SHA256), + "SHA384": reflect.ValueOf(crypto.SHA384), + "SHA3_224": reflect.ValueOf(crypto.SHA3_224), + "SHA3_256": reflect.ValueOf(crypto.SHA3_256), + "SHA3_384": reflect.ValueOf(crypto.SHA3_384), + "SHA3_512": reflect.ValueOf(crypto.SHA3_512), + "SHA512": reflect.ValueOf(crypto.SHA512), + "SHA512_224": reflect.ValueOf(crypto.SHA512_224), + "SHA512_256": reflect.ValueOf(crypto.SHA512_256), + + // type definitions + "Decrypter": reflect.ValueOf((*crypto.Decrypter)(nil)), + "DecrypterOpts": reflect.ValueOf((*crypto.DecrypterOpts)(nil)), + "Hash": reflect.ValueOf((*crypto.Hash)(nil)), + "PrivateKey": reflect.ValueOf((*crypto.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*crypto.PublicKey)(nil)), + "Signer": reflect.ValueOf((*crypto.Signer)(nil)), + "SignerOpts": reflect.ValueOf((*crypto.SignerOpts)(nil)), + + // interface wrapper definitions + "_Decrypter": reflect.ValueOf((*_crypto_Decrypter)(nil)), + "_DecrypterOpts": reflect.ValueOf((*_crypto_DecrypterOpts)(nil)), + "_PrivateKey": reflect.ValueOf((*_crypto_PrivateKey)(nil)), + "_PublicKey": reflect.ValueOf((*_crypto_PublicKey)(nil)), + "_Signer": reflect.ValueOf((*_crypto_Signer)(nil)), + "_SignerOpts": reflect.ValueOf((*_crypto_SignerOpts)(nil)), + } +} + +// _crypto_Decrypter is an interface wrapper for Decrypter type +type _crypto_Decrypter struct { + IValue interface{} + WDecrypt func(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) + WPublic func() crypto.PublicKey +} + +func (W _crypto_Decrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) { + return W.WDecrypt(rand, msg, opts) +} +func (W _crypto_Decrypter) Public() crypto.PublicKey { + return W.WPublic() +} + +// _crypto_DecrypterOpts is an interface wrapper for DecrypterOpts type +type _crypto_DecrypterOpts struct { + IValue interface{} +} + +// _crypto_PrivateKey is an interface wrapper for PrivateKey type +type _crypto_PrivateKey struct { + IValue interface{} +} + +// _crypto_PublicKey is an interface wrapper for PublicKey type +type _crypto_PublicKey struct { + IValue interface{} +} + +// _crypto_Signer is an interface wrapper for Signer type +type _crypto_Signer struct { + IValue interface{} + WPublic func() crypto.PublicKey + WSign func(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) +} + +func (W _crypto_Signer) Public() crypto.PublicKey { + return W.WPublic() +} +func (W _crypto_Signer) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) { + return W.WSign(rand, digest, opts) +} + +// _crypto_SignerOpts is an interface wrapper for SignerOpts type +type _crypto_SignerOpts struct { + IValue interface{} + WHashFunc func() crypto.Hash +} + +func (W _crypto_SignerOpts) HashFunc() crypto.Hash { + return W.WHashFunc() +} diff --git a/stdlib/go1_18_crypto_aes.go b/stdlib/go1_18_crypto_aes.go new file mode 100644 index 000000000..ad4b2766a --- /dev/null +++ b/stdlib/go1_18_crypto_aes.go @@ -0,0 +1,24 @@ +// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/aes" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/aes/aes"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NewCipher": reflect.ValueOf(aes.NewCipher), + + // type definitions + "KeySizeError": reflect.ValueOf((*aes.KeySizeError)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_cipher.go b/stdlib/go1_18_crypto_cipher.go new file mode 100644 index 000000000..47db633bf --- /dev/null +++ b/stdlib/go1_18_crypto_cipher.go @@ -0,0 +1,104 @@ +// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/cipher" + "reflect" +) + +func init() { + Symbols["crypto/cipher/cipher"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewCBCDecrypter": reflect.ValueOf(cipher.NewCBCDecrypter), + "NewCBCEncrypter": reflect.ValueOf(cipher.NewCBCEncrypter), + "NewCFBDecrypter": reflect.ValueOf(cipher.NewCFBDecrypter), + "NewCFBEncrypter": reflect.ValueOf(cipher.NewCFBEncrypter), + "NewCTR": reflect.ValueOf(cipher.NewCTR), + "NewGCM": reflect.ValueOf(cipher.NewGCM), + "NewGCMWithNonceSize": reflect.ValueOf(cipher.NewGCMWithNonceSize), + "NewGCMWithTagSize": reflect.ValueOf(cipher.NewGCMWithTagSize), + "NewOFB": reflect.ValueOf(cipher.NewOFB), + + // type definitions + "AEAD": reflect.ValueOf((*cipher.AEAD)(nil)), + "Block": reflect.ValueOf((*cipher.Block)(nil)), + "BlockMode": reflect.ValueOf((*cipher.BlockMode)(nil)), + "Stream": reflect.ValueOf((*cipher.Stream)(nil)), + "StreamReader": reflect.ValueOf((*cipher.StreamReader)(nil)), + "StreamWriter": reflect.ValueOf((*cipher.StreamWriter)(nil)), + + // interface wrapper definitions + "_AEAD": reflect.ValueOf((*_crypto_cipher_AEAD)(nil)), + "_Block": reflect.ValueOf((*_crypto_cipher_Block)(nil)), + "_BlockMode": reflect.ValueOf((*_crypto_cipher_BlockMode)(nil)), + "_Stream": reflect.ValueOf((*_crypto_cipher_Stream)(nil)), + } +} + +// _crypto_cipher_AEAD is an interface wrapper for AEAD type +type _crypto_cipher_AEAD struct { + IValue interface{} + WNonceSize func() int + WOpen func(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) + WOverhead func() int + WSeal func(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte +} + +func (W _crypto_cipher_AEAD) NonceSize() int { + return W.WNonceSize() +} +func (W _crypto_cipher_AEAD) Open(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) { + return W.WOpen(dst, nonce, ciphertext, additionalData) +} +func (W _crypto_cipher_AEAD) Overhead() int { + return W.WOverhead() +} +func (W _crypto_cipher_AEAD) Seal(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte { + return W.WSeal(dst, nonce, plaintext, additionalData) +} + +// _crypto_cipher_Block is an interface wrapper for Block type +type _crypto_cipher_Block struct { + IValue interface{} + WBlockSize func() int + WDecrypt func(dst []byte, src []byte) + WEncrypt func(dst []byte, src []byte) +} + +func (W _crypto_cipher_Block) BlockSize() int { + return W.WBlockSize() +} +func (W _crypto_cipher_Block) Decrypt(dst []byte, src []byte) { + W.WDecrypt(dst, src) +} +func (W _crypto_cipher_Block) Encrypt(dst []byte, src []byte) { + W.WEncrypt(dst, src) +} + +// _crypto_cipher_BlockMode is an interface wrapper for BlockMode type +type _crypto_cipher_BlockMode struct { + IValue interface{} + WBlockSize func() int + WCryptBlocks func(dst []byte, src []byte) +} + +func (W _crypto_cipher_BlockMode) BlockSize() int { + return W.WBlockSize() +} +func (W _crypto_cipher_BlockMode) CryptBlocks(dst []byte, src []byte) { + W.WCryptBlocks(dst, src) +} + +// _crypto_cipher_Stream is an interface wrapper for Stream type +type _crypto_cipher_Stream struct { + IValue interface{} + WXORKeyStream func(dst []byte, src []byte) +} + +func (W _crypto_cipher_Stream) XORKeyStream(dst []byte, src []byte) { + W.WXORKeyStream(dst, src) +} diff --git a/stdlib/go1_18_crypto_des.go b/stdlib/go1_18_crypto_des.go new file mode 100644 index 000000000..37c5a6b97 --- /dev/null +++ b/stdlib/go1_18_crypto_des.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/des" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/des/des"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NewCipher": reflect.ValueOf(des.NewCipher), + "NewTripleDESCipher": reflect.ValueOf(des.NewTripleDESCipher), + + // type definitions + "KeySizeError": reflect.ValueOf((*des.KeySizeError)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_dsa.go b/stdlib/go1_18_crypto_dsa.go new file mode 100644 index 000000000..fa0221435 --- /dev/null +++ b/stdlib/go1_18_crypto_dsa.go @@ -0,0 +1,32 @@ +// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/dsa" + "reflect" +) + +func init() { + Symbols["crypto/dsa/dsa"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrInvalidPublicKey": reflect.ValueOf(&dsa.ErrInvalidPublicKey).Elem(), + "GenerateKey": reflect.ValueOf(dsa.GenerateKey), + "GenerateParameters": reflect.ValueOf(dsa.GenerateParameters), + "L1024N160": reflect.ValueOf(dsa.L1024N160), + "L2048N224": reflect.ValueOf(dsa.L2048N224), + "L2048N256": reflect.ValueOf(dsa.L2048N256), + "L3072N256": reflect.ValueOf(dsa.L3072N256), + "Sign": reflect.ValueOf(dsa.Sign), + "Verify": reflect.ValueOf(dsa.Verify), + + // type definitions + "ParameterSizes": reflect.ValueOf((*dsa.ParameterSizes)(nil)), + "Parameters": reflect.ValueOf((*dsa.Parameters)(nil)), + "PrivateKey": reflect.ValueOf((*dsa.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*dsa.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_ecdsa.go b/stdlib/go1_18_crypto_ecdsa.go new file mode 100644 index 000000000..76ef4eabb --- /dev/null +++ b/stdlib/go1_18_crypto_ecdsa.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/ecdsa" + "reflect" +) + +func init() { + Symbols["crypto/ecdsa/ecdsa"] = map[string]reflect.Value{ + // function, constant and variable definitions + "GenerateKey": reflect.ValueOf(ecdsa.GenerateKey), + "Sign": reflect.ValueOf(ecdsa.Sign), + "SignASN1": reflect.ValueOf(ecdsa.SignASN1), + "Verify": reflect.ValueOf(ecdsa.Verify), + "VerifyASN1": reflect.ValueOf(ecdsa.VerifyASN1), + + // type definitions + "PrivateKey": reflect.ValueOf((*ecdsa.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*ecdsa.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_ed25519.go b/stdlib/go1_18_crypto_ed25519.go new file mode 100644 index 000000000..e198858bb --- /dev/null +++ b/stdlib/go1_18_crypto_ed25519.go @@ -0,0 +1,31 @@ +// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/ed25519" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/ed25519/ed25519"] = map[string]reflect.Value{ + // function, constant and variable definitions + "GenerateKey": reflect.ValueOf(ed25519.GenerateKey), + "NewKeyFromSeed": reflect.ValueOf(ed25519.NewKeyFromSeed), + "PrivateKeySize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PublicKeySize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SeedSize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Sign": reflect.ValueOf(ed25519.Sign), + "SignatureSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Verify": reflect.ValueOf(ed25519.Verify), + + // type definitions + "PrivateKey": reflect.ValueOf((*ed25519.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*ed25519.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_elliptic.go b/stdlib/go1_18_crypto_elliptic.go new file mode 100644 index 000000000..987b302e1 --- /dev/null +++ b/stdlib/go1_18_crypto_elliptic.go @@ -0,0 +1,64 @@ +// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/elliptic" + "math/big" + "reflect" +) + +func init() { + Symbols["crypto/elliptic/elliptic"] = map[string]reflect.Value{ + // function, constant and variable definitions + "GenerateKey": reflect.ValueOf(elliptic.GenerateKey), + "Marshal": reflect.ValueOf(elliptic.Marshal), + "MarshalCompressed": reflect.ValueOf(elliptic.MarshalCompressed), + "P224": reflect.ValueOf(elliptic.P224), + "P256": reflect.ValueOf(elliptic.P256), + "P384": reflect.ValueOf(elliptic.P384), + "P521": reflect.ValueOf(elliptic.P521), + "Unmarshal": reflect.ValueOf(elliptic.Unmarshal), + "UnmarshalCompressed": reflect.ValueOf(elliptic.UnmarshalCompressed), + + // type definitions + "Curve": reflect.ValueOf((*elliptic.Curve)(nil)), + "CurveParams": reflect.ValueOf((*elliptic.CurveParams)(nil)), + + // interface wrapper definitions + "_Curve": reflect.ValueOf((*_crypto_elliptic_Curve)(nil)), + } +} + +// _crypto_elliptic_Curve is an interface wrapper for Curve type +type _crypto_elliptic_Curve struct { + IValue interface{} + WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) + WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) + WIsOnCurve func(x *big.Int, y *big.Int) bool + WParams func() *elliptic.CurveParams + WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int) + WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) +} + +func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) { + return W.WAdd(x1, y1, x2, y2) +} +func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) { + return W.WDouble(x1, y1) +} +func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { + return W.WIsOnCurve(x, y) +} +func (W _crypto_elliptic_Curve) Params() *elliptic.CurveParams { + return W.WParams() +} +func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) { + return W.WScalarBaseMult(k) +} +func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) { + return W.WScalarMult(x1, y1, k) +} diff --git a/stdlib/go1_18_crypto_hmac.go b/stdlib/go1_18_crypto_hmac.go new file mode 100644 index 000000000..755d9ed40 --- /dev/null +++ b/stdlib/go1_18_crypto_hmac.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/hmac" + "reflect" +) + +func init() { + Symbols["crypto/hmac/hmac"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Equal": reflect.ValueOf(hmac.Equal), + "New": reflect.ValueOf(hmac.New), + } +} diff --git a/stdlib/go1_18_crypto_md5.go b/stdlib/go1_18_crypto_md5.go new file mode 100644 index 000000000..d2fbd82df --- /dev/null +++ b/stdlib/go1_18_crypto_md5.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/md5" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/md5/md5"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "New": reflect.ValueOf(md5.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Sum": reflect.ValueOf(md5.Sum), + } +} diff --git a/stdlib/go1_18_crypto_rand.go b/stdlib/go1_18_crypto_rand.go new file mode 100644 index 000000000..1c9095e8c --- /dev/null +++ b/stdlib/go1_18_crypto_rand.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/rand" + "reflect" +) + +func init() { + Symbols["crypto/rand/rand"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Int": reflect.ValueOf(rand.Int), + "Prime": reflect.ValueOf(rand.Prime), + "Read": reflect.ValueOf(rand.Read), + "Reader": reflect.ValueOf(&rand.Reader).Elem(), + } +} diff --git a/stdlib/go1_18_crypto_rc4.go b/stdlib/go1_18_crypto_rc4.go new file mode 100644 index 000000000..e933eaa0c --- /dev/null +++ b/stdlib/go1_18_crypto_rc4.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/rc4" + "reflect" +) + +func init() { + Symbols["crypto/rc4/rc4"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewCipher": reflect.ValueOf(rc4.NewCipher), + + // type definitions + "Cipher": reflect.ValueOf((*rc4.Cipher)(nil)), + "KeySizeError": reflect.ValueOf((*rc4.KeySizeError)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_rsa.go b/stdlib/go1_18_crypto_rsa.go new file mode 100644 index 000000000..a3ea8427d --- /dev/null +++ b/stdlib/go1_18_crypto_rsa.go @@ -0,0 +1,44 @@ +// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/rsa" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/rsa/rsa"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DecryptOAEP": reflect.ValueOf(rsa.DecryptOAEP), + "DecryptPKCS1v15": reflect.ValueOf(rsa.DecryptPKCS1v15), + "DecryptPKCS1v15SessionKey": reflect.ValueOf(rsa.DecryptPKCS1v15SessionKey), + "EncryptOAEP": reflect.ValueOf(rsa.EncryptOAEP), + "EncryptPKCS1v15": reflect.ValueOf(rsa.EncryptPKCS1v15), + "ErrDecryption": reflect.ValueOf(&rsa.ErrDecryption).Elem(), + "ErrMessageTooLong": reflect.ValueOf(&rsa.ErrMessageTooLong).Elem(), + "ErrVerification": reflect.ValueOf(&rsa.ErrVerification).Elem(), + "GenerateKey": reflect.ValueOf(rsa.GenerateKey), + "GenerateMultiPrimeKey": reflect.ValueOf(rsa.GenerateMultiPrimeKey), + "PSSSaltLengthAuto": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PSSSaltLengthEqualsHash": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "SignPKCS1v15": reflect.ValueOf(rsa.SignPKCS1v15), + "SignPSS": reflect.ValueOf(rsa.SignPSS), + "VerifyPKCS1v15": reflect.ValueOf(rsa.VerifyPKCS1v15), + "VerifyPSS": reflect.ValueOf(rsa.VerifyPSS), + + // type definitions + "CRTValue": reflect.ValueOf((*rsa.CRTValue)(nil)), + "OAEPOptions": reflect.ValueOf((*rsa.OAEPOptions)(nil)), + "PKCS1v15DecryptOptions": reflect.ValueOf((*rsa.PKCS1v15DecryptOptions)(nil)), + "PSSOptions": reflect.ValueOf((*rsa.PSSOptions)(nil)), + "PrecomputedValues": reflect.ValueOf((*rsa.PrecomputedValues)(nil)), + "PrivateKey": reflect.ValueOf((*rsa.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*rsa.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_sha1.go b/stdlib/go1_18_crypto_sha1.go new file mode 100644 index 000000000..980ae1c3b --- /dev/null +++ b/stdlib/go1_18_crypto_sha1.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/sha1" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/sha1/sha1"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "New": reflect.ValueOf(sha1.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "Sum": reflect.ValueOf(sha1.Sum), + } +} diff --git a/stdlib/go1_18_crypto_sha256.go b/stdlib/go1_18_crypto_sha256.go new file mode 100644 index 000000000..9bb4abb5c --- /dev/null +++ b/stdlib/go1_18_crypto_sha256.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/sha256" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/sha256/sha256"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "New": reflect.ValueOf(sha256.New), + "New224": reflect.ValueOf(sha256.New224), + "Size": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "Sum224": reflect.ValueOf(sha256.Sum224), + "Sum256": reflect.ValueOf(sha256.Sum256), + } +} diff --git a/stdlib/go1_18_crypto_sha512.go b/stdlib/go1_18_crypto_sha512.go new file mode 100644 index 000000000..0f2b5f964 --- /dev/null +++ b/stdlib/go1_18_crypto_sha512.go @@ -0,0 +1,32 @@ +// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/sha512" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/sha512/sha512"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "New": reflect.ValueOf(sha512.New), + "New384": reflect.ValueOf(sha512.New384), + "New512_224": reflect.ValueOf(sha512.New512_224), + "New512_256": reflect.ValueOf(sha512.New512_256), + "Size": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "Size256": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Size384": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "Sum384": reflect.ValueOf(sha512.Sum384), + "Sum512": reflect.ValueOf(sha512.Sum512), + "Sum512_224": reflect.ValueOf(sha512.Sum512_224), + "Sum512_256": reflect.ValueOf(sha512.Sum512_256), + } +} diff --git a/stdlib/go1_18_crypto_subtle.go b/stdlib/go1_18_crypto_subtle.go new file mode 100644 index 000000000..ff4f83bff --- /dev/null +++ b/stdlib/go1_18_crypto_subtle.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/subtle" + "reflect" +) + +func init() { + Symbols["crypto/subtle/subtle"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ConstantTimeByteEq": reflect.ValueOf(subtle.ConstantTimeByteEq), + "ConstantTimeCompare": reflect.ValueOf(subtle.ConstantTimeCompare), + "ConstantTimeCopy": reflect.ValueOf(subtle.ConstantTimeCopy), + "ConstantTimeEq": reflect.ValueOf(subtle.ConstantTimeEq), + "ConstantTimeLessOrEq": reflect.ValueOf(subtle.ConstantTimeLessOrEq), + "ConstantTimeSelect": reflect.ValueOf(subtle.ConstantTimeSelect), + } +} diff --git a/stdlib/go1_18_crypto_tls.go b/stdlib/go1_18_crypto_tls.go new file mode 100644 index 000000000..94ab1d349 --- /dev/null +++ b/stdlib/go1_18_crypto_tls.go @@ -0,0 +1,122 @@ +// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/tls" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/tls/tls"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CipherSuiteName": reflect.ValueOf(tls.CipherSuiteName), + "CipherSuites": reflect.ValueOf(tls.CipherSuites), + "Client": reflect.ValueOf(tls.Client), + "CurveP256": reflect.ValueOf(tls.CurveP256), + "CurveP384": reflect.ValueOf(tls.CurveP384), + "CurveP521": reflect.ValueOf(tls.CurveP521), + "Dial": reflect.ValueOf(tls.Dial), + "DialWithDialer": reflect.ValueOf(tls.DialWithDialer), + "ECDSAWithP256AndSHA256": reflect.ValueOf(tls.ECDSAWithP256AndSHA256), + "ECDSAWithP384AndSHA384": reflect.ValueOf(tls.ECDSAWithP384AndSHA384), + "ECDSAWithP521AndSHA512": reflect.ValueOf(tls.ECDSAWithP521AndSHA512), + "ECDSAWithSHA1": reflect.ValueOf(tls.ECDSAWithSHA1), + "Ed25519": reflect.ValueOf(tls.Ed25519), + "InsecureCipherSuites": reflect.ValueOf(tls.InsecureCipherSuites), + "Listen": reflect.ValueOf(tls.Listen), + "LoadX509KeyPair": reflect.ValueOf(tls.LoadX509KeyPair), + "NewLRUClientSessionCache": reflect.ValueOf(tls.NewLRUClientSessionCache), + "NewListener": reflect.ValueOf(tls.NewListener), + "NoClientCert": reflect.ValueOf(tls.NoClientCert), + "PKCS1WithSHA1": reflect.ValueOf(tls.PKCS1WithSHA1), + "PKCS1WithSHA256": reflect.ValueOf(tls.PKCS1WithSHA256), + "PKCS1WithSHA384": reflect.ValueOf(tls.PKCS1WithSHA384), + "PKCS1WithSHA512": reflect.ValueOf(tls.PKCS1WithSHA512), + "PSSWithSHA256": reflect.ValueOf(tls.PSSWithSHA256), + "PSSWithSHA384": reflect.ValueOf(tls.PSSWithSHA384), + "PSSWithSHA512": reflect.ValueOf(tls.PSSWithSHA512), + "RenegotiateFreelyAsClient": reflect.ValueOf(tls.RenegotiateFreelyAsClient), + "RenegotiateNever": reflect.ValueOf(tls.RenegotiateNever), + "RenegotiateOnceAsClient": reflect.ValueOf(tls.RenegotiateOnceAsClient), + "RequestClientCert": reflect.ValueOf(tls.RequestClientCert), + "RequireAndVerifyClientCert": reflect.ValueOf(tls.RequireAndVerifyClientCert), + "RequireAnyClientCert": reflect.ValueOf(tls.RequireAnyClientCert), + "Server": reflect.ValueOf(tls.Server), + "TLS_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_AES_128_GCM_SHA256), + "TLS_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_AES_256_GCM_SHA384), + "TLS_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_CHACHA20_POLY1305_SHA256), + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA), + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256), + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256), + "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA), + "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384), + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305), + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256), + "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA), + "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA), + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA), + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256), + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256), + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA), + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384), + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305), + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256), + "TLS_ECDHE_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA), + "TLS_FALLBACK_SCSV": reflect.ValueOf(tls.TLS_FALLBACK_SCSV), + "TLS_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA), + "TLS_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA), + "TLS_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA256), + "TLS_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_GCM_SHA256), + "TLS_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_CBC_SHA), + "TLS_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_GCM_SHA384), + "TLS_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_RC4_128_SHA), + "VerifyClientCertIfGiven": reflect.ValueOf(tls.VerifyClientCertIfGiven), + "VersionSSL30": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "VersionTLS10": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "VersionTLS11": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "VersionTLS12": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "VersionTLS13": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "X25519": reflect.ValueOf(tls.X25519), + "X509KeyPair": reflect.ValueOf(tls.X509KeyPair), + + // type definitions + "Certificate": reflect.ValueOf((*tls.Certificate)(nil)), + "CertificateRequestInfo": reflect.ValueOf((*tls.CertificateRequestInfo)(nil)), + "CipherSuite": reflect.ValueOf((*tls.CipherSuite)(nil)), + "ClientAuthType": reflect.ValueOf((*tls.ClientAuthType)(nil)), + "ClientHelloInfo": reflect.ValueOf((*tls.ClientHelloInfo)(nil)), + "ClientSessionCache": reflect.ValueOf((*tls.ClientSessionCache)(nil)), + "ClientSessionState": reflect.ValueOf((*tls.ClientSessionState)(nil)), + "Config": reflect.ValueOf((*tls.Config)(nil)), + "Conn": reflect.ValueOf((*tls.Conn)(nil)), + "ConnectionState": reflect.ValueOf((*tls.ConnectionState)(nil)), + "CurveID": reflect.ValueOf((*tls.CurveID)(nil)), + "Dialer": reflect.ValueOf((*tls.Dialer)(nil)), + "RecordHeaderError": reflect.ValueOf((*tls.RecordHeaderError)(nil)), + "RenegotiationSupport": reflect.ValueOf((*tls.RenegotiationSupport)(nil)), + "SignatureScheme": reflect.ValueOf((*tls.SignatureScheme)(nil)), + + // interface wrapper definitions + "_ClientSessionCache": reflect.ValueOf((*_crypto_tls_ClientSessionCache)(nil)), + } +} + +// _crypto_tls_ClientSessionCache is an interface wrapper for ClientSessionCache type +type _crypto_tls_ClientSessionCache struct { + IValue interface{} + WGet func(sessionKey string) (session *tls.ClientSessionState, ok bool) + WPut func(sessionKey string, cs *tls.ClientSessionState) +} + +func (W _crypto_tls_ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessionState, ok bool) { + return W.WGet(sessionKey) +} +func (W _crypto_tls_ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) { + W.WPut(sessionKey, cs) +} diff --git a/stdlib/go1_18_crypto_x509.go b/stdlib/go1_18_crypto_x509.go new file mode 100644 index 000000000..b6bc805d8 --- /dev/null +++ b/stdlib/go1_18_crypto_x509.go @@ -0,0 +1,122 @@ +// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/x509" + "reflect" +) + +func init() { + Symbols["crypto/x509/x509"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CANotAuthorizedForExtKeyUsage": reflect.ValueOf(x509.CANotAuthorizedForExtKeyUsage), + "CANotAuthorizedForThisName": reflect.ValueOf(x509.CANotAuthorizedForThisName), + "CreateCertificate": reflect.ValueOf(x509.CreateCertificate), + "CreateCertificateRequest": reflect.ValueOf(x509.CreateCertificateRequest), + "CreateRevocationList": reflect.ValueOf(x509.CreateRevocationList), + "DSA": reflect.ValueOf(x509.DSA), + "DSAWithSHA1": reflect.ValueOf(x509.DSAWithSHA1), + "DSAWithSHA256": reflect.ValueOf(x509.DSAWithSHA256), + "DecryptPEMBlock": reflect.ValueOf(x509.DecryptPEMBlock), + "ECDSA": reflect.ValueOf(x509.ECDSA), + "ECDSAWithSHA1": reflect.ValueOf(x509.ECDSAWithSHA1), + "ECDSAWithSHA256": reflect.ValueOf(x509.ECDSAWithSHA256), + "ECDSAWithSHA384": reflect.ValueOf(x509.ECDSAWithSHA384), + "ECDSAWithSHA512": reflect.ValueOf(x509.ECDSAWithSHA512), + "Ed25519": reflect.ValueOf(x509.Ed25519), + "EncryptPEMBlock": reflect.ValueOf(x509.EncryptPEMBlock), + "ErrUnsupportedAlgorithm": reflect.ValueOf(&x509.ErrUnsupportedAlgorithm).Elem(), + "Expired": reflect.ValueOf(x509.Expired), + "ExtKeyUsageAny": reflect.ValueOf(x509.ExtKeyUsageAny), + "ExtKeyUsageClientAuth": reflect.ValueOf(x509.ExtKeyUsageClientAuth), + "ExtKeyUsageCodeSigning": reflect.ValueOf(x509.ExtKeyUsageCodeSigning), + "ExtKeyUsageEmailProtection": reflect.ValueOf(x509.ExtKeyUsageEmailProtection), + "ExtKeyUsageIPSECEndSystem": reflect.ValueOf(x509.ExtKeyUsageIPSECEndSystem), + "ExtKeyUsageIPSECTunnel": reflect.ValueOf(x509.ExtKeyUsageIPSECTunnel), + "ExtKeyUsageIPSECUser": reflect.ValueOf(x509.ExtKeyUsageIPSECUser), + "ExtKeyUsageMicrosoftCommercialCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftCommercialCodeSigning), + "ExtKeyUsageMicrosoftKernelCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftKernelCodeSigning), + "ExtKeyUsageMicrosoftServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageMicrosoftServerGatedCrypto), + "ExtKeyUsageNetscapeServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageNetscapeServerGatedCrypto), + "ExtKeyUsageOCSPSigning": reflect.ValueOf(x509.ExtKeyUsageOCSPSigning), + "ExtKeyUsageServerAuth": reflect.ValueOf(x509.ExtKeyUsageServerAuth), + "ExtKeyUsageTimeStamping": reflect.ValueOf(x509.ExtKeyUsageTimeStamping), + "IncompatibleUsage": reflect.ValueOf(x509.IncompatibleUsage), + "IncorrectPasswordError": reflect.ValueOf(&x509.IncorrectPasswordError).Elem(), + "IsEncryptedPEMBlock": reflect.ValueOf(x509.IsEncryptedPEMBlock), + "KeyUsageCRLSign": reflect.ValueOf(x509.KeyUsageCRLSign), + "KeyUsageCertSign": reflect.ValueOf(x509.KeyUsageCertSign), + "KeyUsageContentCommitment": reflect.ValueOf(x509.KeyUsageContentCommitment), + "KeyUsageDataEncipherment": reflect.ValueOf(x509.KeyUsageDataEncipherment), + "KeyUsageDecipherOnly": reflect.ValueOf(x509.KeyUsageDecipherOnly), + "KeyUsageDigitalSignature": reflect.ValueOf(x509.KeyUsageDigitalSignature), + "KeyUsageEncipherOnly": reflect.ValueOf(x509.KeyUsageEncipherOnly), + "KeyUsageKeyAgreement": reflect.ValueOf(x509.KeyUsageKeyAgreement), + "KeyUsageKeyEncipherment": reflect.ValueOf(x509.KeyUsageKeyEncipherment), + "MD2WithRSA": reflect.ValueOf(x509.MD2WithRSA), + "MD5WithRSA": reflect.ValueOf(x509.MD5WithRSA), + "MarshalECPrivateKey": reflect.ValueOf(x509.MarshalECPrivateKey), + "MarshalPKCS1PrivateKey": reflect.ValueOf(x509.MarshalPKCS1PrivateKey), + "MarshalPKCS1PublicKey": reflect.ValueOf(x509.MarshalPKCS1PublicKey), + "MarshalPKCS8PrivateKey": reflect.ValueOf(x509.MarshalPKCS8PrivateKey), + "MarshalPKIXPublicKey": reflect.ValueOf(x509.MarshalPKIXPublicKey), + "NameConstraintsWithoutSANs": reflect.ValueOf(x509.NameConstraintsWithoutSANs), + "NameMismatch": reflect.ValueOf(x509.NameMismatch), + "NewCertPool": reflect.ValueOf(x509.NewCertPool), + "NotAuthorizedToSign": reflect.ValueOf(x509.NotAuthorizedToSign), + "PEMCipher3DES": reflect.ValueOf(x509.PEMCipher3DES), + "PEMCipherAES128": reflect.ValueOf(x509.PEMCipherAES128), + "PEMCipherAES192": reflect.ValueOf(x509.PEMCipherAES192), + "PEMCipherAES256": reflect.ValueOf(x509.PEMCipherAES256), + "PEMCipherDES": reflect.ValueOf(x509.PEMCipherDES), + "ParseCRL": reflect.ValueOf(x509.ParseCRL), + "ParseCertificate": reflect.ValueOf(x509.ParseCertificate), + "ParseCertificateRequest": reflect.ValueOf(x509.ParseCertificateRequest), + "ParseCertificates": reflect.ValueOf(x509.ParseCertificates), + "ParseDERCRL": reflect.ValueOf(x509.ParseDERCRL), + "ParseECPrivateKey": reflect.ValueOf(x509.ParseECPrivateKey), + "ParsePKCS1PrivateKey": reflect.ValueOf(x509.ParsePKCS1PrivateKey), + "ParsePKCS1PublicKey": reflect.ValueOf(x509.ParsePKCS1PublicKey), + "ParsePKCS8PrivateKey": reflect.ValueOf(x509.ParsePKCS8PrivateKey), + "ParsePKIXPublicKey": reflect.ValueOf(x509.ParsePKIXPublicKey), + "PureEd25519": reflect.ValueOf(x509.PureEd25519), + "RSA": reflect.ValueOf(x509.RSA), + "SHA1WithRSA": reflect.ValueOf(x509.SHA1WithRSA), + "SHA256WithRSA": reflect.ValueOf(x509.SHA256WithRSA), + "SHA256WithRSAPSS": reflect.ValueOf(x509.SHA256WithRSAPSS), + "SHA384WithRSA": reflect.ValueOf(x509.SHA384WithRSA), + "SHA384WithRSAPSS": reflect.ValueOf(x509.SHA384WithRSAPSS), + "SHA512WithRSA": reflect.ValueOf(x509.SHA512WithRSA), + "SHA512WithRSAPSS": reflect.ValueOf(x509.SHA512WithRSAPSS), + "SystemCertPool": reflect.ValueOf(x509.SystemCertPool), + "TooManyConstraints": reflect.ValueOf(x509.TooManyConstraints), + "TooManyIntermediates": reflect.ValueOf(x509.TooManyIntermediates), + "UnconstrainedName": reflect.ValueOf(x509.UnconstrainedName), + "UnknownPublicKeyAlgorithm": reflect.ValueOf(x509.UnknownPublicKeyAlgorithm), + "UnknownSignatureAlgorithm": reflect.ValueOf(x509.UnknownSignatureAlgorithm), + + // type definitions + "CertPool": reflect.ValueOf((*x509.CertPool)(nil)), + "Certificate": reflect.ValueOf((*x509.Certificate)(nil)), + "CertificateInvalidError": reflect.ValueOf((*x509.CertificateInvalidError)(nil)), + "CertificateRequest": reflect.ValueOf((*x509.CertificateRequest)(nil)), + "ConstraintViolationError": reflect.ValueOf((*x509.ConstraintViolationError)(nil)), + "ExtKeyUsage": reflect.ValueOf((*x509.ExtKeyUsage)(nil)), + "HostnameError": reflect.ValueOf((*x509.HostnameError)(nil)), + "InsecureAlgorithmError": reflect.ValueOf((*x509.InsecureAlgorithmError)(nil)), + "InvalidReason": reflect.ValueOf((*x509.InvalidReason)(nil)), + "KeyUsage": reflect.ValueOf((*x509.KeyUsage)(nil)), + "PEMCipher": reflect.ValueOf((*x509.PEMCipher)(nil)), + "PublicKeyAlgorithm": reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)), + "RevocationList": reflect.ValueOf((*x509.RevocationList)(nil)), + "SignatureAlgorithm": reflect.ValueOf((*x509.SignatureAlgorithm)(nil)), + "SystemRootsError": reflect.ValueOf((*x509.SystemRootsError)(nil)), + "UnhandledCriticalExtension": reflect.ValueOf((*x509.UnhandledCriticalExtension)(nil)), + "UnknownAuthorityError": reflect.ValueOf((*x509.UnknownAuthorityError)(nil)), + "VerifyOptions": reflect.ValueOf((*x509.VerifyOptions)(nil)), + } +} diff --git a/stdlib/go1_18_crypto_x509_pkix.go b/stdlib/go1_18_crypto_x509_pkix.go new file mode 100644 index 000000000..a2720591e --- /dev/null +++ b/stdlib/go1_18_crypto_x509_pkix.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "crypto/x509/pkix" + "reflect" +) + +func init() { + Symbols["crypto/x509/pkix/pkix"] = map[string]reflect.Value{ + // type definitions + "AlgorithmIdentifier": reflect.ValueOf((*pkix.AlgorithmIdentifier)(nil)), + "AttributeTypeAndValue": reflect.ValueOf((*pkix.AttributeTypeAndValue)(nil)), + "AttributeTypeAndValueSET": reflect.ValueOf((*pkix.AttributeTypeAndValueSET)(nil)), + "CertificateList": reflect.ValueOf((*pkix.CertificateList)(nil)), + "Extension": reflect.ValueOf((*pkix.Extension)(nil)), + "Name": reflect.ValueOf((*pkix.Name)(nil)), + "RDNSequence": reflect.ValueOf((*pkix.RDNSequence)(nil)), + "RelativeDistinguishedNameSET": reflect.ValueOf((*pkix.RelativeDistinguishedNameSET)(nil)), + "RevokedCertificate": reflect.ValueOf((*pkix.RevokedCertificate)(nil)), + "TBSCertificateList": reflect.ValueOf((*pkix.TBSCertificateList)(nil)), + } +} diff --git a/stdlib/go1_18_database_sql.go b/stdlib/go1_18_database_sql.go new file mode 100644 index 000000000..9594b3f8a --- /dev/null +++ b/stdlib/go1_18_database_sql.go @@ -0,0 +1,86 @@ +// Code generated by 'yaegi extract database/sql'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "database/sql" + "reflect" +) + +func init() { + Symbols["database/sql/sql"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Drivers": reflect.ValueOf(sql.Drivers), + "ErrConnDone": reflect.ValueOf(&sql.ErrConnDone).Elem(), + "ErrNoRows": reflect.ValueOf(&sql.ErrNoRows).Elem(), + "ErrTxDone": reflect.ValueOf(&sql.ErrTxDone).Elem(), + "LevelDefault": reflect.ValueOf(sql.LevelDefault), + "LevelLinearizable": reflect.ValueOf(sql.LevelLinearizable), + "LevelReadCommitted": reflect.ValueOf(sql.LevelReadCommitted), + "LevelReadUncommitted": reflect.ValueOf(sql.LevelReadUncommitted), + "LevelRepeatableRead": reflect.ValueOf(sql.LevelRepeatableRead), + "LevelSerializable": reflect.ValueOf(sql.LevelSerializable), + "LevelSnapshot": reflect.ValueOf(sql.LevelSnapshot), + "LevelWriteCommitted": reflect.ValueOf(sql.LevelWriteCommitted), + "Named": reflect.ValueOf(sql.Named), + "Open": reflect.ValueOf(sql.Open), + "OpenDB": reflect.ValueOf(sql.OpenDB), + "Register": reflect.ValueOf(sql.Register), + + // type definitions + "ColumnType": reflect.ValueOf((*sql.ColumnType)(nil)), + "Conn": reflect.ValueOf((*sql.Conn)(nil)), + "DB": reflect.ValueOf((*sql.DB)(nil)), + "DBStats": reflect.ValueOf((*sql.DBStats)(nil)), + "IsolationLevel": reflect.ValueOf((*sql.IsolationLevel)(nil)), + "NamedArg": reflect.ValueOf((*sql.NamedArg)(nil)), + "NullBool": reflect.ValueOf((*sql.NullBool)(nil)), + "NullByte": reflect.ValueOf((*sql.NullByte)(nil)), + "NullFloat64": reflect.ValueOf((*sql.NullFloat64)(nil)), + "NullInt16": reflect.ValueOf((*sql.NullInt16)(nil)), + "NullInt32": reflect.ValueOf((*sql.NullInt32)(nil)), + "NullInt64": reflect.ValueOf((*sql.NullInt64)(nil)), + "NullString": reflect.ValueOf((*sql.NullString)(nil)), + "NullTime": reflect.ValueOf((*sql.NullTime)(nil)), + "Out": reflect.ValueOf((*sql.Out)(nil)), + "RawBytes": reflect.ValueOf((*sql.RawBytes)(nil)), + "Result": reflect.ValueOf((*sql.Result)(nil)), + "Row": reflect.ValueOf((*sql.Row)(nil)), + "Rows": reflect.ValueOf((*sql.Rows)(nil)), + "Scanner": reflect.ValueOf((*sql.Scanner)(nil)), + "Stmt": reflect.ValueOf((*sql.Stmt)(nil)), + "Tx": reflect.ValueOf((*sql.Tx)(nil)), + "TxOptions": reflect.ValueOf((*sql.TxOptions)(nil)), + + // interface wrapper definitions + "_Result": reflect.ValueOf((*_database_sql_Result)(nil)), + "_Scanner": reflect.ValueOf((*_database_sql_Scanner)(nil)), + } +} + +// _database_sql_Result is an interface wrapper for Result type +type _database_sql_Result struct { + IValue interface{} + WLastInsertId func() (int64, error) + WRowsAffected func() (int64, error) +} + +func (W _database_sql_Result) LastInsertId() (int64, error) { + return W.WLastInsertId() +} +func (W _database_sql_Result) RowsAffected() (int64, error) { + return W.WRowsAffected() +} + +// _database_sql_Scanner is an interface wrapper for Scanner type +type _database_sql_Scanner struct { + IValue interface{} + WScan func(src any) error +} + +func (W _database_sql_Scanner) Scan(src any) error { + return W.WScan(src) +} diff --git a/stdlib/go1_18_database_sql_driver.go b/stdlib/go1_18_database_sql_driver.go new file mode 100644 index 000000000..b0b7c7007 --- /dev/null +++ b/stdlib/go1_18_database_sql_driver.go @@ -0,0 +1,509 @@ +// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "context" + "database/sql/driver" + "reflect" +) + +func init() { + Symbols["database/sql/driver/driver"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Bool": reflect.ValueOf(&driver.Bool).Elem(), + "DefaultParameterConverter": reflect.ValueOf(&driver.DefaultParameterConverter).Elem(), + "ErrBadConn": reflect.ValueOf(&driver.ErrBadConn).Elem(), + "ErrRemoveArgument": reflect.ValueOf(&driver.ErrRemoveArgument).Elem(), + "ErrSkip": reflect.ValueOf(&driver.ErrSkip).Elem(), + "Int32": reflect.ValueOf(&driver.Int32).Elem(), + "IsScanValue": reflect.ValueOf(driver.IsScanValue), + "IsValue": reflect.ValueOf(driver.IsValue), + "ResultNoRows": reflect.ValueOf(&driver.ResultNoRows).Elem(), + "String": reflect.ValueOf(&driver.String).Elem(), + + // type definitions + "ColumnConverter": reflect.ValueOf((*driver.ColumnConverter)(nil)), + "Conn": reflect.ValueOf((*driver.Conn)(nil)), + "ConnBeginTx": reflect.ValueOf((*driver.ConnBeginTx)(nil)), + "ConnPrepareContext": reflect.ValueOf((*driver.ConnPrepareContext)(nil)), + "Connector": reflect.ValueOf((*driver.Connector)(nil)), + "Driver": reflect.ValueOf((*driver.Driver)(nil)), + "DriverContext": reflect.ValueOf((*driver.DriverContext)(nil)), + "Execer": reflect.ValueOf((*driver.Execer)(nil)), + "ExecerContext": reflect.ValueOf((*driver.ExecerContext)(nil)), + "IsolationLevel": reflect.ValueOf((*driver.IsolationLevel)(nil)), + "NamedValue": reflect.ValueOf((*driver.NamedValue)(nil)), + "NamedValueChecker": reflect.ValueOf((*driver.NamedValueChecker)(nil)), + "NotNull": reflect.ValueOf((*driver.NotNull)(nil)), + "Null": reflect.ValueOf((*driver.Null)(nil)), + "Pinger": reflect.ValueOf((*driver.Pinger)(nil)), + "Queryer": reflect.ValueOf((*driver.Queryer)(nil)), + "QueryerContext": reflect.ValueOf((*driver.QueryerContext)(nil)), + "Result": reflect.ValueOf((*driver.Result)(nil)), + "Rows": reflect.ValueOf((*driver.Rows)(nil)), + "RowsAffected": reflect.ValueOf((*driver.RowsAffected)(nil)), + "RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*driver.RowsColumnTypeDatabaseTypeName)(nil)), + "RowsColumnTypeLength": reflect.ValueOf((*driver.RowsColumnTypeLength)(nil)), + "RowsColumnTypeNullable": reflect.ValueOf((*driver.RowsColumnTypeNullable)(nil)), + "RowsColumnTypePrecisionScale": reflect.ValueOf((*driver.RowsColumnTypePrecisionScale)(nil)), + "RowsColumnTypeScanType": reflect.ValueOf((*driver.RowsColumnTypeScanType)(nil)), + "RowsNextResultSet": reflect.ValueOf((*driver.RowsNextResultSet)(nil)), + "SessionResetter": reflect.ValueOf((*driver.SessionResetter)(nil)), + "Stmt": reflect.ValueOf((*driver.Stmt)(nil)), + "StmtExecContext": reflect.ValueOf((*driver.StmtExecContext)(nil)), + "StmtQueryContext": reflect.ValueOf((*driver.StmtQueryContext)(nil)), + "Tx": reflect.ValueOf((*driver.Tx)(nil)), + "TxOptions": reflect.ValueOf((*driver.TxOptions)(nil)), + "Validator": reflect.ValueOf((*driver.Validator)(nil)), + "Value": reflect.ValueOf((*driver.Value)(nil)), + "ValueConverter": reflect.ValueOf((*driver.ValueConverter)(nil)), + "Valuer": reflect.ValueOf((*driver.Valuer)(nil)), + + // interface wrapper definitions + "_ColumnConverter": reflect.ValueOf((*_database_sql_driver_ColumnConverter)(nil)), + "_Conn": reflect.ValueOf((*_database_sql_driver_Conn)(nil)), + "_ConnBeginTx": reflect.ValueOf((*_database_sql_driver_ConnBeginTx)(nil)), + "_ConnPrepareContext": reflect.ValueOf((*_database_sql_driver_ConnPrepareContext)(nil)), + "_Connector": reflect.ValueOf((*_database_sql_driver_Connector)(nil)), + "_Driver": reflect.ValueOf((*_database_sql_driver_Driver)(nil)), + "_DriverContext": reflect.ValueOf((*_database_sql_driver_DriverContext)(nil)), + "_Execer": reflect.ValueOf((*_database_sql_driver_Execer)(nil)), + "_ExecerContext": reflect.ValueOf((*_database_sql_driver_ExecerContext)(nil)), + "_NamedValueChecker": reflect.ValueOf((*_database_sql_driver_NamedValueChecker)(nil)), + "_Pinger": reflect.ValueOf((*_database_sql_driver_Pinger)(nil)), + "_Queryer": reflect.ValueOf((*_database_sql_driver_Queryer)(nil)), + "_QueryerContext": reflect.ValueOf((*_database_sql_driver_QueryerContext)(nil)), + "_Result": reflect.ValueOf((*_database_sql_driver_Result)(nil)), + "_Rows": reflect.ValueOf((*_database_sql_driver_Rows)(nil)), + "_RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeDatabaseTypeName)(nil)), + "_RowsColumnTypeLength": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeLength)(nil)), + "_RowsColumnTypeNullable": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeNullable)(nil)), + "_RowsColumnTypePrecisionScale": reflect.ValueOf((*_database_sql_driver_RowsColumnTypePrecisionScale)(nil)), + "_RowsColumnTypeScanType": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeScanType)(nil)), + "_RowsNextResultSet": reflect.ValueOf((*_database_sql_driver_RowsNextResultSet)(nil)), + "_SessionResetter": reflect.ValueOf((*_database_sql_driver_SessionResetter)(nil)), + "_Stmt": reflect.ValueOf((*_database_sql_driver_Stmt)(nil)), + "_StmtExecContext": reflect.ValueOf((*_database_sql_driver_StmtExecContext)(nil)), + "_StmtQueryContext": reflect.ValueOf((*_database_sql_driver_StmtQueryContext)(nil)), + "_Tx": reflect.ValueOf((*_database_sql_driver_Tx)(nil)), + "_Validator": reflect.ValueOf((*_database_sql_driver_Validator)(nil)), + "_Value": reflect.ValueOf((*_database_sql_driver_Value)(nil)), + "_ValueConverter": reflect.ValueOf((*_database_sql_driver_ValueConverter)(nil)), + "_Valuer": reflect.ValueOf((*_database_sql_driver_Valuer)(nil)), + } +} + +// _database_sql_driver_ColumnConverter is an interface wrapper for ColumnConverter type +type _database_sql_driver_ColumnConverter struct { + IValue interface{} + WColumnConverter func(idx int) driver.ValueConverter +} + +func (W _database_sql_driver_ColumnConverter) ColumnConverter(idx int) driver.ValueConverter { + return W.WColumnConverter(idx) +} + +// _database_sql_driver_Conn is an interface wrapper for Conn type +type _database_sql_driver_Conn struct { + IValue interface{} + WBegin func() (driver.Tx, error) + WClose func() error + WPrepare func(query string) (driver.Stmt, error) +} + +func (W _database_sql_driver_Conn) Begin() (driver.Tx, error) { + return W.WBegin() +} +func (W _database_sql_driver_Conn) Close() error { + return W.WClose() +} +func (W _database_sql_driver_Conn) Prepare(query string) (driver.Stmt, error) { + return W.WPrepare(query) +} + +// _database_sql_driver_ConnBeginTx is an interface wrapper for ConnBeginTx type +type _database_sql_driver_ConnBeginTx struct { + IValue interface{} + WBeginTx func(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) +} + +func (W _database_sql_driver_ConnBeginTx) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) { + return W.WBeginTx(ctx, opts) +} + +// _database_sql_driver_ConnPrepareContext is an interface wrapper for ConnPrepareContext type +type _database_sql_driver_ConnPrepareContext struct { + IValue interface{} + WPrepareContext func(ctx context.Context, query string) (driver.Stmt, error) +} + +func (W _database_sql_driver_ConnPrepareContext) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) { + return W.WPrepareContext(ctx, query) +} + +// _database_sql_driver_Connector is an interface wrapper for Connector type +type _database_sql_driver_Connector struct { + IValue interface{} + WConnect func(a0 context.Context) (driver.Conn, error) + WDriver func() driver.Driver +} + +func (W _database_sql_driver_Connector) Connect(a0 context.Context) (driver.Conn, error) { + return W.WConnect(a0) +} +func (W _database_sql_driver_Connector) Driver() driver.Driver { + return W.WDriver() +} + +// _database_sql_driver_Driver is an interface wrapper for Driver type +type _database_sql_driver_Driver struct { + IValue interface{} + WOpen func(name string) (driver.Conn, error) +} + +func (W _database_sql_driver_Driver) Open(name string) (driver.Conn, error) { + return W.WOpen(name) +} + +// _database_sql_driver_DriverContext is an interface wrapper for DriverContext type +type _database_sql_driver_DriverContext struct { + IValue interface{} + WOpenConnector func(name string) (driver.Connector, error) +} + +func (W _database_sql_driver_DriverContext) OpenConnector(name string) (driver.Connector, error) { + return W.WOpenConnector(name) +} + +// _database_sql_driver_Execer is an interface wrapper for Execer type +type _database_sql_driver_Execer struct { + IValue interface{} + WExec func(query string, args []driver.Value) (driver.Result, error) +} + +func (W _database_sql_driver_Execer) Exec(query string, args []driver.Value) (driver.Result, error) { + return W.WExec(query, args) +} + +// _database_sql_driver_ExecerContext is an interface wrapper for ExecerContext type +type _database_sql_driver_ExecerContext struct { + IValue interface{} + WExecContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) +} + +func (W _database_sql_driver_ExecerContext) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) { + return W.WExecContext(ctx, query, args) +} + +// _database_sql_driver_NamedValueChecker is an interface wrapper for NamedValueChecker type +type _database_sql_driver_NamedValueChecker struct { + IValue interface{} + WCheckNamedValue func(a0 *driver.NamedValue) error +} + +func (W _database_sql_driver_NamedValueChecker) CheckNamedValue(a0 *driver.NamedValue) error { + return W.WCheckNamedValue(a0) +} + +// _database_sql_driver_Pinger is an interface wrapper for Pinger type +type _database_sql_driver_Pinger struct { + IValue interface{} + WPing func(ctx context.Context) error +} + +func (W _database_sql_driver_Pinger) Ping(ctx context.Context) error { + return W.WPing(ctx) +} + +// _database_sql_driver_Queryer is an interface wrapper for Queryer type +type _database_sql_driver_Queryer struct { + IValue interface{} + WQuery func(query string, args []driver.Value) (driver.Rows, error) +} + +func (W _database_sql_driver_Queryer) Query(query string, args []driver.Value) (driver.Rows, error) { + return W.WQuery(query, args) +} + +// _database_sql_driver_QueryerContext is an interface wrapper for QueryerContext type +type _database_sql_driver_QueryerContext struct { + IValue interface{} + WQueryContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) +} + +func (W _database_sql_driver_QueryerContext) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) { + return W.WQueryContext(ctx, query, args) +} + +// _database_sql_driver_Result is an interface wrapper for Result type +type _database_sql_driver_Result struct { + IValue interface{} + WLastInsertId func() (int64, error) + WRowsAffected func() (int64, error) +} + +func (W _database_sql_driver_Result) LastInsertId() (int64, error) { + return W.WLastInsertId() +} +func (W _database_sql_driver_Result) RowsAffected() (int64, error) { + return W.WRowsAffected() +} + +// _database_sql_driver_Rows is an interface wrapper for Rows type +type _database_sql_driver_Rows struct { + IValue interface{} + WClose func() error + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_Rows) Close() error { + return W.WClose() +} +func (W _database_sql_driver_Rows) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_Rows) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeDatabaseTypeName is an interface wrapper for RowsColumnTypeDatabaseTypeName type +type _database_sql_driver_RowsColumnTypeDatabaseTypeName struct { + IValue interface{} + WClose func() error + WColumnTypeDatabaseTypeName func(index int) string + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) ColumnTypeDatabaseTypeName(index int) string { + return W.WColumnTypeDatabaseTypeName(index) +} +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeLength is an interface wrapper for RowsColumnTypeLength type +type _database_sql_driver_RowsColumnTypeLength struct { + IValue interface{} + WClose func() error + WColumnTypeLength func(index int) (length int64, ok bool) + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeLength) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeLength) ColumnTypeLength(index int) (length int64, ok bool) { + return W.WColumnTypeLength(index) +} +func (W _database_sql_driver_RowsColumnTypeLength) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeLength) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeNullable is an interface wrapper for RowsColumnTypeNullable type +type _database_sql_driver_RowsColumnTypeNullable struct { + IValue interface{} + WClose func() error + WColumnTypeNullable func(index int) (nullable bool, ok bool) + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeNullable) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeNullable) ColumnTypeNullable(index int) (nullable bool, ok bool) { + return W.WColumnTypeNullable(index) +} +func (W _database_sql_driver_RowsColumnTypeNullable) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeNullable) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypePrecisionScale is an interface wrapper for RowsColumnTypePrecisionScale type +type _database_sql_driver_RowsColumnTypePrecisionScale struct { + IValue interface{} + WClose func() error + WColumnTypePrecisionScale func(index int) (precision int64, scale int64, ok bool) + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypePrecisionScale) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypePrecisionScale) ColumnTypePrecisionScale(index int) (precision int64, scale int64, ok bool) { + return W.WColumnTypePrecisionScale(index) +} +func (W _database_sql_driver_RowsColumnTypePrecisionScale) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypePrecisionScale) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeScanType is an interface wrapper for RowsColumnTypeScanType type +type _database_sql_driver_RowsColumnTypeScanType struct { + IValue interface{} + WClose func() error + WColumnTypeScanType func(index int) reflect.Type + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeScanType) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeScanType) ColumnTypeScanType(index int) reflect.Type { + return W.WColumnTypeScanType(index) +} +func (W _database_sql_driver_RowsColumnTypeScanType) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeScanType) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsNextResultSet is an interface wrapper for RowsNextResultSet type +type _database_sql_driver_RowsNextResultSet struct { + IValue interface{} + WClose func() error + WColumns func() []string + WHasNextResultSet func() bool + WNext func(dest []driver.Value) error + WNextResultSet func() error +} + +func (W _database_sql_driver_RowsNextResultSet) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsNextResultSet) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsNextResultSet) HasNextResultSet() bool { + return W.WHasNextResultSet() +} +func (W _database_sql_driver_RowsNextResultSet) Next(dest []driver.Value) error { + return W.WNext(dest) +} +func (W _database_sql_driver_RowsNextResultSet) NextResultSet() error { + return W.WNextResultSet() +} + +// _database_sql_driver_SessionResetter is an interface wrapper for SessionResetter type +type _database_sql_driver_SessionResetter struct { + IValue interface{} + WResetSession func(ctx context.Context) error +} + +func (W _database_sql_driver_SessionResetter) ResetSession(ctx context.Context) error { + return W.WResetSession(ctx) +} + +// _database_sql_driver_Stmt is an interface wrapper for Stmt type +type _database_sql_driver_Stmt struct { + IValue interface{} + WClose func() error + WExec func(args []driver.Value) (driver.Result, error) + WNumInput func() int + WQuery func(args []driver.Value) (driver.Rows, error) +} + +func (W _database_sql_driver_Stmt) Close() error { + return W.WClose() +} +func (W _database_sql_driver_Stmt) Exec(args []driver.Value) (driver.Result, error) { + return W.WExec(args) +} +func (W _database_sql_driver_Stmt) NumInput() int { + return W.WNumInput() +} +func (W _database_sql_driver_Stmt) Query(args []driver.Value) (driver.Rows, error) { + return W.WQuery(args) +} + +// _database_sql_driver_StmtExecContext is an interface wrapper for StmtExecContext type +type _database_sql_driver_StmtExecContext struct { + IValue interface{} + WExecContext func(ctx context.Context, args []driver.NamedValue) (driver.Result, error) +} + +func (W _database_sql_driver_StmtExecContext) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) { + return W.WExecContext(ctx, args) +} + +// _database_sql_driver_StmtQueryContext is an interface wrapper for StmtQueryContext type +type _database_sql_driver_StmtQueryContext struct { + IValue interface{} + WQueryContext func(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) +} + +func (W _database_sql_driver_StmtQueryContext) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { + return W.WQueryContext(ctx, args) +} + +// _database_sql_driver_Tx is an interface wrapper for Tx type +type _database_sql_driver_Tx struct { + IValue interface{} + WCommit func() error + WRollback func() error +} + +func (W _database_sql_driver_Tx) Commit() error { + return W.WCommit() +} +func (W _database_sql_driver_Tx) Rollback() error { + return W.WRollback() +} + +// _database_sql_driver_Validator is an interface wrapper for Validator type +type _database_sql_driver_Validator struct { + IValue interface{} + WIsValid func() bool +} + +func (W _database_sql_driver_Validator) IsValid() bool { + return W.WIsValid() +} + +// _database_sql_driver_Value is an interface wrapper for Value type +type _database_sql_driver_Value struct { + IValue interface{} +} + +// _database_sql_driver_ValueConverter is an interface wrapper for ValueConverter type +type _database_sql_driver_ValueConverter struct { + IValue interface{} + WConvertValue func(v any) (driver.Value, error) +} + +func (W _database_sql_driver_ValueConverter) ConvertValue(v any) (driver.Value, error) { + return W.WConvertValue(v) +} + +// _database_sql_driver_Valuer is an interface wrapper for Valuer type +type _database_sql_driver_Valuer struct { + IValue interface{} + WValue func() (driver.Value, error) +} + +func (W _database_sql_driver_Valuer) Value() (driver.Value, error) { + return W.WValue() +} diff --git a/stdlib/go1_18_debug_buildinfo.go b/stdlib/go1_18_debug_buildinfo.go new file mode 100644 index 000000000..c9d2d88e2 --- /dev/null +++ b/stdlib/go1_18_debug_buildinfo.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract debug/buildinfo'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/buildinfo" + "reflect" +) + +func init() { + Symbols["debug/buildinfo/buildinfo"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Read": reflect.ValueOf(buildinfo.Read), + "ReadFile": reflect.ValueOf(buildinfo.ReadFile), + + // type definitions + "BuildInfo": reflect.ValueOf((*buildinfo.BuildInfo)(nil)), + } +} diff --git a/stdlib/go1_18_debug_dwarf.go b/stdlib/go1_18_debug_dwarf.go new file mode 100644 index 000000000..ed8d3206a --- /dev/null +++ b/stdlib/go1_18_debug_dwarf.go @@ -0,0 +1,292 @@ +// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/dwarf" + "reflect" +) + +func init() { + Symbols["debug/dwarf/dwarf"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AttrAbstractOrigin": reflect.ValueOf(dwarf.AttrAbstractOrigin), + "AttrAccessibility": reflect.ValueOf(dwarf.AttrAccessibility), + "AttrAddrBase": reflect.ValueOf(dwarf.AttrAddrBase), + "AttrAddrClass": reflect.ValueOf(dwarf.AttrAddrClass), + "AttrAlignment": reflect.ValueOf(dwarf.AttrAlignment), + "AttrAllocated": reflect.ValueOf(dwarf.AttrAllocated), + "AttrArtificial": reflect.ValueOf(dwarf.AttrArtificial), + "AttrAssociated": reflect.ValueOf(dwarf.AttrAssociated), + "AttrBaseTypes": reflect.ValueOf(dwarf.AttrBaseTypes), + "AttrBinaryScale": reflect.ValueOf(dwarf.AttrBinaryScale), + "AttrBitOffset": reflect.ValueOf(dwarf.AttrBitOffset), + "AttrBitSize": reflect.ValueOf(dwarf.AttrBitSize), + "AttrByteSize": reflect.ValueOf(dwarf.AttrByteSize), + "AttrCallAllCalls": reflect.ValueOf(dwarf.AttrCallAllCalls), + "AttrCallAllSourceCalls": reflect.ValueOf(dwarf.AttrCallAllSourceCalls), + "AttrCallAllTailCalls": reflect.ValueOf(dwarf.AttrCallAllTailCalls), + "AttrCallColumn": reflect.ValueOf(dwarf.AttrCallColumn), + "AttrCallDataLocation": reflect.ValueOf(dwarf.AttrCallDataLocation), + "AttrCallDataValue": reflect.ValueOf(dwarf.AttrCallDataValue), + "AttrCallFile": reflect.ValueOf(dwarf.AttrCallFile), + "AttrCallLine": reflect.ValueOf(dwarf.AttrCallLine), + "AttrCallOrigin": reflect.ValueOf(dwarf.AttrCallOrigin), + "AttrCallPC": reflect.ValueOf(dwarf.AttrCallPC), + "AttrCallParameter": reflect.ValueOf(dwarf.AttrCallParameter), + "AttrCallReturnPC": reflect.ValueOf(dwarf.AttrCallReturnPC), + "AttrCallTailCall": reflect.ValueOf(dwarf.AttrCallTailCall), + "AttrCallTarget": reflect.ValueOf(dwarf.AttrCallTarget), + "AttrCallTargetClobbered": reflect.ValueOf(dwarf.AttrCallTargetClobbered), + "AttrCallValue": reflect.ValueOf(dwarf.AttrCallValue), + "AttrCalling": reflect.ValueOf(dwarf.AttrCalling), + "AttrCommonRef": reflect.ValueOf(dwarf.AttrCommonRef), + "AttrCompDir": reflect.ValueOf(dwarf.AttrCompDir), + "AttrConstExpr": reflect.ValueOf(dwarf.AttrConstExpr), + "AttrConstValue": reflect.ValueOf(dwarf.AttrConstValue), + "AttrContainingType": reflect.ValueOf(dwarf.AttrContainingType), + "AttrCount": reflect.ValueOf(dwarf.AttrCount), + "AttrDataBitOffset": reflect.ValueOf(dwarf.AttrDataBitOffset), + "AttrDataLocation": reflect.ValueOf(dwarf.AttrDataLocation), + "AttrDataMemberLoc": reflect.ValueOf(dwarf.AttrDataMemberLoc), + "AttrDecimalScale": reflect.ValueOf(dwarf.AttrDecimalScale), + "AttrDecimalSign": reflect.ValueOf(dwarf.AttrDecimalSign), + "AttrDeclColumn": reflect.ValueOf(dwarf.AttrDeclColumn), + "AttrDeclFile": reflect.ValueOf(dwarf.AttrDeclFile), + "AttrDeclLine": reflect.ValueOf(dwarf.AttrDeclLine), + "AttrDeclaration": reflect.ValueOf(dwarf.AttrDeclaration), + "AttrDefaultValue": reflect.ValueOf(dwarf.AttrDefaultValue), + "AttrDefaulted": reflect.ValueOf(dwarf.AttrDefaulted), + "AttrDeleted": reflect.ValueOf(dwarf.AttrDeleted), + "AttrDescription": reflect.ValueOf(dwarf.AttrDescription), + "AttrDigitCount": reflect.ValueOf(dwarf.AttrDigitCount), + "AttrDiscr": reflect.ValueOf(dwarf.AttrDiscr), + "AttrDiscrList": reflect.ValueOf(dwarf.AttrDiscrList), + "AttrDiscrValue": reflect.ValueOf(dwarf.AttrDiscrValue), + "AttrDwoName": reflect.ValueOf(dwarf.AttrDwoName), + "AttrElemental": reflect.ValueOf(dwarf.AttrElemental), + "AttrEncoding": reflect.ValueOf(dwarf.AttrEncoding), + "AttrEndianity": reflect.ValueOf(dwarf.AttrEndianity), + "AttrEntrypc": reflect.ValueOf(dwarf.AttrEntrypc), + "AttrEnumClass": reflect.ValueOf(dwarf.AttrEnumClass), + "AttrExplicit": reflect.ValueOf(dwarf.AttrExplicit), + "AttrExportSymbols": reflect.ValueOf(dwarf.AttrExportSymbols), + "AttrExtension": reflect.ValueOf(dwarf.AttrExtension), + "AttrExternal": reflect.ValueOf(dwarf.AttrExternal), + "AttrFrameBase": reflect.ValueOf(dwarf.AttrFrameBase), + "AttrFriend": reflect.ValueOf(dwarf.AttrFriend), + "AttrHighpc": reflect.ValueOf(dwarf.AttrHighpc), + "AttrIdentifierCase": reflect.ValueOf(dwarf.AttrIdentifierCase), + "AttrImport": reflect.ValueOf(dwarf.AttrImport), + "AttrInline": reflect.ValueOf(dwarf.AttrInline), + "AttrIsOptional": reflect.ValueOf(dwarf.AttrIsOptional), + "AttrLanguage": reflect.ValueOf(dwarf.AttrLanguage), + "AttrLinkageName": reflect.ValueOf(dwarf.AttrLinkageName), + "AttrLocation": reflect.ValueOf(dwarf.AttrLocation), + "AttrLoclistsBase": reflect.ValueOf(dwarf.AttrLoclistsBase), + "AttrLowerBound": reflect.ValueOf(dwarf.AttrLowerBound), + "AttrLowpc": reflect.ValueOf(dwarf.AttrLowpc), + "AttrMacroInfo": reflect.ValueOf(dwarf.AttrMacroInfo), + "AttrMacros": reflect.ValueOf(dwarf.AttrMacros), + "AttrMainSubprogram": reflect.ValueOf(dwarf.AttrMainSubprogram), + "AttrMutable": reflect.ValueOf(dwarf.AttrMutable), + "AttrName": reflect.ValueOf(dwarf.AttrName), + "AttrNamelistItem": reflect.ValueOf(dwarf.AttrNamelistItem), + "AttrNoreturn": reflect.ValueOf(dwarf.AttrNoreturn), + "AttrObjectPointer": reflect.ValueOf(dwarf.AttrObjectPointer), + "AttrOrdering": reflect.ValueOf(dwarf.AttrOrdering), + "AttrPictureString": reflect.ValueOf(dwarf.AttrPictureString), + "AttrPriority": reflect.ValueOf(dwarf.AttrPriority), + "AttrProducer": reflect.ValueOf(dwarf.AttrProducer), + "AttrPrototyped": reflect.ValueOf(dwarf.AttrPrototyped), + "AttrPure": reflect.ValueOf(dwarf.AttrPure), + "AttrRanges": reflect.ValueOf(dwarf.AttrRanges), + "AttrRank": reflect.ValueOf(dwarf.AttrRank), + "AttrRecursive": reflect.ValueOf(dwarf.AttrRecursive), + "AttrReference": reflect.ValueOf(dwarf.AttrReference), + "AttrReturnAddr": reflect.ValueOf(dwarf.AttrReturnAddr), + "AttrRnglistsBase": reflect.ValueOf(dwarf.AttrRnglistsBase), + "AttrRvalueReference": reflect.ValueOf(dwarf.AttrRvalueReference), + "AttrSegment": reflect.ValueOf(dwarf.AttrSegment), + "AttrSibling": reflect.ValueOf(dwarf.AttrSibling), + "AttrSignature": reflect.ValueOf(dwarf.AttrSignature), + "AttrSmall": reflect.ValueOf(dwarf.AttrSmall), + "AttrSpecification": reflect.ValueOf(dwarf.AttrSpecification), + "AttrStartScope": reflect.ValueOf(dwarf.AttrStartScope), + "AttrStaticLink": reflect.ValueOf(dwarf.AttrStaticLink), + "AttrStmtList": reflect.ValueOf(dwarf.AttrStmtList), + "AttrStrOffsetsBase": reflect.ValueOf(dwarf.AttrStrOffsetsBase), + "AttrStride": reflect.ValueOf(dwarf.AttrStride), + "AttrStrideSize": reflect.ValueOf(dwarf.AttrStrideSize), + "AttrStringLength": reflect.ValueOf(dwarf.AttrStringLength), + "AttrStringLengthBitSize": reflect.ValueOf(dwarf.AttrStringLengthBitSize), + "AttrStringLengthByteSize": reflect.ValueOf(dwarf.AttrStringLengthByteSize), + "AttrThreadsScaled": reflect.ValueOf(dwarf.AttrThreadsScaled), + "AttrTrampoline": reflect.ValueOf(dwarf.AttrTrampoline), + "AttrType": reflect.ValueOf(dwarf.AttrType), + "AttrUpperBound": reflect.ValueOf(dwarf.AttrUpperBound), + "AttrUseLocation": reflect.ValueOf(dwarf.AttrUseLocation), + "AttrUseUTF8": reflect.ValueOf(dwarf.AttrUseUTF8), + "AttrVarParam": reflect.ValueOf(dwarf.AttrVarParam), + "AttrVirtuality": reflect.ValueOf(dwarf.AttrVirtuality), + "AttrVisibility": reflect.ValueOf(dwarf.AttrVisibility), + "AttrVtableElemLoc": reflect.ValueOf(dwarf.AttrVtableElemLoc), + "ClassAddrPtr": reflect.ValueOf(dwarf.ClassAddrPtr), + "ClassAddress": reflect.ValueOf(dwarf.ClassAddress), + "ClassBlock": reflect.ValueOf(dwarf.ClassBlock), + "ClassConstant": reflect.ValueOf(dwarf.ClassConstant), + "ClassExprLoc": reflect.ValueOf(dwarf.ClassExprLoc), + "ClassFlag": reflect.ValueOf(dwarf.ClassFlag), + "ClassLinePtr": reflect.ValueOf(dwarf.ClassLinePtr), + "ClassLocList": reflect.ValueOf(dwarf.ClassLocList), + "ClassLocListPtr": reflect.ValueOf(dwarf.ClassLocListPtr), + "ClassMacPtr": reflect.ValueOf(dwarf.ClassMacPtr), + "ClassRangeListPtr": reflect.ValueOf(dwarf.ClassRangeListPtr), + "ClassReference": reflect.ValueOf(dwarf.ClassReference), + "ClassReferenceAlt": reflect.ValueOf(dwarf.ClassReferenceAlt), + "ClassReferenceSig": reflect.ValueOf(dwarf.ClassReferenceSig), + "ClassRngList": reflect.ValueOf(dwarf.ClassRngList), + "ClassRngListsPtr": reflect.ValueOf(dwarf.ClassRngListsPtr), + "ClassStrOffsetsPtr": reflect.ValueOf(dwarf.ClassStrOffsetsPtr), + "ClassString": reflect.ValueOf(dwarf.ClassString), + "ClassStringAlt": reflect.ValueOf(dwarf.ClassStringAlt), + "ClassUnknown": reflect.ValueOf(dwarf.ClassUnknown), + "ErrUnknownPC": reflect.ValueOf(&dwarf.ErrUnknownPC).Elem(), + "New": reflect.ValueOf(dwarf.New), + "TagAccessDeclaration": reflect.ValueOf(dwarf.TagAccessDeclaration), + "TagArrayType": reflect.ValueOf(dwarf.TagArrayType), + "TagAtomicType": reflect.ValueOf(dwarf.TagAtomicType), + "TagBaseType": reflect.ValueOf(dwarf.TagBaseType), + "TagCallSite": reflect.ValueOf(dwarf.TagCallSite), + "TagCallSiteParameter": reflect.ValueOf(dwarf.TagCallSiteParameter), + "TagCatchDwarfBlock": reflect.ValueOf(dwarf.TagCatchDwarfBlock), + "TagClassType": reflect.ValueOf(dwarf.TagClassType), + "TagCoarrayType": reflect.ValueOf(dwarf.TagCoarrayType), + "TagCommonDwarfBlock": reflect.ValueOf(dwarf.TagCommonDwarfBlock), + "TagCommonInclusion": reflect.ValueOf(dwarf.TagCommonInclusion), + "TagCompileUnit": reflect.ValueOf(dwarf.TagCompileUnit), + "TagCondition": reflect.ValueOf(dwarf.TagCondition), + "TagConstType": reflect.ValueOf(dwarf.TagConstType), + "TagConstant": reflect.ValueOf(dwarf.TagConstant), + "TagDwarfProcedure": reflect.ValueOf(dwarf.TagDwarfProcedure), + "TagDynamicType": reflect.ValueOf(dwarf.TagDynamicType), + "TagEntryPoint": reflect.ValueOf(dwarf.TagEntryPoint), + "TagEnumerationType": reflect.ValueOf(dwarf.TagEnumerationType), + "TagEnumerator": reflect.ValueOf(dwarf.TagEnumerator), + "TagFileType": reflect.ValueOf(dwarf.TagFileType), + "TagFormalParameter": reflect.ValueOf(dwarf.TagFormalParameter), + "TagFriend": reflect.ValueOf(dwarf.TagFriend), + "TagGenericSubrange": reflect.ValueOf(dwarf.TagGenericSubrange), + "TagImmutableType": reflect.ValueOf(dwarf.TagImmutableType), + "TagImportedDeclaration": reflect.ValueOf(dwarf.TagImportedDeclaration), + "TagImportedModule": reflect.ValueOf(dwarf.TagImportedModule), + "TagImportedUnit": reflect.ValueOf(dwarf.TagImportedUnit), + "TagInheritance": reflect.ValueOf(dwarf.TagInheritance), + "TagInlinedSubroutine": reflect.ValueOf(dwarf.TagInlinedSubroutine), + "TagInterfaceType": reflect.ValueOf(dwarf.TagInterfaceType), + "TagLabel": reflect.ValueOf(dwarf.TagLabel), + "TagLexDwarfBlock": reflect.ValueOf(dwarf.TagLexDwarfBlock), + "TagMember": reflect.ValueOf(dwarf.TagMember), + "TagModule": reflect.ValueOf(dwarf.TagModule), + "TagMutableType": reflect.ValueOf(dwarf.TagMutableType), + "TagNamelist": reflect.ValueOf(dwarf.TagNamelist), + "TagNamelistItem": reflect.ValueOf(dwarf.TagNamelistItem), + "TagNamespace": reflect.ValueOf(dwarf.TagNamespace), + "TagPackedType": reflect.ValueOf(dwarf.TagPackedType), + "TagPartialUnit": reflect.ValueOf(dwarf.TagPartialUnit), + "TagPointerType": reflect.ValueOf(dwarf.TagPointerType), + "TagPtrToMemberType": reflect.ValueOf(dwarf.TagPtrToMemberType), + "TagReferenceType": reflect.ValueOf(dwarf.TagReferenceType), + "TagRestrictType": reflect.ValueOf(dwarf.TagRestrictType), + "TagRvalueReferenceType": reflect.ValueOf(dwarf.TagRvalueReferenceType), + "TagSetType": reflect.ValueOf(dwarf.TagSetType), + "TagSharedType": reflect.ValueOf(dwarf.TagSharedType), + "TagSkeletonUnit": reflect.ValueOf(dwarf.TagSkeletonUnit), + "TagStringType": reflect.ValueOf(dwarf.TagStringType), + "TagStructType": reflect.ValueOf(dwarf.TagStructType), + "TagSubprogram": reflect.ValueOf(dwarf.TagSubprogram), + "TagSubrangeType": reflect.ValueOf(dwarf.TagSubrangeType), + "TagSubroutineType": reflect.ValueOf(dwarf.TagSubroutineType), + "TagTemplateAlias": reflect.ValueOf(dwarf.TagTemplateAlias), + "TagTemplateTypeParameter": reflect.ValueOf(dwarf.TagTemplateTypeParameter), + "TagTemplateValueParameter": reflect.ValueOf(dwarf.TagTemplateValueParameter), + "TagThrownType": reflect.ValueOf(dwarf.TagThrownType), + "TagTryDwarfBlock": reflect.ValueOf(dwarf.TagTryDwarfBlock), + "TagTypeUnit": reflect.ValueOf(dwarf.TagTypeUnit), + "TagTypedef": reflect.ValueOf(dwarf.TagTypedef), + "TagUnionType": reflect.ValueOf(dwarf.TagUnionType), + "TagUnspecifiedParameters": reflect.ValueOf(dwarf.TagUnspecifiedParameters), + "TagUnspecifiedType": reflect.ValueOf(dwarf.TagUnspecifiedType), + "TagVariable": reflect.ValueOf(dwarf.TagVariable), + "TagVariant": reflect.ValueOf(dwarf.TagVariant), + "TagVariantPart": reflect.ValueOf(dwarf.TagVariantPart), + "TagVolatileType": reflect.ValueOf(dwarf.TagVolatileType), + "TagWithStmt": reflect.ValueOf(dwarf.TagWithStmt), + + // type definitions + "AddrType": reflect.ValueOf((*dwarf.AddrType)(nil)), + "ArrayType": reflect.ValueOf((*dwarf.ArrayType)(nil)), + "Attr": reflect.ValueOf((*dwarf.Attr)(nil)), + "BasicType": reflect.ValueOf((*dwarf.BasicType)(nil)), + "BoolType": reflect.ValueOf((*dwarf.BoolType)(nil)), + "CharType": reflect.ValueOf((*dwarf.CharType)(nil)), + "Class": reflect.ValueOf((*dwarf.Class)(nil)), + "CommonType": reflect.ValueOf((*dwarf.CommonType)(nil)), + "ComplexType": reflect.ValueOf((*dwarf.ComplexType)(nil)), + "Data": reflect.ValueOf((*dwarf.Data)(nil)), + "DecodeError": reflect.ValueOf((*dwarf.DecodeError)(nil)), + "DotDotDotType": reflect.ValueOf((*dwarf.DotDotDotType)(nil)), + "Entry": reflect.ValueOf((*dwarf.Entry)(nil)), + "EnumType": reflect.ValueOf((*dwarf.EnumType)(nil)), + "EnumValue": reflect.ValueOf((*dwarf.EnumValue)(nil)), + "Field": reflect.ValueOf((*dwarf.Field)(nil)), + "FloatType": reflect.ValueOf((*dwarf.FloatType)(nil)), + "FuncType": reflect.ValueOf((*dwarf.FuncType)(nil)), + "IntType": reflect.ValueOf((*dwarf.IntType)(nil)), + "LineEntry": reflect.ValueOf((*dwarf.LineEntry)(nil)), + "LineFile": reflect.ValueOf((*dwarf.LineFile)(nil)), + "LineReader": reflect.ValueOf((*dwarf.LineReader)(nil)), + "LineReaderPos": reflect.ValueOf((*dwarf.LineReaderPos)(nil)), + "Offset": reflect.ValueOf((*dwarf.Offset)(nil)), + "PtrType": reflect.ValueOf((*dwarf.PtrType)(nil)), + "QualType": reflect.ValueOf((*dwarf.QualType)(nil)), + "Reader": reflect.ValueOf((*dwarf.Reader)(nil)), + "StructField": reflect.ValueOf((*dwarf.StructField)(nil)), + "StructType": reflect.ValueOf((*dwarf.StructType)(nil)), + "Tag": reflect.ValueOf((*dwarf.Tag)(nil)), + "Type": reflect.ValueOf((*dwarf.Type)(nil)), + "TypedefType": reflect.ValueOf((*dwarf.TypedefType)(nil)), + "UcharType": reflect.ValueOf((*dwarf.UcharType)(nil)), + "UintType": reflect.ValueOf((*dwarf.UintType)(nil)), + "UnspecifiedType": reflect.ValueOf((*dwarf.UnspecifiedType)(nil)), + "UnsupportedType": reflect.ValueOf((*dwarf.UnsupportedType)(nil)), + "VoidType": reflect.ValueOf((*dwarf.VoidType)(nil)), + + // interface wrapper definitions + "_Type": reflect.ValueOf((*_debug_dwarf_Type)(nil)), + } +} + +// _debug_dwarf_Type is an interface wrapper for Type type +type _debug_dwarf_Type struct { + IValue interface{} + WCommon func() *dwarf.CommonType + WSize func() int64 + WString func() string +} + +func (W _debug_dwarf_Type) Common() *dwarf.CommonType { + return W.WCommon() +} +func (W _debug_dwarf_Type) Size() int64 { + return W.WSize() +} +func (W _debug_dwarf_Type) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_debug_elf.go b/stdlib/go1_18_debug_elf.go new file mode 100644 index 000000000..dcfdfe9cd --- /dev/null +++ b/stdlib/go1_18_debug_elf.go @@ -0,0 +1,1366 @@ +// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/elf" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["debug/elf/elf"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ARM_MAGIC_TRAMP_NUMBER": reflect.ValueOf(constant.MakeFromLiteral("1543503875", token.INT, 0)), + "COMPRESS_HIOS": reflect.ValueOf(elf.COMPRESS_HIOS), + "COMPRESS_HIPROC": reflect.ValueOf(elf.COMPRESS_HIPROC), + "COMPRESS_LOOS": reflect.ValueOf(elf.COMPRESS_LOOS), + "COMPRESS_LOPROC": reflect.ValueOf(elf.COMPRESS_LOPROC), + "COMPRESS_ZLIB": reflect.ValueOf(elf.COMPRESS_ZLIB), + "DF_BIND_NOW": reflect.ValueOf(elf.DF_BIND_NOW), + "DF_ORIGIN": reflect.ValueOf(elf.DF_ORIGIN), + "DF_STATIC_TLS": reflect.ValueOf(elf.DF_STATIC_TLS), + "DF_SYMBOLIC": reflect.ValueOf(elf.DF_SYMBOLIC), + "DF_TEXTREL": reflect.ValueOf(elf.DF_TEXTREL), + "DT_ADDRRNGHI": reflect.ValueOf(elf.DT_ADDRRNGHI), + "DT_ADDRRNGLO": reflect.ValueOf(elf.DT_ADDRRNGLO), + "DT_AUDIT": reflect.ValueOf(elf.DT_AUDIT), + "DT_AUXILIARY": reflect.ValueOf(elf.DT_AUXILIARY), + "DT_BIND_NOW": reflect.ValueOf(elf.DT_BIND_NOW), + "DT_CHECKSUM": reflect.ValueOf(elf.DT_CHECKSUM), + "DT_CONFIG": reflect.ValueOf(elf.DT_CONFIG), + "DT_DEBUG": reflect.ValueOf(elf.DT_DEBUG), + "DT_DEPAUDIT": reflect.ValueOf(elf.DT_DEPAUDIT), + "DT_ENCODING": reflect.ValueOf(elf.DT_ENCODING), + "DT_FEATURE": reflect.ValueOf(elf.DT_FEATURE), + "DT_FILTER": reflect.ValueOf(elf.DT_FILTER), + "DT_FINI": reflect.ValueOf(elf.DT_FINI), + "DT_FINI_ARRAY": reflect.ValueOf(elf.DT_FINI_ARRAY), + "DT_FINI_ARRAYSZ": reflect.ValueOf(elf.DT_FINI_ARRAYSZ), + "DT_FLAGS": reflect.ValueOf(elf.DT_FLAGS), + "DT_FLAGS_1": reflect.ValueOf(elf.DT_FLAGS_1), + "DT_GNU_CONFLICT": reflect.ValueOf(elf.DT_GNU_CONFLICT), + "DT_GNU_CONFLICTSZ": reflect.ValueOf(elf.DT_GNU_CONFLICTSZ), + "DT_GNU_HASH": reflect.ValueOf(elf.DT_GNU_HASH), + "DT_GNU_LIBLIST": reflect.ValueOf(elf.DT_GNU_LIBLIST), + "DT_GNU_LIBLISTSZ": reflect.ValueOf(elf.DT_GNU_LIBLISTSZ), + "DT_GNU_PRELINKED": reflect.ValueOf(elf.DT_GNU_PRELINKED), + "DT_HASH": reflect.ValueOf(elf.DT_HASH), + "DT_HIOS": reflect.ValueOf(elf.DT_HIOS), + "DT_HIPROC": reflect.ValueOf(elf.DT_HIPROC), + "DT_INIT": reflect.ValueOf(elf.DT_INIT), + "DT_INIT_ARRAY": reflect.ValueOf(elf.DT_INIT_ARRAY), + "DT_INIT_ARRAYSZ": reflect.ValueOf(elf.DT_INIT_ARRAYSZ), + "DT_JMPREL": reflect.ValueOf(elf.DT_JMPREL), + "DT_LOOS": reflect.ValueOf(elf.DT_LOOS), + "DT_LOPROC": reflect.ValueOf(elf.DT_LOPROC), + "DT_MIPS_AUX_DYNAMIC": reflect.ValueOf(elf.DT_MIPS_AUX_DYNAMIC), + "DT_MIPS_BASE_ADDRESS": reflect.ValueOf(elf.DT_MIPS_BASE_ADDRESS), + "DT_MIPS_COMPACT_SIZE": reflect.ValueOf(elf.DT_MIPS_COMPACT_SIZE), + "DT_MIPS_CONFLICT": reflect.ValueOf(elf.DT_MIPS_CONFLICT), + "DT_MIPS_CONFLICTNO": reflect.ValueOf(elf.DT_MIPS_CONFLICTNO), + "DT_MIPS_CXX_FLAGS": reflect.ValueOf(elf.DT_MIPS_CXX_FLAGS), + "DT_MIPS_DELTA_CLASS": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS), + "DT_MIPS_DELTA_CLASSSYM": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM), + "DT_MIPS_DELTA_CLASSSYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM_NO), + "DT_MIPS_DELTA_CLASS_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS_NO), + "DT_MIPS_DELTA_INSTANCE": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE), + "DT_MIPS_DELTA_INSTANCE_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE_NO), + "DT_MIPS_DELTA_RELOC": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC), + "DT_MIPS_DELTA_RELOC_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC_NO), + "DT_MIPS_DELTA_SYM": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM), + "DT_MIPS_DELTA_SYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM_NO), + "DT_MIPS_DYNSTR_ALIGN": reflect.ValueOf(elf.DT_MIPS_DYNSTR_ALIGN), + "DT_MIPS_FLAGS": reflect.ValueOf(elf.DT_MIPS_FLAGS), + "DT_MIPS_GOTSYM": reflect.ValueOf(elf.DT_MIPS_GOTSYM), + "DT_MIPS_GP_VALUE": reflect.ValueOf(elf.DT_MIPS_GP_VALUE), + "DT_MIPS_HIDDEN_GOTIDX": reflect.ValueOf(elf.DT_MIPS_HIDDEN_GOTIDX), + "DT_MIPS_HIPAGENO": reflect.ValueOf(elf.DT_MIPS_HIPAGENO), + "DT_MIPS_ICHECKSUM": reflect.ValueOf(elf.DT_MIPS_ICHECKSUM), + "DT_MIPS_INTERFACE": reflect.ValueOf(elf.DT_MIPS_INTERFACE), + "DT_MIPS_INTERFACE_SIZE": reflect.ValueOf(elf.DT_MIPS_INTERFACE_SIZE), + "DT_MIPS_IVERSION": reflect.ValueOf(elf.DT_MIPS_IVERSION), + "DT_MIPS_LIBLIST": reflect.ValueOf(elf.DT_MIPS_LIBLIST), + "DT_MIPS_LIBLISTNO": reflect.ValueOf(elf.DT_MIPS_LIBLISTNO), + "DT_MIPS_LOCALPAGE_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCALPAGE_GOTIDX), + "DT_MIPS_LOCAL_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTIDX), + "DT_MIPS_LOCAL_GOTNO": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTNO), + "DT_MIPS_MSYM": reflect.ValueOf(elf.DT_MIPS_MSYM), + "DT_MIPS_OPTIONS": reflect.ValueOf(elf.DT_MIPS_OPTIONS), + "DT_MIPS_PERF_SUFFIX": reflect.ValueOf(elf.DT_MIPS_PERF_SUFFIX), + "DT_MIPS_PIXIE_INIT": reflect.ValueOf(elf.DT_MIPS_PIXIE_INIT), + "DT_MIPS_PLTGOT": reflect.ValueOf(elf.DT_MIPS_PLTGOT), + "DT_MIPS_PROTECTED_GOTIDX": reflect.ValueOf(elf.DT_MIPS_PROTECTED_GOTIDX), + "DT_MIPS_RLD_MAP": reflect.ValueOf(elf.DT_MIPS_RLD_MAP), + "DT_MIPS_RLD_MAP_REL": reflect.ValueOf(elf.DT_MIPS_RLD_MAP_REL), + "DT_MIPS_RLD_TEXT_RESOLVE_ADDR": reflect.ValueOf(elf.DT_MIPS_RLD_TEXT_RESOLVE_ADDR), + "DT_MIPS_RLD_VERSION": reflect.ValueOf(elf.DT_MIPS_RLD_VERSION), + "DT_MIPS_RWPLT": reflect.ValueOf(elf.DT_MIPS_RWPLT), + "DT_MIPS_SYMBOL_LIB": reflect.ValueOf(elf.DT_MIPS_SYMBOL_LIB), + "DT_MIPS_SYMTABNO": reflect.ValueOf(elf.DT_MIPS_SYMTABNO), + "DT_MIPS_TIME_STAMP": reflect.ValueOf(elf.DT_MIPS_TIME_STAMP), + "DT_MIPS_UNREFEXTNO": reflect.ValueOf(elf.DT_MIPS_UNREFEXTNO), + "DT_MOVEENT": reflect.ValueOf(elf.DT_MOVEENT), + "DT_MOVESZ": reflect.ValueOf(elf.DT_MOVESZ), + "DT_MOVETAB": reflect.ValueOf(elf.DT_MOVETAB), + "DT_NEEDED": reflect.ValueOf(elf.DT_NEEDED), + "DT_NULL": reflect.ValueOf(elf.DT_NULL), + "DT_PLTGOT": reflect.ValueOf(elf.DT_PLTGOT), + "DT_PLTPAD": reflect.ValueOf(elf.DT_PLTPAD), + "DT_PLTPADSZ": reflect.ValueOf(elf.DT_PLTPADSZ), + "DT_PLTREL": reflect.ValueOf(elf.DT_PLTREL), + "DT_PLTRELSZ": reflect.ValueOf(elf.DT_PLTRELSZ), + "DT_POSFLAG_1": reflect.ValueOf(elf.DT_POSFLAG_1), + "DT_PPC64_GLINK": reflect.ValueOf(elf.DT_PPC64_GLINK), + "DT_PPC64_OPD": reflect.ValueOf(elf.DT_PPC64_OPD), + "DT_PPC64_OPDSZ": reflect.ValueOf(elf.DT_PPC64_OPDSZ), + "DT_PPC64_OPT": reflect.ValueOf(elf.DT_PPC64_OPT), + "DT_PPC_GOT": reflect.ValueOf(elf.DT_PPC_GOT), + "DT_PPC_OPT": reflect.ValueOf(elf.DT_PPC_OPT), + "DT_PREINIT_ARRAY": reflect.ValueOf(elf.DT_PREINIT_ARRAY), + "DT_PREINIT_ARRAYSZ": reflect.ValueOf(elf.DT_PREINIT_ARRAYSZ), + "DT_REL": reflect.ValueOf(elf.DT_REL), + "DT_RELA": reflect.ValueOf(elf.DT_RELA), + "DT_RELACOUNT": reflect.ValueOf(elf.DT_RELACOUNT), + "DT_RELAENT": reflect.ValueOf(elf.DT_RELAENT), + "DT_RELASZ": reflect.ValueOf(elf.DT_RELASZ), + "DT_RELCOUNT": reflect.ValueOf(elf.DT_RELCOUNT), + "DT_RELENT": reflect.ValueOf(elf.DT_RELENT), + "DT_RELSZ": reflect.ValueOf(elf.DT_RELSZ), + "DT_RPATH": reflect.ValueOf(elf.DT_RPATH), + "DT_RUNPATH": reflect.ValueOf(elf.DT_RUNPATH), + "DT_SONAME": reflect.ValueOf(elf.DT_SONAME), + "DT_SPARC_REGISTER": reflect.ValueOf(elf.DT_SPARC_REGISTER), + "DT_STRSZ": reflect.ValueOf(elf.DT_STRSZ), + "DT_STRTAB": reflect.ValueOf(elf.DT_STRTAB), + "DT_SYMBOLIC": reflect.ValueOf(elf.DT_SYMBOLIC), + "DT_SYMENT": reflect.ValueOf(elf.DT_SYMENT), + "DT_SYMINENT": reflect.ValueOf(elf.DT_SYMINENT), + "DT_SYMINFO": reflect.ValueOf(elf.DT_SYMINFO), + "DT_SYMINSZ": reflect.ValueOf(elf.DT_SYMINSZ), + "DT_SYMTAB": reflect.ValueOf(elf.DT_SYMTAB), + "DT_SYMTAB_SHNDX": reflect.ValueOf(elf.DT_SYMTAB_SHNDX), + "DT_TEXTREL": reflect.ValueOf(elf.DT_TEXTREL), + "DT_TLSDESC_GOT": reflect.ValueOf(elf.DT_TLSDESC_GOT), + "DT_TLSDESC_PLT": reflect.ValueOf(elf.DT_TLSDESC_PLT), + "DT_USED": reflect.ValueOf(elf.DT_USED), + "DT_VALRNGHI": reflect.ValueOf(elf.DT_VALRNGHI), + "DT_VALRNGLO": reflect.ValueOf(elf.DT_VALRNGLO), + "DT_VERDEF": reflect.ValueOf(elf.DT_VERDEF), + "DT_VERDEFNUM": reflect.ValueOf(elf.DT_VERDEFNUM), + "DT_VERNEED": reflect.ValueOf(elf.DT_VERNEED), + "DT_VERNEEDNUM": reflect.ValueOf(elf.DT_VERNEEDNUM), + "DT_VERSYM": reflect.ValueOf(elf.DT_VERSYM), + "EI_ABIVERSION": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EI_CLASS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EI_DATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EI_NIDENT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EI_OSABI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EI_PAD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "EI_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ELFCLASS32": reflect.ValueOf(elf.ELFCLASS32), + "ELFCLASS64": reflect.ValueOf(elf.ELFCLASS64), + "ELFCLASSNONE": reflect.ValueOf(elf.ELFCLASSNONE), + "ELFDATA2LSB": reflect.ValueOf(elf.ELFDATA2LSB), + "ELFDATA2MSB": reflect.ValueOf(elf.ELFDATA2MSB), + "ELFDATANONE": reflect.ValueOf(elf.ELFDATANONE), + "ELFMAG": reflect.ValueOf(constant.MakeFromLiteral("\"\\u007fELF\"", token.STRING, 0)), + "ELFOSABI_86OPEN": reflect.ValueOf(elf.ELFOSABI_86OPEN), + "ELFOSABI_AIX": reflect.ValueOf(elf.ELFOSABI_AIX), + "ELFOSABI_ARM": reflect.ValueOf(elf.ELFOSABI_ARM), + "ELFOSABI_AROS": reflect.ValueOf(elf.ELFOSABI_AROS), + "ELFOSABI_CLOUDABI": reflect.ValueOf(elf.ELFOSABI_CLOUDABI), + "ELFOSABI_FENIXOS": reflect.ValueOf(elf.ELFOSABI_FENIXOS), + "ELFOSABI_FREEBSD": reflect.ValueOf(elf.ELFOSABI_FREEBSD), + "ELFOSABI_HPUX": reflect.ValueOf(elf.ELFOSABI_HPUX), + "ELFOSABI_HURD": reflect.ValueOf(elf.ELFOSABI_HURD), + "ELFOSABI_IRIX": reflect.ValueOf(elf.ELFOSABI_IRIX), + "ELFOSABI_LINUX": reflect.ValueOf(elf.ELFOSABI_LINUX), + "ELFOSABI_MODESTO": reflect.ValueOf(elf.ELFOSABI_MODESTO), + "ELFOSABI_NETBSD": reflect.ValueOf(elf.ELFOSABI_NETBSD), + "ELFOSABI_NONE": reflect.ValueOf(elf.ELFOSABI_NONE), + "ELFOSABI_NSK": reflect.ValueOf(elf.ELFOSABI_NSK), + "ELFOSABI_OPENBSD": reflect.ValueOf(elf.ELFOSABI_OPENBSD), + "ELFOSABI_OPENVMS": reflect.ValueOf(elf.ELFOSABI_OPENVMS), + "ELFOSABI_SOLARIS": reflect.ValueOf(elf.ELFOSABI_SOLARIS), + "ELFOSABI_STANDALONE": reflect.ValueOf(elf.ELFOSABI_STANDALONE), + "ELFOSABI_TRU64": reflect.ValueOf(elf.ELFOSABI_TRU64), + "EM_386": reflect.ValueOf(elf.EM_386), + "EM_486": reflect.ValueOf(elf.EM_486), + "EM_56800EX": reflect.ValueOf(elf.EM_56800EX), + "EM_68HC05": reflect.ValueOf(elf.EM_68HC05), + "EM_68HC08": reflect.ValueOf(elf.EM_68HC08), + "EM_68HC11": reflect.ValueOf(elf.EM_68HC11), + "EM_68HC12": reflect.ValueOf(elf.EM_68HC12), + "EM_68HC16": reflect.ValueOf(elf.EM_68HC16), + "EM_68K": reflect.ValueOf(elf.EM_68K), + "EM_78KOR": reflect.ValueOf(elf.EM_78KOR), + "EM_8051": reflect.ValueOf(elf.EM_8051), + "EM_860": reflect.ValueOf(elf.EM_860), + "EM_88K": reflect.ValueOf(elf.EM_88K), + "EM_960": reflect.ValueOf(elf.EM_960), + "EM_AARCH64": reflect.ValueOf(elf.EM_AARCH64), + "EM_ALPHA": reflect.ValueOf(elf.EM_ALPHA), + "EM_ALPHA_STD": reflect.ValueOf(elf.EM_ALPHA_STD), + "EM_ALTERA_NIOS2": reflect.ValueOf(elf.EM_ALTERA_NIOS2), + "EM_AMDGPU": reflect.ValueOf(elf.EM_AMDGPU), + "EM_ARC": reflect.ValueOf(elf.EM_ARC), + "EM_ARCA": reflect.ValueOf(elf.EM_ARCA), + "EM_ARC_COMPACT": reflect.ValueOf(elf.EM_ARC_COMPACT), + "EM_ARC_COMPACT2": reflect.ValueOf(elf.EM_ARC_COMPACT2), + "EM_ARM": reflect.ValueOf(elf.EM_ARM), + "EM_AVR": reflect.ValueOf(elf.EM_AVR), + "EM_AVR32": reflect.ValueOf(elf.EM_AVR32), + "EM_BA1": reflect.ValueOf(elf.EM_BA1), + "EM_BA2": reflect.ValueOf(elf.EM_BA2), + "EM_BLACKFIN": reflect.ValueOf(elf.EM_BLACKFIN), + "EM_BPF": reflect.ValueOf(elf.EM_BPF), + "EM_C166": reflect.ValueOf(elf.EM_C166), + "EM_CDP": reflect.ValueOf(elf.EM_CDP), + "EM_CE": reflect.ValueOf(elf.EM_CE), + "EM_CLOUDSHIELD": reflect.ValueOf(elf.EM_CLOUDSHIELD), + "EM_COGE": reflect.ValueOf(elf.EM_COGE), + "EM_COLDFIRE": reflect.ValueOf(elf.EM_COLDFIRE), + "EM_COOL": reflect.ValueOf(elf.EM_COOL), + "EM_COREA_1ST": reflect.ValueOf(elf.EM_COREA_1ST), + "EM_COREA_2ND": reflect.ValueOf(elf.EM_COREA_2ND), + "EM_CR": reflect.ValueOf(elf.EM_CR), + "EM_CR16": reflect.ValueOf(elf.EM_CR16), + "EM_CRAYNV2": reflect.ValueOf(elf.EM_CRAYNV2), + "EM_CRIS": reflect.ValueOf(elf.EM_CRIS), + "EM_CRX": reflect.ValueOf(elf.EM_CRX), + "EM_CSR_KALIMBA": reflect.ValueOf(elf.EM_CSR_KALIMBA), + "EM_CUDA": reflect.ValueOf(elf.EM_CUDA), + "EM_CYPRESS_M8C": reflect.ValueOf(elf.EM_CYPRESS_M8C), + "EM_D10V": reflect.ValueOf(elf.EM_D10V), + "EM_D30V": reflect.ValueOf(elf.EM_D30V), + "EM_DSP24": reflect.ValueOf(elf.EM_DSP24), + "EM_DSPIC30F": reflect.ValueOf(elf.EM_DSPIC30F), + "EM_DXP": reflect.ValueOf(elf.EM_DXP), + "EM_ECOG1": reflect.ValueOf(elf.EM_ECOG1), + "EM_ECOG16": reflect.ValueOf(elf.EM_ECOG16), + "EM_ECOG1X": reflect.ValueOf(elf.EM_ECOG1X), + "EM_ECOG2": reflect.ValueOf(elf.EM_ECOG2), + "EM_ETPU": reflect.ValueOf(elf.EM_ETPU), + "EM_EXCESS": reflect.ValueOf(elf.EM_EXCESS), + "EM_F2MC16": reflect.ValueOf(elf.EM_F2MC16), + "EM_FIREPATH": reflect.ValueOf(elf.EM_FIREPATH), + "EM_FR20": reflect.ValueOf(elf.EM_FR20), + "EM_FR30": reflect.ValueOf(elf.EM_FR30), + "EM_FT32": reflect.ValueOf(elf.EM_FT32), + "EM_FX66": reflect.ValueOf(elf.EM_FX66), + "EM_H8S": reflect.ValueOf(elf.EM_H8S), + "EM_H8_300": reflect.ValueOf(elf.EM_H8_300), + "EM_H8_300H": reflect.ValueOf(elf.EM_H8_300H), + "EM_H8_500": reflect.ValueOf(elf.EM_H8_500), + "EM_HUANY": reflect.ValueOf(elf.EM_HUANY), + "EM_IA_64": reflect.ValueOf(elf.EM_IA_64), + "EM_INTEL205": reflect.ValueOf(elf.EM_INTEL205), + "EM_INTEL206": reflect.ValueOf(elf.EM_INTEL206), + "EM_INTEL207": reflect.ValueOf(elf.EM_INTEL207), + "EM_INTEL208": reflect.ValueOf(elf.EM_INTEL208), + "EM_INTEL209": reflect.ValueOf(elf.EM_INTEL209), + "EM_IP2K": reflect.ValueOf(elf.EM_IP2K), + "EM_JAVELIN": reflect.ValueOf(elf.EM_JAVELIN), + "EM_K10M": reflect.ValueOf(elf.EM_K10M), + "EM_KM32": reflect.ValueOf(elf.EM_KM32), + "EM_KMX16": reflect.ValueOf(elf.EM_KMX16), + "EM_KMX32": reflect.ValueOf(elf.EM_KMX32), + "EM_KMX8": reflect.ValueOf(elf.EM_KMX8), + "EM_KVARC": reflect.ValueOf(elf.EM_KVARC), + "EM_L10M": reflect.ValueOf(elf.EM_L10M), + "EM_LANAI": reflect.ValueOf(elf.EM_LANAI), + "EM_LATTICEMICO32": reflect.ValueOf(elf.EM_LATTICEMICO32), + "EM_M16C": reflect.ValueOf(elf.EM_M16C), + "EM_M32": reflect.ValueOf(elf.EM_M32), + "EM_M32C": reflect.ValueOf(elf.EM_M32C), + "EM_M32R": reflect.ValueOf(elf.EM_M32R), + "EM_MANIK": reflect.ValueOf(elf.EM_MANIK), + "EM_MAX": reflect.ValueOf(elf.EM_MAX), + "EM_MAXQ30": reflect.ValueOf(elf.EM_MAXQ30), + "EM_MCHP_PIC": reflect.ValueOf(elf.EM_MCHP_PIC), + "EM_MCST_ELBRUS": reflect.ValueOf(elf.EM_MCST_ELBRUS), + "EM_ME16": reflect.ValueOf(elf.EM_ME16), + "EM_METAG": reflect.ValueOf(elf.EM_METAG), + "EM_MICROBLAZE": reflect.ValueOf(elf.EM_MICROBLAZE), + "EM_MIPS": reflect.ValueOf(elf.EM_MIPS), + "EM_MIPS_RS3_LE": reflect.ValueOf(elf.EM_MIPS_RS3_LE), + "EM_MIPS_RS4_BE": reflect.ValueOf(elf.EM_MIPS_RS4_BE), + "EM_MIPS_X": reflect.ValueOf(elf.EM_MIPS_X), + "EM_MMA": reflect.ValueOf(elf.EM_MMA), + "EM_MMDSP_PLUS": reflect.ValueOf(elf.EM_MMDSP_PLUS), + "EM_MMIX": reflect.ValueOf(elf.EM_MMIX), + "EM_MN10200": reflect.ValueOf(elf.EM_MN10200), + "EM_MN10300": reflect.ValueOf(elf.EM_MN10300), + "EM_MOXIE": reflect.ValueOf(elf.EM_MOXIE), + "EM_MSP430": reflect.ValueOf(elf.EM_MSP430), + "EM_NCPU": reflect.ValueOf(elf.EM_NCPU), + "EM_NDR1": reflect.ValueOf(elf.EM_NDR1), + "EM_NDS32": reflect.ValueOf(elf.EM_NDS32), + "EM_NONE": reflect.ValueOf(elf.EM_NONE), + "EM_NORC": reflect.ValueOf(elf.EM_NORC), + "EM_NS32K": reflect.ValueOf(elf.EM_NS32K), + "EM_OPEN8": reflect.ValueOf(elf.EM_OPEN8), + "EM_OPENRISC": reflect.ValueOf(elf.EM_OPENRISC), + "EM_PARISC": reflect.ValueOf(elf.EM_PARISC), + "EM_PCP": reflect.ValueOf(elf.EM_PCP), + "EM_PDP10": reflect.ValueOf(elf.EM_PDP10), + "EM_PDP11": reflect.ValueOf(elf.EM_PDP11), + "EM_PDSP": reflect.ValueOf(elf.EM_PDSP), + "EM_PJ": reflect.ValueOf(elf.EM_PJ), + "EM_PPC": reflect.ValueOf(elf.EM_PPC), + "EM_PPC64": reflect.ValueOf(elf.EM_PPC64), + "EM_PRISM": reflect.ValueOf(elf.EM_PRISM), + "EM_QDSP6": reflect.ValueOf(elf.EM_QDSP6), + "EM_R32C": reflect.ValueOf(elf.EM_R32C), + "EM_RCE": reflect.ValueOf(elf.EM_RCE), + "EM_RH32": reflect.ValueOf(elf.EM_RH32), + "EM_RISCV": reflect.ValueOf(elf.EM_RISCV), + "EM_RL78": reflect.ValueOf(elf.EM_RL78), + "EM_RS08": reflect.ValueOf(elf.EM_RS08), + "EM_RX": reflect.ValueOf(elf.EM_RX), + "EM_S370": reflect.ValueOf(elf.EM_S370), + "EM_S390": reflect.ValueOf(elf.EM_S390), + "EM_SCORE7": reflect.ValueOf(elf.EM_SCORE7), + "EM_SEP": reflect.ValueOf(elf.EM_SEP), + "EM_SE_C17": reflect.ValueOf(elf.EM_SE_C17), + "EM_SE_C33": reflect.ValueOf(elf.EM_SE_C33), + "EM_SH": reflect.ValueOf(elf.EM_SH), + "EM_SHARC": reflect.ValueOf(elf.EM_SHARC), + "EM_SLE9X": reflect.ValueOf(elf.EM_SLE9X), + "EM_SNP1K": reflect.ValueOf(elf.EM_SNP1K), + "EM_SPARC": reflect.ValueOf(elf.EM_SPARC), + "EM_SPARC32PLUS": reflect.ValueOf(elf.EM_SPARC32PLUS), + "EM_SPARCV9": reflect.ValueOf(elf.EM_SPARCV9), + "EM_ST100": reflect.ValueOf(elf.EM_ST100), + "EM_ST19": reflect.ValueOf(elf.EM_ST19), + "EM_ST200": reflect.ValueOf(elf.EM_ST200), + "EM_ST7": reflect.ValueOf(elf.EM_ST7), + "EM_ST9PLUS": reflect.ValueOf(elf.EM_ST9PLUS), + "EM_STARCORE": reflect.ValueOf(elf.EM_STARCORE), + "EM_STM8": reflect.ValueOf(elf.EM_STM8), + "EM_STXP7X": reflect.ValueOf(elf.EM_STXP7X), + "EM_SVX": reflect.ValueOf(elf.EM_SVX), + "EM_TILE64": reflect.ValueOf(elf.EM_TILE64), + "EM_TILEGX": reflect.ValueOf(elf.EM_TILEGX), + "EM_TILEPRO": reflect.ValueOf(elf.EM_TILEPRO), + "EM_TINYJ": reflect.ValueOf(elf.EM_TINYJ), + "EM_TI_ARP32": reflect.ValueOf(elf.EM_TI_ARP32), + "EM_TI_C2000": reflect.ValueOf(elf.EM_TI_C2000), + "EM_TI_C5500": reflect.ValueOf(elf.EM_TI_C5500), + "EM_TI_C6000": reflect.ValueOf(elf.EM_TI_C6000), + "EM_TI_PRU": reflect.ValueOf(elf.EM_TI_PRU), + "EM_TMM_GPP": reflect.ValueOf(elf.EM_TMM_GPP), + "EM_TPC": reflect.ValueOf(elf.EM_TPC), + "EM_TRICORE": reflect.ValueOf(elf.EM_TRICORE), + "EM_TRIMEDIA": reflect.ValueOf(elf.EM_TRIMEDIA), + "EM_TSK3000": reflect.ValueOf(elf.EM_TSK3000), + "EM_UNICORE": reflect.ValueOf(elf.EM_UNICORE), + "EM_V800": reflect.ValueOf(elf.EM_V800), + "EM_V850": reflect.ValueOf(elf.EM_V850), + "EM_VAX": reflect.ValueOf(elf.EM_VAX), + "EM_VIDEOCORE": reflect.ValueOf(elf.EM_VIDEOCORE), + "EM_VIDEOCORE3": reflect.ValueOf(elf.EM_VIDEOCORE3), + "EM_VIDEOCORE5": reflect.ValueOf(elf.EM_VIDEOCORE5), + "EM_VISIUM": reflect.ValueOf(elf.EM_VISIUM), + "EM_VPP500": reflect.ValueOf(elf.EM_VPP500), + "EM_X86_64": reflect.ValueOf(elf.EM_X86_64), + "EM_XCORE": reflect.ValueOf(elf.EM_XCORE), + "EM_XGATE": reflect.ValueOf(elf.EM_XGATE), + "EM_XIMO16": reflect.ValueOf(elf.EM_XIMO16), + "EM_XTENSA": reflect.ValueOf(elf.EM_XTENSA), + "EM_Z80": reflect.ValueOf(elf.EM_Z80), + "EM_ZSP": reflect.ValueOf(elf.EM_ZSP), + "ET_CORE": reflect.ValueOf(elf.ET_CORE), + "ET_DYN": reflect.ValueOf(elf.ET_DYN), + "ET_EXEC": reflect.ValueOf(elf.ET_EXEC), + "ET_HIOS": reflect.ValueOf(elf.ET_HIOS), + "ET_HIPROC": reflect.ValueOf(elf.ET_HIPROC), + "ET_LOOS": reflect.ValueOf(elf.ET_LOOS), + "ET_LOPROC": reflect.ValueOf(elf.ET_LOPROC), + "ET_NONE": reflect.ValueOf(elf.ET_NONE), + "ET_REL": reflect.ValueOf(elf.ET_REL), + "EV_CURRENT": reflect.ValueOf(elf.EV_CURRENT), + "EV_NONE": reflect.ValueOf(elf.EV_NONE), + "ErrNoSymbols": reflect.ValueOf(&elf.ErrNoSymbols).Elem(), + "NT_FPREGSET": reflect.ValueOf(elf.NT_FPREGSET), + "NT_PRPSINFO": reflect.ValueOf(elf.NT_PRPSINFO), + "NT_PRSTATUS": reflect.ValueOf(elf.NT_PRSTATUS), + "NewFile": reflect.ValueOf(elf.NewFile), + "Open": reflect.ValueOf(elf.Open), + "PF_MASKOS": reflect.ValueOf(elf.PF_MASKOS), + "PF_MASKPROC": reflect.ValueOf(elf.PF_MASKPROC), + "PF_R": reflect.ValueOf(elf.PF_R), + "PF_W": reflect.ValueOf(elf.PF_W), + "PF_X": reflect.ValueOf(elf.PF_X), + "PT_AARCH64_ARCHEXT": reflect.ValueOf(elf.PT_AARCH64_ARCHEXT), + "PT_AARCH64_UNWIND": reflect.ValueOf(elf.PT_AARCH64_UNWIND), + "PT_ARM_ARCHEXT": reflect.ValueOf(elf.PT_ARM_ARCHEXT), + "PT_ARM_EXIDX": reflect.ValueOf(elf.PT_ARM_EXIDX), + "PT_DYNAMIC": reflect.ValueOf(elf.PT_DYNAMIC), + "PT_GNU_EH_FRAME": reflect.ValueOf(elf.PT_GNU_EH_FRAME), + "PT_GNU_MBIND_HI": reflect.ValueOf(elf.PT_GNU_MBIND_HI), + "PT_GNU_MBIND_LO": reflect.ValueOf(elf.PT_GNU_MBIND_LO), + "PT_GNU_PROPERTY": reflect.ValueOf(elf.PT_GNU_PROPERTY), + "PT_GNU_RELRO": reflect.ValueOf(elf.PT_GNU_RELRO), + "PT_GNU_STACK": reflect.ValueOf(elf.PT_GNU_STACK), + "PT_HIOS": reflect.ValueOf(elf.PT_HIOS), + "PT_HIPROC": reflect.ValueOf(elf.PT_HIPROC), + "PT_INTERP": reflect.ValueOf(elf.PT_INTERP), + "PT_LOAD": reflect.ValueOf(elf.PT_LOAD), + "PT_LOOS": reflect.ValueOf(elf.PT_LOOS), + "PT_LOPROC": reflect.ValueOf(elf.PT_LOPROC), + "PT_MIPS_ABIFLAGS": reflect.ValueOf(elf.PT_MIPS_ABIFLAGS), + "PT_MIPS_OPTIONS": reflect.ValueOf(elf.PT_MIPS_OPTIONS), + "PT_MIPS_REGINFO": reflect.ValueOf(elf.PT_MIPS_REGINFO), + "PT_MIPS_RTPROC": reflect.ValueOf(elf.PT_MIPS_RTPROC), + "PT_NOTE": reflect.ValueOf(elf.PT_NOTE), + "PT_NULL": reflect.ValueOf(elf.PT_NULL), + "PT_OPENBSD_BOOTDATA": reflect.ValueOf(elf.PT_OPENBSD_BOOTDATA), + "PT_OPENBSD_RANDOMIZE": reflect.ValueOf(elf.PT_OPENBSD_RANDOMIZE), + "PT_OPENBSD_WXNEEDED": reflect.ValueOf(elf.PT_OPENBSD_WXNEEDED), + "PT_PAX_FLAGS": reflect.ValueOf(elf.PT_PAX_FLAGS), + "PT_PHDR": reflect.ValueOf(elf.PT_PHDR), + "PT_S390_PGSTE": reflect.ValueOf(elf.PT_S390_PGSTE), + "PT_SHLIB": reflect.ValueOf(elf.PT_SHLIB), + "PT_SUNWSTACK": reflect.ValueOf(elf.PT_SUNWSTACK), + "PT_SUNW_EH_FRAME": reflect.ValueOf(elf.PT_SUNW_EH_FRAME), + "PT_TLS": reflect.ValueOf(elf.PT_TLS), + "R_386_16": reflect.ValueOf(elf.R_386_16), + "R_386_32": reflect.ValueOf(elf.R_386_32), + "R_386_32PLT": reflect.ValueOf(elf.R_386_32PLT), + "R_386_8": reflect.ValueOf(elf.R_386_8), + "R_386_COPY": reflect.ValueOf(elf.R_386_COPY), + "R_386_GLOB_DAT": reflect.ValueOf(elf.R_386_GLOB_DAT), + "R_386_GOT32": reflect.ValueOf(elf.R_386_GOT32), + "R_386_GOT32X": reflect.ValueOf(elf.R_386_GOT32X), + "R_386_GOTOFF": reflect.ValueOf(elf.R_386_GOTOFF), + "R_386_GOTPC": reflect.ValueOf(elf.R_386_GOTPC), + "R_386_IRELATIVE": reflect.ValueOf(elf.R_386_IRELATIVE), + "R_386_JMP_SLOT": reflect.ValueOf(elf.R_386_JMP_SLOT), + "R_386_NONE": reflect.ValueOf(elf.R_386_NONE), + "R_386_PC16": reflect.ValueOf(elf.R_386_PC16), + "R_386_PC32": reflect.ValueOf(elf.R_386_PC32), + "R_386_PC8": reflect.ValueOf(elf.R_386_PC8), + "R_386_PLT32": reflect.ValueOf(elf.R_386_PLT32), + "R_386_RELATIVE": reflect.ValueOf(elf.R_386_RELATIVE), + "R_386_SIZE32": reflect.ValueOf(elf.R_386_SIZE32), + "R_386_TLS_DESC": reflect.ValueOf(elf.R_386_TLS_DESC), + "R_386_TLS_DESC_CALL": reflect.ValueOf(elf.R_386_TLS_DESC_CALL), + "R_386_TLS_DTPMOD32": reflect.ValueOf(elf.R_386_TLS_DTPMOD32), + "R_386_TLS_DTPOFF32": reflect.ValueOf(elf.R_386_TLS_DTPOFF32), + "R_386_TLS_GD": reflect.ValueOf(elf.R_386_TLS_GD), + "R_386_TLS_GD_32": reflect.ValueOf(elf.R_386_TLS_GD_32), + "R_386_TLS_GD_CALL": reflect.ValueOf(elf.R_386_TLS_GD_CALL), + "R_386_TLS_GD_POP": reflect.ValueOf(elf.R_386_TLS_GD_POP), + "R_386_TLS_GD_PUSH": reflect.ValueOf(elf.R_386_TLS_GD_PUSH), + "R_386_TLS_GOTDESC": reflect.ValueOf(elf.R_386_TLS_GOTDESC), + "R_386_TLS_GOTIE": reflect.ValueOf(elf.R_386_TLS_GOTIE), + "R_386_TLS_IE": reflect.ValueOf(elf.R_386_TLS_IE), + "R_386_TLS_IE_32": reflect.ValueOf(elf.R_386_TLS_IE_32), + "R_386_TLS_LDM": reflect.ValueOf(elf.R_386_TLS_LDM), + "R_386_TLS_LDM_32": reflect.ValueOf(elf.R_386_TLS_LDM_32), + "R_386_TLS_LDM_CALL": reflect.ValueOf(elf.R_386_TLS_LDM_CALL), + "R_386_TLS_LDM_POP": reflect.ValueOf(elf.R_386_TLS_LDM_POP), + "R_386_TLS_LDM_PUSH": reflect.ValueOf(elf.R_386_TLS_LDM_PUSH), + "R_386_TLS_LDO_32": reflect.ValueOf(elf.R_386_TLS_LDO_32), + "R_386_TLS_LE": reflect.ValueOf(elf.R_386_TLS_LE), + "R_386_TLS_LE_32": reflect.ValueOf(elf.R_386_TLS_LE_32), + "R_386_TLS_TPOFF": reflect.ValueOf(elf.R_386_TLS_TPOFF), + "R_386_TLS_TPOFF32": reflect.ValueOf(elf.R_386_TLS_TPOFF32), + "R_390_12": reflect.ValueOf(elf.R_390_12), + "R_390_16": reflect.ValueOf(elf.R_390_16), + "R_390_20": reflect.ValueOf(elf.R_390_20), + "R_390_32": reflect.ValueOf(elf.R_390_32), + "R_390_64": reflect.ValueOf(elf.R_390_64), + "R_390_8": reflect.ValueOf(elf.R_390_8), + "R_390_COPY": reflect.ValueOf(elf.R_390_COPY), + "R_390_GLOB_DAT": reflect.ValueOf(elf.R_390_GLOB_DAT), + "R_390_GOT12": reflect.ValueOf(elf.R_390_GOT12), + "R_390_GOT16": reflect.ValueOf(elf.R_390_GOT16), + "R_390_GOT20": reflect.ValueOf(elf.R_390_GOT20), + "R_390_GOT32": reflect.ValueOf(elf.R_390_GOT32), + "R_390_GOT64": reflect.ValueOf(elf.R_390_GOT64), + "R_390_GOTENT": reflect.ValueOf(elf.R_390_GOTENT), + "R_390_GOTOFF": reflect.ValueOf(elf.R_390_GOTOFF), + "R_390_GOTOFF16": reflect.ValueOf(elf.R_390_GOTOFF16), + "R_390_GOTOFF64": reflect.ValueOf(elf.R_390_GOTOFF64), + "R_390_GOTPC": reflect.ValueOf(elf.R_390_GOTPC), + "R_390_GOTPCDBL": reflect.ValueOf(elf.R_390_GOTPCDBL), + "R_390_GOTPLT12": reflect.ValueOf(elf.R_390_GOTPLT12), + "R_390_GOTPLT16": reflect.ValueOf(elf.R_390_GOTPLT16), + "R_390_GOTPLT20": reflect.ValueOf(elf.R_390_GOTPLT20), + "R_390_GOTPLT32": reflect.ValueOf(elf.R_390_GOTPLT32), + "R_390_GOTPLT64": reflect.ValueOf(elf.R_390_GOTPLT64), + "R_390_GOTPLTENT": reflect.ValueOf(elf.R_390_GOTPLTENT), + "R_390_GOTPLTOFF16": reflect.ValueOf(elf.R_390_GOTPLTOFF16), + "R_390_GOTPLTOFF32": reflect.ValueOf(elf.R_390_GOTPLTOFF32), + "R_390_GOTPLTOFF64": reflect.ValueOf(elf.R_390_GOTPLTOFF64), + "R_390_JMP_SLOT": reflect.ValueOf(elf.R_390_JMP_SLOT), + "R_390_NONE": reflect.ValueOf(elf.R_390_NONE), + "R_390_PC16": reflect.ValueOf(elf.R_390_PC16), + "R_390_PC16DBL": reflect.ValueOf(elf.R_390_PC16DBL), + "R_390_PC32": reflect.ValueOf(elf.R_390_PC32), + "R_390_PC32DBL": reflect.ValueOf(elf.R_390_PC32DBL), + "R_390_PC64": reflect.ValueOf(elf.R_390_PC64), + "R_390_PLT16DBL": reflect.ValueOf(elf.R_390_PLT16DBL), + "R_390_PLT32": reflect.ValueOf(elf.R_390_PLT32), + "R_390_PLT32DBL": reflect.ValueOf(elf.R_390_PLT32DBL), + "R_390_PLT64": reflect.ValueOf(elf.R_390_PLT64), + "R_390_RELATIVE": reflect.ValueOf(elf.R_390_RELATIVE), + "R_390_TLS_DTPMOD": reflect.ValueOf(elf.R_390_TLS_DTPMOD), + "R_390_TLS_DTPOFF": reflect.ValueOf(elf.R_390_TLS_DTPOFF), + "R_390_TLS_GD32": reflect.ValueOf(elf.R_390_TLS_GD32), + "R_390_TLS_GD64": reflect.ValueOf(elf.R_390_TLS_GD64), + "R_390_TLS_GDCALL": reflect.ValueOf(elf.R_390_TLS_GDCALL), + "R_390_TLS_GOTIE12": reflect.ValueOf(elf.R_390_TLS_GOTIE12), + "R_390_TLS_GOTIE20": reflect.ValueOf(elf.R_390_TLS_GOTIE20), + "R_390_TLS_GOTIE32": reflect.ValueOf(elf.R_390_TLS_GOTIE32), + "R_390_TLS_GOTIE64": reflect.ValueOf(elf.R_390_TLS_GOTIE64), + "R_390_TLS_IE32": reflect.ValueOf(elf.R_390_TLS_IE32), + "R_390_TLS_IE64": reflect.ValueOf(elf.R_390_TLS_IE64), + "R_390_TLS_IEENT": reflect.ValueOf(elf.R_390_TLS_IEENT), + "R_390_TLS_LDCALL": reflect.ValueOf(elf.R_390_TLS_LDCALL), + "R_390_TLS_LDM32": reflect.ValueOf(elf.R_390_TLS_LDM32), + "R_390_TLS_LDM64": reflect.ValueOf(elf.R_390_TLS_LDM64), + "R_390_TLS_LDO32": reflect.ValueOf(elf.R_390_TLS_LDO32), + "R_390_TLS_LDO64": reflect.ValueOf(elf.R_390_TLS_LDO64), + "R_390_TLS_LE32": reflect.ValueOf(elf.R_390_TLS_LE32), + "R_390_TLS_LE64": reflect.ValueOf(elf.R_390_TLS_LE64), + "R_390_TLS_LOAD": reflect.ValueOf(elf.R_390_TLS_LOAD), + "R_390_TLS_TPOFF": reflect.ValueOf(elf.R_390_TLS_TPOFF), + "R_AARCH64_ABS16": reflect.ValueOf(elf.R_AARCH64_ABS16), + "R_AARCH64_ABS32": reflect.ValueOf(elf.R_AARCH64_ABS32), + "R_AARCH64_ABS64": reflect.ValueOf(elf.R_AARCH64_ABS64), + "R_AARCH64_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_ADD_ABS_LO12_NC), + "R_AARCH64_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_ADR_GOT_PAGE), + "R_AARCH64_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_LO21), + "R_AARCH64_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21), + "R_AARCH64_ADR_PREL_PG_HI21_NC": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21_NC), + "R_AARCH64_CALL26": reflect.ValueOf(elf.R_AARCH64_CALL26), + "R_AARCH64_CONDBR19": reflect.ValueOf(elf.R_AARCH64_CONDBR19), + "R_AARCH64_COPY": reflect.ValueOf(elf.R_AARCH64_COPY), + "R_AARCH64_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_GLOB_DAT), + "R_AARCH64_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_GOT_LD_PREL19), + "R_AARCH64_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_IRELATIVE), + "R_AARCH64_JUMP26": reflect.ValueOf(elf.R_AARCH64_JUMP26), + "R_AARCH64_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_JUMP_SLOT), + "R_AARCH64_LD64_GOTOFF_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTOFF_LO15), + "R_AARCH64_LD64_GOTPAGE_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTPAGE_LO15), + "R_AARCH64_LD64_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LD64_GOT_LO12_NC), + "R_AARCH64_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST128_ABS_LO12_NC), + "R_AARCH64_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST16_ABS_LO12_NC), + "R_AARCH64_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST32_ABS_LO12_NC), + "R_AARCH64_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST64_ABS_LO12_NC), + "R_AARCH64_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST8_ABS_LO12_NC), + "R_AARCH64_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_LD_PREL_LO19), + "R_AARCH64_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G0), + "R_AARCH64_MOVW_SABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G1), + "R_AARCH64_MOVW_SABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G2), + "R_AARCH64_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0), + "R_AARCH64_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0_NC), + "R_AARCH64_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1), + "R_AARCH64_MOVW_UABS_G1_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1_NC), + "R_AARCH64_MOVW_UABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2), + "R_AARCH64_MOVW_UABS_G2_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2_NC), + "R_AARCH64_MOVW_UABS_G3": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G3), + "R_AARCH64_NONE": reflect.ValueOf(elf.R_AARCH64_NONE), + "R_AARCH64_NULL": reflect.ValueOf(elf.R_AARCH64_NULL), + "R_AARCH64_P32_ABS16": reflect.ValueOf(elf.R_AARCH64_P32_ABS16), + "R_AARCH64_P32_ABS32": reflect.ValueOf(elf.R_AARCH64_P32_ABS32), + "R_AARCH64_P32_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_ADD_ABS_LO12_NC), + "R_AARCH64_P32_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_P32_ADR_GOT_PAGE), + "R_AARCH64_P32_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_LO21), + "R_AARCH64_P32_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_PG_HI21), + "R_AARCH64_P32_CALL26": reflect.ValueOf(elf.R_AARCH64_P32_CALL26), + "R_AARCH64_P32_CONDBR19": reflect.ValueOf(elf.R_AARCH64_P32_CONDBR19), + "R_AARCH64_P32_COPY": reflect.ValueOf(elf.R_AARCH64_P32_COPY), + "R_AARCH64_P32_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_P32_GLOB_DAT), + "R_AARCH64_P32_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_GOT_LD_PREL19), + "R_AARCH64_P32_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_IRELATIVE), + "R_AARCH64_P32_JUMP26": reflect.ValueOf(elf.R_AARCH64_P32_JUMP26), + "R_AARCH64_P32_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_P32_JUMP_SLOT), + "R_AARCH64_P32_LD32_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LD32_GOT_LO12_NC), + "R_AARCH64_P32_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST128_ABS_LO12_NC), + "R_AARCH64_P32_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST16_ABS_LO12_NC), + "R_AARCH64_P32_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST32_ABS_LO12_NC), + "R_AARCH64_P32_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST64_ABS_LO12_NC), + "R_AARCH64_P32_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST8_ABS_LO12_NC), + "R_AARCH64_P32_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_P32_LD_PREL_LO19), + "R_AARCH64_P32_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_SABS_G0), + "R_AARCH64_P32_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0), + "R_AARCH64_P32_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0_NC), + "R_AARCH64_P32_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G1), + "R_AARCH64_P32_PREL16": reflect.ValueOf(elf.R_AARCH64_P32_PREL16), + "R_AARCH64_P32_PREL32": reflect.ValueOf(elf.R_AARCH64_P32_PREL32), + "R_AARCH64_P32_RELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_RELATIVE), + "R_AARCH64_P32_TLSDESC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC), + "R_AARCH64_P32_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADD_LO12_NC), + "R_AARCH64_P32_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PAGE21), + "R_AARCH64_P32_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PREL21), + "R_AARCH64_P32_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_CALL), + "R_AARCH64_P32_TLSDESC_LD32_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD32_LO12_NC), + "R_AARCH64_P32_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD_PREL19), + "R_AARCH64_P32_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADD_LO12_NC), + "R_AARCH64_P32_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADR_PAGE21), + "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21), + "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC), + "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19), + "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12), + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12), + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC), + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0), + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC), + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1), + "R_AARCH64_P32_TLS_DTPMOD": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPMOD), + "R_AARCH64_P32_TLS_DTPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPREL), + "R_AARCH64_P32_TLS_TPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_TPREL), + "R_AARCH64_P32_TSTBR14": reflect.ValueOf(elf.R_AARCH64_P32_TSTBR14), + "R_AARCH64_PREL16": reflect.ValueOf(elf.R_AARCH64_PREL16), + "R_AARCH64_PREL32": reflect.ValueOf(elf.R_AARCH64_PREL32), + "R_AARCH64_PREL64": reflect.ValueOf(elf.R_AARCH64_PREL64), + "R_AARCH64_RELATIVE": reflect.ValueOf(elf.R_AARCH64_RELATIVE), + "R_AARCH64_TLSDESC": reflect.ValueOf(elf.R_AARCH64_TLSDESC), + "R_AARCH64_TLSDESC_ADD": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD), + "R_AARCH64_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD_LO12_NC), + "R_AARCH64_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PAGE21), + "R_AARCH64_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PREL21), + "R_AARCH64_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_TLSDESC_CALL), + "R_AARCH64_TLSDESC_LD64_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD64_LO12_NC), + "R_AARCH64_TLSDESC_LDR": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LDR), + "R_AARCH64_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD_PREL19), + "R_AARCH64_TLSDESC_OFF_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G0_NC), + "R_AARCH64_TLSDESC_OFF_G1": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G1), + "R_AARCH64_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADD_LO12_NC), + "R_AARCH64_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PAGE21), + "R_AARCH64_TLSGD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PREL21), + "R_AARCH64_TLSGD_MOVW_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G0_NC), + "R_AARCH64_TLSGD_MOVW_G1": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G1), + "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21), + "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC), + "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19), + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC), + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1), + "R_AARCH64_TLSLD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PAGE21), + "R_AARCH64_TLSLD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PREL21), + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12), + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC), + "R_AARCH64_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_HI12), + "R_AARCH64_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12), + "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC), + "R_AARCH64_TLSLE_LDST128_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12), + "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC), + "R_AARCH64_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0), + "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC), + "R_AARCH64_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1), + "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC), + "R_AARCH64_TLSLE_MOVW_TPREL_G2": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G2), + "R_AARCH64_TLS_DTPMOD64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPMOD64), + "R_AARCH64_TLS_DTPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPREL64), + "R_AARCH64_TLS_TPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_TPREL64), + "R_AARCH64_TSTBR14": reflect.ValueOf(elf.R_AARCH64_TSTBR14), + "R_ALPHA_BRADDR": reflect.ValueOf(elf.R_ALPHA_BRADDR), + "R_ALPHA_COPY": reflect.ValueOf(elf.R_ALPHA_COPY), + "R_ALPHA_GLOB_DAT": reflect.ValueOf(elf.R_ALPHA_GLOB_DAT), + "R_ALPHA_GPDISP": reflect.ValueOf(elf.R_ALPHA_GPDISP), + "R_ALPHA_GPREL32": reflect.ValueOf(elf.R_ALPHA_GPREL32), + "R_ALPHA_GPRELHIGH": reflect.ValueOf(elf.R_ALPHA_GPRELHIGH), + "R_ALPHA_GPRELLOW": reflect.ValueOf(elf.R_ALPHA_GPRELLOW), + "R_ALPHA_GPVALUE": reflect.ValueOf(elf.R_ALPHA_GPVALUE), + "R_ALPHA_HINT": reflect.ValueOf(elf.R_ALPHA_HINT), + "R_ALPHA_IMMED_BR_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_BR_HI32), + "R_ALPHA_IMMED_GP_16": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_16), + "R_ALPHA_IMMED_GP_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_HI32), + "R_ALPHA_IMMED_LO32": reflect.ValueOf(elf.R_ALPHA_IMMED_LO32), + "R_ALPHA_IMMED_SCN_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_SCN_HI32), + "R_ALPHA_JMP_SLOT": reflect.ValueOf(elf.R_ALPHA_JMP_SLOT), + "R_ALPHA_LITERAL": reflect.ValueOf(elf.R_ALPHA_LITERAL), + "R_ALPHA_LITUSE": reflect.ValueOf(elf.R_ALPHA_LITUSE), + "R_ALPHA_NONE": reflect.ValueOf(elf.R_ALPHA_NONE), + "R_ALPHA_OP_PRSHIFT": reflect.ValueOf(elf.R_ALPHA_OP_PRSHIFT), + "R_ALPHA_OP_PSUB": reflect.ValueOf(elf.R_ALPHA_OP_PSUB), + "R_ALPHA_OP_PUSH": reflect.ValueOf(elf.R_ALPHA_OP_PUSH), + "R_ALPHA_OP_STORE": reflect.ValueOf(elf.R_ALPHA_OP_STORE), + "R_ALPHA_REFLONG": reflect.ValueOf(elf.R_ALPHA_REFLONG), + "R_ALPHA_REFQUAD": reflect.ValueOf(elf.R_ALPHA_REFQUAD), + "R_ALPHA_RELATIVE": reflect.ValueOf(elf.R_ALPHA_RELATIVE), + "R_ALPHA_SREL16": reflect.ValueOf(elf.R_ALPHA_SREL16), + "R_ALPHA_SREL32": reflect.ValueOf(elf.R_ALPHA_SREL32), + "R_ALPHA_SREL64": reflect.ValueOf(elf.R_ALPHA_SREL64), + "R_ARM_ABS12": reflect.ValueOf(elf.R_ARM_ABS12), + "R_ARM_ABS16": reflect.ValueOf(elf.R_ARM_ABS16), + "R_ARM_ABS32": reflect.ValueOf(elf.R_ARM_ABS32), + "R_ARM_ABS32_NOI": reflect.ValueOf(elf.R_ARM_ABS32_NOI), + "R_ARM_ABS8": reflect.ValueOf(elf.R_ARM_ABS8), + "R_ARM_ALU_PCREL_15_8": reflect.ValueOf(elf.R_ARM_ALU_PCREL_15_8), + "R_ARM_ALU_PCREL_23_15": reflect.ValueOf(elf.R_ARM_ALU_PCREL_23_15), + "R_ARM_ALU_PCREL_7_0": reflect.ValueOf(elf.R_ARM_ALU_PCREL_7_0), + "R_ARM_ALU_PC_G0": reflect.ValueOf(elf.R_ARM_ALU_PC_G0), + "R_ARM_ALU_PC_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G0_NC), + "R_ARM_ALU_PC_G1": reflect.ValueOf(elf.R_ARM_ALU_PC_G1), + "R_ARM_ALU_PC_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G1_NC), + "R_ARM_ALU_PC_G2": reflect.ValueOf(elf.R_ARM_ALU_PC_G2), + "R_ARM_ALU_SBREL_19_12_NC": reflect.ValueOf(elf.R_ARM_ALU_SBREL_19_12_NC), + "R_ARM_ALU_SBREL_27_20_CK": reflect.ValueOf(elf.R_ARM_ALU_SBREL_27_20_CK), + "R_ARM_ALU_SB_G0": reflect.ValueOf(elf.R_ARM_ALU_SB_G0), + "R_ARM_ALU_SB_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G0_NC), + "R_ARM_ALU_SB_G1": reflect.ValueOf(elf.R_ARM_ALU_SB_G1), + "R_ARM_ALU_SB_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G1_NC), + "R_ARM_ALU_SB_G2": reflect.ValueOf(elf.R_ARM_ALU_SB_G2), + "R_ARM_AMP_VCALL9": reflect.ValueOf(elf.R_ARM_AMP_VCALL9), + "R_ARM_BASE_ABS": reflect.ValueOf(elf.R_ARM_BASE_ABS), + "R_ARM_CALL": reflect.ValueOf(elf.R_ARM_CALL), + "R_ARM_COPY": reflect.ValueOf(elf.R_ARM_COPY), + "R_ARM_GLOB_DAT": reflect.ValueOf(elf.R_ARM_GLOB_DAT), + "R_ARM_GNU_VTENTRY": reflect.ValueOf(elf.R_ARM_GNU_VTENTRY), + "R_ARM_GNU_VTINHERIT": reflect.ValueOf(elf.R_ARM_GNU_VTINHERIT), + "R_ARM_GOT32": reflect.ValueOf(elf.R_ARM_GOT32), + "R_ARM_GOTOFF": reflect.ValueOf(elf.R_ARM_GOTOFF), + "R_ARM_GOTOFF12": reflect.ValueOf(elf.R_ARM_GOTOFF12), + "R_ARM_GOTPC": reflect.ValueOf(elf.R_ARM_GOTPC), + "R_ARM_GOTRELAX": reflect.ValueOf(elf.R_ARM_GOTRELAX), + "R_ARM_GOT_ABS": reflect.ValueOf(elf.R_ARM_GOT_ABS), + "R_ARM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_GOT_BREL12), + "R_ARM_GOT_PREL": reflect.ValueOf(elf.R_ARM_GOT_PREL), + "R_ARM_IRELATIVE": reflect.ValueOf(elf.R_ARM_IRELATIVE), + "R_ARM_JUMP24": reflect.ValueOf(elf.R_ARM_JUMP24), + "R_ARM_JUMP_SLOT": reflect.ValueOf(elf.R_ARM_JUMP_SLOT), + "R_ARM_LDC_PC_G0": reflect.ValueOf(elf.R_ARM_LDC_PC_G0), + "R_ARM_LDC_PC_G1": reflect.ValueOf(elf.R_ARM_LDC_PC_G1), + "R_ARM_LDC_PC_G2": reflect.ValueOf(elf.R_ARM_LDC_PC_G2), + "R_ARM_LDC_SB_G0": reflect.ValueOf(elf.R_ARM_LDC_SB_G0), + "R_ARM_LDC_SB_G1": reflect.ValueOf(elf.R_ARM_LDC_SB_G1), + "R_ARM_LDC_SB_G2": reflect.ValueOf(elf.R_ARM_LDC_SB_G2), + "R_ARM_LDRS_PC_G0": reflect.ValueOf(elf.R_ARM_LDRS_PC_G0), + "R_ARM_LDRS_PC_G1": reflect.ValueOf(elf.R_ARM_LDRS_PC_G1), + "R_ARM_LDRS_PC_G2": reflect.ValueOf(elf.R_ARM_LDRS_PC_G2), + "R_ARM_LDRS_SB_G0": reflect.ValueOf(elf.R_ARM_LDRS_SB_G0), + "R_ARM_LDRS_SB_G1": reflect.ValueOf(elf.R_ARM_LDRS_SB_G1), + "R_ARM_LDRS_SB_G2": reflect.ValueOf(elf.R_ARM_LDRS_SB_G2), + "R_ARM_LDR_PC_G1": reflect.ValueOf(elf.R_ARM_LDR_PC_G1), + "R_ARM_LDR_PC_G2": reflect.ValueOf(elf.R_ARM_LDR_PC_G2), + "R_ARM_LDR_SBREL_11_10_NC": reflect.ValueOf(elf.R_ARM_LDR_SBREL_11_10_NC), + "R_ARM_LDR_SB_G0": reflect.ValueOf(elf.R_ARM_LDR_SB_G0), + "R_ARM_LDR_SB_G1": reflect.ValueOf(elf.R_ARM_LDR_SB_G1), + "R_ARM_LDR_SB_G2": reflect.ValueOf(elf.R_ARM_LDR_SB_G2), + "R_ARM_ME_TOO": reflect.ValueOf(elf.R_ARM_ME_TOO), + "R_ARM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_MOVT_ABS), + "R_ARM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_MOVT_BREL), + "R_ARM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_MOVT_PREL), + "R_ARM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_MOVW_ABS_NC), + "R_ARM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_MOVW_BREL), + "R_ARM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_BREL_NC), + "R_ARM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_PREL_NC), + "R_ARM_NONE": reflect.ValueOf(elf.R_ARM_NONE), + "R_ARM_PC13": reflect.ValueOf(elf.R_ARM_PC13), + "R_ARM_PC24": reflect.ValueOf(elf.R_ARM_PC24), + "R_ARM_PLT32": reflect.ValueOf(elf.R_ARM_PLT32), + "R_ARM_PLT32_ABS": reflect.ValueOf(elf.R_ARM_PLT32_ABS), + "R_ARM_PREL31": reflect.ValueOf(elf.R_ARM_PREL31), + "R_ARM_PRIVATE_0": reflect.ValueOf(elf.R_ARM_PRIVATE_0), + "R_ARM_PRIVATE_1": reflect.ValueOf(elf.R_ARM_PRIVATE_1), + "R_ARM_PRIVATE_10": reflect.ValueOf(elf.R_ARM_PRIVATE_10), + "R_ARM_PRIVATE_11": reflect.ValueOf(elf.R_ARM_PRIVATE_11), + "R_ARM_PRIVATE_12": reflect.ValueOf(elf.R_ARM_PRIVATE_12), + "R_ARM_PRIVATE_13": reflect.ValueOf(elf.R_ARM_PRIVATE_13), + "R_ARM_PRIVATE_14": reflect.ValueOf(elf.R_ARM_PRIVATE_14), + "R_ARM_PRIVATE_15": reflect.ValueOf(elf.R_ARM_PRIVATE_15), + "R_ARM_PRIVATE_2": reflect.ValueOf(elf.R_ARM_PRIVATE_2), + "R_ARM_PRIVATE_3": reflect.ValueOf(elf.R_ARM_PRIVATE_3), + "R_ARM_PRIVATE_4": reflect.ValueOf(elf.R_ARM_PRIVATE_4), + "R_ARM_PRIVATE_5": reflect.ValueOf(elf.R_ARM_PRIVATE_5), + "R_ARM_PRIVATE_6": reflect.ValueOf(elf.R_ARM_PRIVATE_6), + "R_ARM_PRIVATE_7": reflect.ValueOf(elf.R_ARM_PRIVATE_7), + "R_ARM_PRIVATE_8": reflect.ValueOf(elf.R_ARM_PRIVATE_8), + "R_ARM_PRIVATE_9": reflect.ValueOf(elf.R_ARM_PRIVATE_9), + "R_ARM_RABS32": reflect.ValueOf(elf.R_ARM_RABS32), + "R_ARM_RBASE": reflect.ValueOf(elf.R_ARM_RBASE), + "R_ARM_REL32": reflect.ValueOf(elf.R_ARM_REL32), + "R_ARM_REL32_NOI": reflect.ValueOf(elf.R_ARM_REL32_NOI), + "R_ARM_RELATIVE": reflect.ValueOf(elf.R_ARM_RELATIVE), + "R_ARM_RPC24": reflect.ValueOf(elf.R_ARM_RPC24), + "R_ARM_RREL32": reflect.ValueOf(elf.R_ARM_RREL32), + "R_ARM_RSBREL32": reflect.ValueOf(elf.R_ARM_RSBREL32), + "R_ARM_RXPC25": reflect.ValueOf(elf.R_ARM_RXPC25), + "R_ARM_SBREL31": reflect.ValueOf(elf.R_ARM_SBREL31), + "R_ARM_SBREL32": reflect.ValueOf(elf.R_ARM_SBREL32), + "R_ARM_SWI24": reflect.ValueOf(elf.R_ARM_SWI24), + "R_ARM_TARGET1": reflect.ValueOf(elf.R_ARM_TARGET1), + "R_ARM_TARGET2": reflect.ValueOf(elf.R_ARM_TARGET2), + "R_ARM_THM_ABS5": reflect.ValueOf(elf.R_ARM_THM_ABS5), + "R_ARM_THM_ALU_ABS_G0_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G0_NC), + "R_ARM_THM_ALU_ABS_G1_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G1_NC), + "R_ARM_THM_ALU_ABS_G2_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G2_NC), + "R_ARM_THM_ALU_ABS_G3": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G3), + "R_ARM_THM_ALU_PREL_11_0": reflect.ValueOf(elf.R_ARM_THM_ALU_PREL_11_0), + "R_ARM_THM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_THM_GOT_BREL12), + "R_ARM_THM_JUMP11": reflect.ValueOf(elf.R_ARM_THM_JUMP11), + "R_ARM_THM_JUMP19": reflect.ValueOf(elf.R_ARM_THM_JUMP19), + "R_ARM_THM_JUMP24": reflect.ValueOf(elf.R_ARM_THM_JUMP24), + "R_ARM_THM_JUMP6": reflect.ValueOf(elf.R_ARM_THM_JUMP6), + "R_ARM_THM_JUMP8": reflect.ValueOf(elf.R_ARM_THM_JUMP8), + "R_ARM_THM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_THM_MOVT_ABS), + "R_ARM_THM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_BREL), + "R_ARM_THM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_PREL), + "R_ARM_THM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_ABS_NC), + "R_ARM_THM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL), + "R_ARM_THM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL_NC), + "R_ARM_THM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_PREL_NC), + "R_ARM_THM_PC12": reflect.ValueOf(elf.R_ARM_THM_PC12), + "R_ARM_THM_PC22": reflect.ValueOf(elf.R_ARM_THM_PC22), + "R_ARM_THM_PC8": reflect.ValueOf(elf.R_ARM_THM_PC8), + "R_ARM_THM_RPC22": reflect.ValueOf(elf.R_ARM_THM_RPC22), + "R_ARM_THM_SWI8": reflect.ValueOf(elf.R_ARM_THM_SWI8), + "R_ARM_THM_TLS_CALL": reflect.ValueOf(elf.R_ARM_THM_TLS_CALL), + "R_ARM_THM_TLS_DESCSEQ16": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ16), + "R_ARM_THM_TLS_DESCSEQ32": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ32), + "R_ARM_THM_XPC22": reflect.ValueOf(elf.R_ARM_THM_XPC22), + "R_ARM_TLS_CALL": reflect.ValueOf(elf.R_ARM_TLS_CALL), + "R_ARM_TLS_DESCSEQ": reflect.ValueOf(elf.R_ARM_TLS_DESCSEQ), + "R_ARM_TLS_DTPMOD32": reflect.ValueOf(elf.R_ARM_TLS_DTPMOD32), + "R_ARM_TLS_DTPOFF32": reflect.ValueOf(elf.R_ARM_TLS_DTPOFF32), + "R_ARM_TLS_GD32": reflect.ValueOf(elf.R_ARM_TLS_GD32), + "R_ARM_TLS_GOTDESC": reflect.ValueOf(elf.R_ARM_TLS_GOTDESC), + "R_ARM_TLS_IE12GP": reflect.ValueOf(elf.R_ARM_TLS_IE12GP), + "R_ARM_TLS_IE32": reflect.ValueOf(elf.R_ARM_TLS_IE32), + "R_ARM_TLS_LDM32": reflect.ValueOf(elf.R_ARM_TLS_LDM32), + "R_ARM_TLS_LDO12": reflect.ValueOf(elf.R_ARM_TLS_LDO12), + "R_ARM_TLS_LDO32": reflect.ValueOf(elf.R_ARM_TLS_LDO32), + "R_ARM_TLS_LE12": reflect.ValueOf(elf.R_ARM_TLS_LE12), + "R_ARM_TLS_LE32": reflect.ValueOf(elf.R_ARM_TLS_LE32), + "R_ARM_TLS_TPOFF32": reflect.ValueOf(elf.R_ARM_TLS_TPOFF32), + "R_ARM_V4BX": reflect.ValueOf(elf.R_ARM_V4BX), + "R_ARM_XPC25": reflect.ValueOf(elf.R_ARM_XPC25), + "R_INFO": reflect.ValueOf(elf.R_INFO), + "R_INFO32": reflect.ValueOf(elf.R_INFO32), + "R_MIPS_16": reflect.ValueOf(elf.R_MIPS_16), + "R_MIPS_26": reflect.ValueOf(elf.R_MIPS_26), + "R_MIPS_32": reflect.ValueOf(elf.R_MIPS_32), + "R_MIPS_64": reflect.ValueOf(elf.R_MIPS_64), + "R_MIPS_ADD_IMMEDIATE": reflect.ValueOf(elf.R_MIPS_ADD_IMMEDIATE), + "R_MIPS_CALL16": reflect.ValueOf(elf.R_MIPS_CALL16), + "R_MIPS_CALL_HI16": reflect.ValueOf(elf.R_MIPS_CALL_HI16), + "R_MIPS_CALL_LO16": reflect.ValueOf(elf.R_MIPS_CALL_LO16), + "R_MIPS_DELETE": reflect.ValueOf(elf.R_MIPS_DELETE), + "R_MIPS_GOT16": reflect.ValueOf(elf.R_MIPS_GOT16), + "R_MIPS_GOT_DISP": reflect.ValueOf(elf.R_MIPS_GOT_DISP), + "R_MIPS_GOT_HI16": reflect.ValueOf(elf.R_MIPS_GOT_HI16), + "R_MIPS_GOT_LO16": reflect.ValueOf(elf.R_MIPS_GOT_LO16), + "R_MIPS_GOT_OFST": reflect.ValueOf(elf.R_MIPS_GOT_OFST), + "R_MIPS_GOT_PAGE": reflect.ValueOf(elf.R_MIPS_GOT_PAGE), + "R_MIPS_GPREL16": reflect.ValueOf(elf.R_MIPS_GPREL16), + "R_MIPS_GPREL32": reflect.ValueOf(elf.R_MIPS_GPREL32), + "R_MIPS_HI16": reflect.ValueOf(elf.R_MIPS_HI16), + "R_MIPS_HIGHER": reflect.ValueOf(elf.R_MIPS_HIGHER), + "R_MIPS_HIGHEST": reflect.ValueOf(elf.R_MIPS_HIGHEST), + "R_MIPS_INSERT_A": reflect.ValueOf(elf.R_MIPS_INSERT_A), + "R_MIPS_INSERT_B": reflect.ValueOf(elf.R_MIPS_INSERT_B), + "R_MIPS_JALR": reflect.ValueOf(elf.R_MIPS_JALR), + "R_MIPS_LITERAL": reflect.ValueOf(elf.R_MIPS_LITERAL), + "R_MIPS_LO16": reflect.ValueOf(elf.R_MIPS_LO16), + "R_MIPS_NONE": reflect.ValueOf(elf.R_MIPS_NONE), + "R_MIPS_PC16": reflect.ValueOf(elf.R_MIPS_PC16), + "R_MIPS_PJUMP": reflect.ValueOf(elf.R_MIPS_PJUMP), + "R_MIPS_REL16": reflect.ValueOf(elf.R_MIPS_REL16), + "R_MIPS_REL32": reflect.ValueOf(elf.R_MIPS_REL32), + "R_MIPS_RELGOT": reflect.ValueOf(elf.R_MIPS_RELGOT), + "R_MIPS_SCN_DISP": reflect.ValueOf(elf.R_MIPS_SCN_DISP), + "R_MIPS_SHIFT5": reflect.ValueOf(elf.R_MIPS_SHIFT5), + "R_MIPS_SHIFT6": reflect.ValueOf(elf.R_MIPS_SHIFT6), + "R_MIPS_SUB": reflect.ValueOf(elf.R_MIPS_SUB), + "R_MIPS_TLS_DTPMOD32": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD32), + "R_MIPS_TLS_DTPMOD64": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD64), + "R_MIPS_TLS_DTPREL32": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL32), + "R_MIPS_TLS_DTPREL64": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL64), + "R_MIPS_TLS_DTPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_HI16), + "R_MIPS_TLS_DTPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_LO16), + "R_MIPS_TLS_GD": reflect.ValueOf(elf.R_MIPS_TLS_GD), + "R_MIPS_TLS_GOTTPREL": reflect.ValueOf(elf.R_MIPS_TLS_GOTTPREL), + "R_MIPS_TLS_LDM": reflect.ValueOf(elf.R_MIPS_TLS_LDM), + "R_MIPS_TLS_TPREL32": reflect.ValueOf(elf.R_MIPS_TLS_TPREL32), + "R_MIPS_TLS_TPREL64": reflect.ValueOf(elf.R_MIPS_TLS_TPREL64), + "R_MIPS_TLS_TPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_HI16), + "R_MIPS_TLS_TPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_LO16), + "R_PPC64_ADDR14": reflect.ValueOf(elf.R_PPC64_ADDR14), + "R_PPC64_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRNTAKEN), + "R_PPC64_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRTAKEN), + "R_PPC64_ADDR16": reflect.ValueOf(elf.R_PPC64_ADDR16), + "R_PPC64_ADDR16_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_DS), + "R_PPC64_ADDR16_HA": reflect.ValueOf(elf.R_PPC64_ADDR16_HA), + "R_PPC64_ADDR16_HI": reflect.ValueOf(elf.R_PPC64_ADDR16_HI), + "R_PPC64_ADDR16_HIGH": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGH), + "R_PPC64_ADDR16_HIGHA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHA), + "R_PPC64_ADDR16_HIGHER": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER), + "R_PPC64_ADDR16_HIGHERA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA), + "R_PPC64_ADDR16_HIGHEST": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST), + "R_PPC64_ADDR16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA), + "R_PPC64_ADDR16_LO": reflect.ValueOf(elf.R_PPC64_ADDR16_LO), + "R_PPC64_ADDR16_LO_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_LO_DS), + "R_PPC64_ADDR24": reflect.ValueOf(elf.R_PPC64_ADDR24), + "R_PPC64_ADDR32": reflect.ValueOf(elf.R_PPC64_ADDR32), + "R_PPC64_ADDR64": reflect.ValueOf(elf.R_PPC64_ADDR64), + "R_PPC64_ADDR64_LOCAL": reflect.ValueOf(elf.R_PPC64_ADDR64_LOCAL), + "R_PPC64_DTPMOD64": reflect.ValueOf(elf.R_PPC64_DTPMOD64), + "R_PPC64_DTPREL16": reflect.ValueOf(elf.R_PPC64_DTPREL16), + "R_PPC64_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_DS), + "R_PPC64_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HA), + "R_PPC64_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_DTPREL16_HI), + "R_PPC64_DTPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGH), + "R_PPC64_DTPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHA), + "R_PPC64_DTPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHER), + "R_PPC64_DTPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHERA), + "R_PPC64_DTPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHEST), + "R_PPC64_DTPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHESTA), + "R_PPC64_DTPREL16_LO": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO), + "R_PPC64_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO_DS), + "R_PPC64_DTPREL64": reflect.ValueOf(elf.R_PPC64_DTPREL64), + "R_PPC64_ENTRY": reflect.ValueOf(elf.R_PPC64_ENTRY), + "R_PPC64_GOT16": reflect.ValueOf(elf.R_PPC64_GOT16), + "R_PPC64_GOT16_DS": reflect.ValueOf(elf.R_PPC64_GOT16_DS), + "R_PPC64_GOT16_HA": reflect.ValueOf(elf.R_PPC64_GOT16_HA), + "R_PPC64_GOT16_HI": reflect.ValueOf(elf.R_PPC64_GOT16_HI), + "R_PPC64_GOT16_LO": reflect.ValueOf(elf.R_PPC64_GOT16_LO), + "R_PPC64_GOT16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT16_LO_DS), + "R_PPC64_GOT_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_DS), + "R_PPC64_GOT_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HA), + "R_PPC64_GOT_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HI), + "R_PPC64_GOT_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_LO_DS), + "R_PPC64_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16), + "R_PPC64_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HA), + "R_PPC64_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HI), + "R_PPC64_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_LO), + "R_PPC64_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16), + "R_PPC64_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HA), + "R_PPC64_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HI), + "R_PPC64_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_LO), + "R_PPC64_GOT_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_DS), + "R_PPC64_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HA), + "R_PPC64_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HI), + "R_PPC64_GOT_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_LO_DS), + "R_PPC64_IRELATIVE": reflect.ValueOf(elf.R_PPC64_IRELATIVE), + "R_PPC64_JMP_IREL": reflect.ValueOf(elf.R_PPC64_JMP_IREL), + "R_PPC64_JMP_SLOT": reflect.ValueOf(elf.R_PPC64_JMP_SLOT), + "R_PPC64_NONE": reflect.ValueOf(elf.R_PPC64_NONE), + "R_PPC64_PLT16_LO_DS": reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS), + "R_PPC64_PLTGOT16": reflect.ValueOf(elf.R_PPC64_PLTGOT16), + "R_PPC64_PLTGOT16_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT16_DS), + "R_PPC64_PLTGOT16_HA": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HA), + "R_PPC64_PLTGOT16_HI": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HI), + "R_PPC64_PLTGOT16_LO": reflect.ValueOf(elf.R_PPC64_PLTGOT16_LO), + "R_PPC64_PLTGOT_LO_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT_LO_DS), + "R_PPC64_REL14": reflect.ValueOf(elf.R_PPC64_REL14), + "R_PPC64_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRNTAKEN), + "R_PPC64_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRTAKEN), + "R_PPC64_REL16": reflect.ValueOf(elf.R_PPC64_REL16), + "R_PPC64_REL16DX_HA": reflect.ValueOf(elf.R_PPC64_REL16DX_HA), + "R_PPC64_REL16_HA": reflect.ValueOf(elf.R_PPC64_REL16_HA), + "R_PPC64_REL16_HI": reflect.ValueOf(elf.R_PPC64_REL16_HI), + "R_PPC64_REL16_LO": reflect.ValueOf(elf.R_PPC64_REL16_LO), + "R_PPC64_REL24": reflect.ValueOf(elf.R_PPC64_REL24), + "R_PPC64_REL24_NOTOC": reflect.ValueOf(elf.R_PPC64_REL24_NOTOC), + "R_PPC64_REL32": reflect.ValueOf(elf.R_PPC64_REL32), + "R_PPC64_REL64": reflect.ValueOf(elf.R_PPC64_REL64), + "R_PPC64_RELATIVE": reflect.ValueOf(elf.R_PPC64_RELATIVE), + "R_PPC64_SECTOFF_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_DS), + "R_PPC64_SECTOFF_LO_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_LO_DS), + "R_PPC64_TLS": reflect.ValueOf(elf.R_PPC64_TLS), + "R_PPC64_TLSGD": reflect.ValueOf(elf.R_PPC64_TLSGD), + "R_PPC64_TLSLD": reflect.ValueOf(elf.R_PPC64_TLSLD), + "R_PPC64_TOC": reflect.ValueOf(elf.R_PPC64_TOC), + "R_PPC64_TOC16": reflect.ValueOf(elf.R_PPC64_TOC16), + "R_PPC64_TOC16_DS": reflect.ValueOf(elf.R_PPC64_TOC16_DS), + "R_PPC64_TOC16_HA": reflect.ValueOf(elf.R_PPC64_TOC16_HA), + "R_PPC64_TOC16_HI": reflect.ValueOf(elf.R_PPC64_TOC16_HI), + "R_PPC64_TOC16_LO": reflect.ValueOf(elf.R_PPC64_TOC16_LO), + "R_PPC64_TOC16_LO_DS": reflect.ValueOf(elf.R_PPC64_TOC16_LO_DS), + "R_PPC64_TOCSAVE": reflect.ValueOf(elf.R_PPC64_TOCSAVE), + "R_PPC64_TPREL16": reflect.ValueOf(elf.R_PPC64_TPREL16), + "R_PPC64_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_DS), + "R_PPC64_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_TPREL16_HA), + "R_PPC64_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_TPREL16_HI), + "R_PPC64_TPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGH), + "R_PPC64_TPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHA), + "R_PPC64_TPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHER), + "R_PPC64_TPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHERA), + "R_PPC64_TPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHEST), + "R_PPC64_TPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHESTA), + "R_PPC64_TPREL16_LO": reflect.ValueOf(elf.R_PPC64_TPREL16_LO), + "R_PPC64_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_LO_DS), + "R_PPC64_TPREL64": reflect.ValueOf(elf.R_PPC64_TPREL64), + "R_PPC_ADDR14": reflect.ValueOf(elf.R_PPC_ADDR14), + "R_PPC_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRNTAKEN), + "R_PPC_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRTAKEN), + "R_PPC_ADDR16": reflect.ValueOf(elf.R_PPC_ADDR16), + "R_PPC_ADDR16_HA": reflect.ValueOf(elf.R_PPC_ADDR16_HA), + "R_PPC_ADDR16_HI": reflect.ValueOf(elf.R_PPC_ADDR16_HI), + "R_PPC_ADDR16_LO": reflect.ValueOf(elf.R_PPC_ADDR16_LO), + "R_PPC_ADDR24": reflect.ValueOf(elf.R_PPC_ADDR24), + "R_PPC_ADDR32": reflect.ValueOf(elf.R_PPC_ADDR32), + "R_PPC_COPY": reflect.ValueOf(elf.R_PPC_COPY), + "R_PPC_DTPMOD32": reflect.ValueOf(elf.R_PPC_DTPMOD32), + "R_PPC_DTPREL16": reflect.ValueOf(elf.R_PPC_DTPREL16), + "R_PPC_DTPREL16_HA": reflect.ValueOf(elf.R_PPC_DTPREL16_HA), + "R_PPC_DTPREL16_HI": reflect.ValueOf(elf.R_PPC_DTPREL16_HI), + "R_PPC_DTPREL16_LO": reflect.ValueOf(elf.R_PPC_DTPREL16_LO), + "R_PPC_DTPREL32": reflect.ValueOf(elf.R_PPC_DTPREL32), + "R_PPC_EMB_BIT_FLD": reflect.ValueOf(elf.R_PPC_EMB_BIT_FLD), + "R_PPC_EMB_MRKREF": reflect.ValueOf(elf.R_PPC_EMB_MRKREF), + "R_PPC_EMB_NADDR16": reflect.ValueOf(elf.R_PPC_EMB_NADDR16), + "R_PPC_EMB_NADDR16_HA": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HA), + "R_PPC_EMB_NADDR16_HI": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HI), + "R_PPC_EMB_NADDR16_LO": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_LO), + "R_PPC_EMB_NADDR32": reflect.ValueOf(elf.R_PPC_EMB_NADDR32), + "R_PPC_EMB_RELSDA": reflect.ValueOf(elf.R_PPC_EMB_RELSDA), + "R_PPC_EMB_RELSEC16": reflect.ValueOf(elf.R_PPC_EMB_RELSEC16), + "R_PPC_EMB_RELST_HA": reflect.ValueOf(elf.R_PPC_EMB_RELST_HA), + "R_PPC_EMB_RELST_HI": reflect.ValueOf(elf.R_PPC_EMB_RELST_HI), + "R_PPC_EMB_RELST_LO": reflect.ValueOf(elf.R_PPC_EMB_RELST_LO), + "R_PPC_EMB_SDA21": reflect.ValueOf(elf.R_PPC_EMB_SDA21), + "R_PPC_EMB_SDA2I16": reflect.ValueOf(elf.R_PPC_EMB_SDA2I16), + "R_PPC_EMB_SDA2REL": reflect.ValueOf(elf.R_PPC_EMB_SDA2REL), + "R_PPC_EMB_SDAI16": reflect.ValueOf(elf.R_PPC_EMB_SDAI16), + "R_PPC_GLOB_DAT": reflect.ValueOf(elf.R_PPC_GLOB_DAT), + "R_PPC_GOT16": reflect.ValueOf(elf.R_PPC_GOT16), + "R_PPC_GOT16_HA": reflect.ValueOf(elf.R_PPC_GOT16_HA), + "R_PPC_GOT16_HI": reflect.ValueOf(elf.R_PPC_GOT16_HI), + "R_PPC_GOT16_LO": reflect.ValueOf(elf.R_PPC_GOT16_LO), + "R_PPC_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16), + "R_PPC_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HA), + "R_PPC_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HI), + "R_PPC_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_LO), + "R_PPC_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16), + "R_PPC_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HA), + "R_PPC_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HI), + "R_PPC_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_LO), + "R_PPC_GOT_TPREL16": reflect.ValueOf(elf.R_PPC_GOT_TPREL16), + "R_PPC_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HA), + "R_PPC_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HI), + "R_PPC_GOT_TPREL16_LO": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_LO), + "R_PPC_JMP_SLOT": reflect.ValueOf(elf.R_PPC_JMP_SLOT), + "R_PPC_LOCAL24PC": reflect.ValueOf(elf.R_PPC_LOCAL24PC), + "R_PPC_NONE": reflect.ValueOf(elf.R_PPC_NONE), + "R_PPC_PLT16_HA": reflect.ValueOf(elf.R_PPC_PLT16_HA), + "R_PPC_PLT16_HI": reflect.ValueOf(elf.R_PPC_PLT16_HI), + "R_PPC_PLT16_LO": reflect.ValueOf(elf.R_PPC_PLT16_LO), + "R_PPC_PLT32": reflect.ValueOf(elf.R_PPC_PLT32), + "R_PPC_PLTREL24": reflect.ValueOf(elf.R_PPC_PLTREL24), + "R_PPC_PLTREL32": reflect.ValueOf(elf.R_PPC_PLTREL32), + "R_PPC_REL14": reflect.ValueOf(elf.R_PPC_REL14), + "R_PPC_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRNTAKEN), + "R_PPC_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRTAKEN), + "R_PPC_REL24": reflect.ValueOf(elf.R_PPC_REL24), + "R_PPC_REL32": reflect.ValueOf(elf.R_PPC_REL32), + "R_PPC_RELATIVE": reflect.ValueOf(elf.R_PPC_RELATIVE), + "R_PPC_SDAREL16": reflect.ValueOf(elf.R_PPC_SDAREL16), + "R_PPC_SECTOFF": reflect.ValueOf(elf.R_PPC_SECTOFF), + "R_PPC_SECTOFF_HA": reflect.ValueOf(elf.R_PPC_SECTOFF_HA), + "R_PPC_SECTOFF_HI": reflect.ValueOf(elf.R_PPC_SECTOFF_HI), + "R_PPC_SECTOFF_LO": reflect.ValueOf(elf.R_PPC_SECTOFF_LO), + "R_PPC_TLS": reflect.ValueOf(elf.R_PPC_TLS), + "R_PPC_TPREL16": reflect.ValueOf(elf.R_PPC_TPREL16), + "R_PPC_TPREL16_HA": reflect.ValueOf(elf.R_PPC_TPREL16_HA), + "R_PPC_TPREL16_HI": reflect.ValueOf(elf.R_PPC_TPREL16_HI), + "R_PPC_TPREL16_LO": reflect.ValueOf(elf.R_PPC_TPREL16_LO), + "R_PPC_TPREL32": reflect.ValueOf(elf.R_PPC_TPREL32), + "R_PPC_UADDR16": reflect.ValueOf(elf.R_PPC_UADDR16), + "R_PPC_UADDR32": reflect.ValueOf(elf.R_PPC_UADDR32), + "R_RISCV_32": reflect.ValueOf(elf.R_RISCV_32), + "R_RISCV_32_PCREL": reflect.ValueOf(elf.R_RISCV_32_PCREL), + "R_RISCV_64": reflect.ValueOf(elf.R_RISCV_64), + "R_RISCV_ADD16": reflect.ValueOf(elf.R_RISCV_ADD16), + "R_RISCV_ADD32": reflect.ValueOf(elf.R_RISCV_ADD32), + "R_RISCV_ADD64": reflect.ValueOf(elf.R_RISCV_ADD64), + "R_RISCV_ADD8": reflect.ValueOf(elf.R_RISCV_ADD8), + "R_RISCV_ALIGN": reflect.ValueOf(elf.R_RISCV_ALIGN), + "R_RISCV_BRANCH": reflect.ValueOf(elf.R_RISCV_BRANCH), + "R_RISCV_CALL": reflect.ValueOf(elf.R_RISCV_CALL), + "R_RISCV_CALL_PLT": reflect.ValueOf(elf.R_RISCV_CALL_PLT), + "R_RISCV_COPY": reflect.ValueOf(elf.R_RISCV_COPY), + "R_RISCV_GNU_VTENTRY": reflect.ValueOf(elf.R_RISCV_GNU_VTENTRY), + "R_RISCV_GNU_VTINHERIT": reflect.ValueOf(elf.R_RISCV_GNU_VTINHERIT), + "R_RISCV_GOT_HI20": reflect.ValueOf(elf.R_RISCV_GOT_HI20), + "R_RISCV_GPREL_I": reflect.ValueOf(elf.R_RISCV_GPREL_I), + "R_RISCV_GPREL_S": reflect.ValueOf(elf.R_RISCV_GPREL_S), + "R_RISCV_HI20": reflect.ValueOf(elf.R_RISCV_HI20), + "R_RISCV_JAL": reflect.ValueOf(elf.R_RISCV_JAL), + "R_RISCV_JUMP_SLOT": reflect.ValueOf(elf.R_RISCV_JUMP_SLOT), + "R_RISCV_LO12_I": reflect.ValueOf(elf.R_RISCV_LO12_I), + "R_RISCV_LO12_S": reflect.ValueOf(elf.R_RISCV_LO12_S), + "R_RISCV_NONE": reflect.ValueOf(elf.R_RISCV_NONE), + "R_RISCV_PCREL_HI20": reflect.ValueOf(elf.R_RISCV_PCREL_HI20), + "R_RISCV_PCREL_LO12_I": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_I), + "R_RISCV_PCREL_LO12_S": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_S), + "R_RISCV_RELATIVE": reflect.ValueOf(elf.R_RISCV_RELATIVE), + "R_RISCV_RELAX": reflect.ValueOf(elf.R_RISCV_RELAX), + "R_RISCV_RVC_BRANCH": reflect.ValueOf(elf.R_RISCV_RVC_BRANCH), + "R_RISCV_RVC_JUMP": reflect.ValueOf(elf.R_RISCV_RVC_JUMP), + "R_RISCV_RVC_LUI": reflect.ValueOf(elf.R_RISCV_RVC_LUI), + "R_RISCV_SET16": reflect.ValueOf(elf.R_RISCV_SET16), + "R_RISCV_SET32": reflect.ValueOf(elf.R_RISCV_SET32), + "R_RISCV_SET6": reflect.ValueOf(elf.R_RISCV_SET6), + "R_RISCV_SET8": reflect.ValueOf(elf.R_RISCV_SET8), + "R_RISCV_SUB16": reflect.ValueOf(elf.R_RISCV_SUB16), + "R_RISCV_SUB32": reflect.ValueOf(elf.R_RISCV_SUB32), + "R_RISCV_SUB6": reflect.ValueOf(elf.R_RISCV_SUB6), + "R_RISCV_SUB64": reflect.ValueOf(elf.R_RISCV_SUB64), + "R_RISCV_SUB8": reflect.ValueOf(elf.R_RISCV_SUB8), + "R_RISCV_TLS_DTPMOD32": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD32), + "R_RISCV_TLS_DTPMOD64": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD64), + "R_RISCV_TLS_DTPREL32": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL32), + "R_RISCV_TLS_DTPREL64": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL64), + "R_RISCV_TLS_GD_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GD_HI20), + "R_RISCV_TLS_GOT_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GOT_HI20), + "R_RISCV_TLS_TPREL32": reflect.ValueOf(elf.R_RISCV_TLS_TPREL32), + "R_RISCV_TLS_TPREL64": reflect.ValueOf(elf.R_RISCV_TLS_TPREL64), + "R_RISCV_TPREL_ADD": reflect.ValueOf(elf.R_RISCV_TPREL_ADD), + "R_RISCV_TPREL_HI20": reflect.ValueOf(elf.R_RISCV_TPREL_HI20), + "R_RISCV_TPREL_I": reflect.ValueOf(elf.R_RISCV_TPREL_I), + "R_RISCV_TPREL_LO12_I": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_I), + "R_RISCV_TPREL_LO12_S": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_S), + "R_RISCV_TPREL_S": reflect.ValueOf(elf.R_RISCV_TPREL_S), + "R_SPARC_10": reflect.ValueOf(elf.R_SPARC_10), + "R_SPARC_11": reflect.ValueOf(elf.R_SPARC_11), + "R_SPARC_13": reflect.ValueOf(elf.R_SPARC_13), + "R_SPARC_16": reflect.ValueOf(elf.R_SPARC_16), + "R_SPARC_22": reflect.ValueOf(elf.R_SPARC_22), + "R_SPARC_32": reflect.ValueOf(elf.R_SPARC_32), + "R_SPARC_5": reflect.ValueOf(elf.R_SPARC_5), + "R_SPARC_6": reflect.ValueOf(elf.R_SPARC_6), + "R_SPARC_64": reflect.ValueOf(elf.R_SPARC_64), + "R_SPARC_7": reflect.ValueOf(elf.R_SPARC_7), + "R_SPARC_8": reflect.ValueOf(elf.R_SPARC_8), + "R_SPARC_COPY": reflect.ValueOf(elf.R_SPARC_COPY), + "R_SPARC_DISP16": reflect.ValueOf(elf.R_SPARC_DISP16), + "R_SPARC_DISP32": reflect.ValueOf(elf.R_SPARC_DISP32), + "R_SPARC_DISP64": reflect.ValueOf(elf.R_SPARC_DISP64), + "R_SPARC_DISP8": reflect.ValueOf(elf.R_SPARC_DISP8), + "R_SPARC_GLOB_DAT": reflect.ValueOf(elf.R_SPARC_GLOB_DAT), + "R_SPARC_GLOB_JMP": reflect.ValueOf(elf.R_SPARC_GLOB_JMP), + "R_SPARC_GOT10": reflect.ValueOf(elf.R_SPARC_GOT10), + "R_SPARC_GOT13": reflect.ValueOf(elf.R_SPARC_GOT13), + "R_SPARC_GOT22": reflect.ValueOf(elf.R_SPARC_GOT22), + "R_SPARC_H44": reflect.ValueOf(elf.R_SPARC_H44), + "R_SPARC_HH22": reflect.ValueOf(elf.R_SPARC_HH22), + "R_SPARC_HI22": reflect.ValueOf(elf.R_SPARC_HI22), + "R_SPARC_HIPLT22": reflect.ValueOf(elf.R_SPARC_HIPLT22), + "R_SPARC_HIX22": reflect.ValueOf(elf.R_SPARC_HIX22), + "R_SPARC_HM10": reflect.ValueOf(elf.R_SPARC_HM10), + "R_SPARC_JMP_SLOT": reflect.ValueOf(elf.R_SPARC_JMP_SLOT), + "R_SPARC_L44": reflect.ValueOf(elf.R_SPARC_L44), + "R_SPARC_LM22": reflect.ValueOf(elf.R_SPARC_LM22), + "R_SPARC_LO10": reflect.ValueOf(elf.R_SPARC_LO10), + "R_SPARC_LOPLT10": reflect.ValueOf(elf.R_SPARC_LOPLT10), + "R_SPARC_LOX10": reflect.ValueOf(elf.R_SPARC_LOX10), + "R_SPARC_M44": reflect.ValueOf(elf.R_SPARC_M44), + "R_SPARC_NONE": reflect.ValueOf(elf.R_SPARC_NONE), + "R_SPARC_OLO10": reflect.ValueOf(elf.R_SPARC_OLO10), + "R_SPARC_PC10": reflect.ValueOf(elf.R_SPARC_PC10), + "R_SPARC_PC22": reflect.ValueOf(elf.R_SPARC_PC22), + "R_SPARC_PCPLT10": reflect.ValueOf(elf.R_SPARC_PCPLT10), + "R_SPARC_PCPLT22": reflect.ValueOf(elf.R_SPARC_PCPLT22), + "R_SPARC_PCPLT32": reflect.ValueOf(elf.R_SPARC_PCPLT32), + "R_SPARC_PC_HH22": reflect.ValueOf(elf.R_SPARC_PC_HH22), + "R_SPARC_PC_HM10": reflect.ValueOf(elf.R_SPARC_PC_HM10), + "R_SPARC_PC_LM22": reflect.ValueOf(elf.R_SPARC_PC_LM22), + "R_SPARC_PLT32": reflect.ValueOf(elf.R_SPARC_PLT32), + "R_SPARC_PLT64": reflect.ValueOf(elf.R_SPARC_PLT64), + "R_SPARC_REGISTER": reflect.ValueOf(elf.R_SPARC_REGISTER), + "R_SPARC_RELATIVE": reflect.ValueOf(elf.R_SPARC_RELATIVE), + "R_SPARC_UA16": reflect.ValueOf(elf.R_SPARC_UA16), + "R_SPARC_UA32": reflect.ValueOf(elf.R_SPARC_UA32), + "R_SPARC_UA64": reflect.ValueOf(elf.R_SPARC_UA64), + "R_SPARC_WDISP16": reflect.ValueOf(elf.R_SPARC_WDISP16), + "R_SPARC_WDISP19": reflect.ValueOf(elf.R_SPARC_WDISP19), + "R_SPARC_WDISP22": reflect.ValueOf(elf.R_SPARC_WDISP22), + "R_SPARC_WDISP30": reflect.ValueOf(elf.R_SPARC_WDISP30), + "R_SPARC_WPLT30": reflect.ValueOf(elf.R_SPARC_WPLT30), + "R_SYM32": reflect.ValueOf(elf.R_SYM32), + "R_SYM64": reflect.ValueOf(elf.R_SYM64), + "R_TYPE32": reflect.ValueOf(elf.R_TYPE32), + "R_TYPE64": reflect.ValueOf(elf.R_TYPE64), + "R_X86_64_16": reflect.ValueOf(elf.R_X86_64_16), + "R_X86_64_32": reflect.ValueOf(elf.R_X86_64_32), + "R_X86_64_32S": reflect.ValueOf(elf.R_X86_64_32S), + "R_X86_64_64": reflect.ValueOf(elf.R_X86_64_64), + "R_X86_64_8": reflect.ValueOf(elf.R_X86_64_8), + "R_X86_64_COPY": reflect.ValueOf(elf.R_X86_64_COPY), + "R_X86_64_DTPMOD64": reflect.ValueOf(elf.R_X86_64_DTPMOD64), + "R_X86_64_DTPOFF32": reflect.ValueOf(elf.R_X86_64_DTPOFF32), + "R_X86_64_DTPOFF64": reflect.ValueOf(elf.R_X86_64_DTPOFF64), + "R_X86_64_GLOB_DAT": reflect.ValueOf(elf.R_X86_64_GLOB_DAT), + "R_X86_64_GOT32": reflect.ValueOf(elf.R_X86_64_GOT32), + "R_X86_64_GOT64": reflect.ValueOf(elf.R_X86_64_GOT64), + "R_X86_64_GOTOFF64": reflect.ValueOf(elf.R_X86_64_GOTOFF64), + "R_X86_64_GOTPC32": reflect.ValueOf(elf.R_X86_64_GOTPC32), + "R_X86_64_GOTPC32_TLSDESC": reflect.ValueOf(elf.R_X86_64_GOTPC32_TLSDESC), + "R_X86_64_GOTPC64": reflect.ValueOf(elf.R_X86_64_GOTPC64), + "R_X86_64_GOTPCREL": reflect.ValueOf(elf.R_X86_64_GOTPCREL), + "R_X86_64_GOTPCREL64": reflect.ValueOf(elf.R_X86_64_GOTPCREL64), + "R_X86_64_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_GOTPCRELX), + "R_X86_64_GOTPLT64": reflect.ValueOf(elf.R_X86_64_GOTPLT64), + "R_X86_64_GOTTPOFF": reflect.ValueOf(elf.R_X86_64_GOTTPOFF), + "R_X86_64_IRELATIVE": reflect.ValueOf(elf.R_X86_64_IRELATIVE), + "R_X86_64_JMP_SLOT": reflect.ValueOf(elf.R_X86_64_JMP_SLOT), + "R_X86_64_NONE": reflect.ValueOf(elf.R_X86_64_NONE), + "R_X86_64_PC16": reflect.ValueOf(elf.R_X86_64_PC16), + "R_X86_64_PC32": reflect.ValueOf(elf.R_X86_64_PC32), + "R_X86_64_PC32_BND": reflect.ValueOf(elf.R_X86_64_PC32_BND), + "R_X86_64_PC64": reflect.ValueOf(elf.R_X86_64_PC64), + "R_X86_64_PC8": reflect.ValueOf(elf.R_X86_64_PC8), + "R_X86_64_PLT32": reflect.ValueOf(elf.R_X86_64_PLT32), + "R_X86_64_PLT32_BND": reflect.ValueOf(elf.R_X86_64_PLT32_BND), + "R_X86_64_PLTOFF64": reflect.ValueOf(elf.R_X86_64_PLTOFF64), + "R_X86_64_RELATIVE": reflect.ValueOf(elf.R_X86_64_RELATIVE), + "R_X86_64_RELATIVE64": reflect.ValueOf(elf.R_X86_64_RELATIVE64), + "R_X86_64_REX_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_REX_GOTPCRELX), + "R_X86_64_SIZE32": reflect.ValueOf(elf.R_X86_64_SIZE32), + "R_X86_64_SIZE64": reflect.ValueOf(elf.R_X86_64_SIZE64), + "R_X86_64_TLSDESC": reflect.ValueOf(elf.R_X86_64_TLSDESC), + "R_X86_64_TLSDESC_CALL": reflect.ValueOf(elf.R_X86_64_TLSDESC_CALL), + "R_X86_64_TLSGD": reflect.ValueOf(elf.R_X86_64_TLSGD), + "R_X86_64_TLSLD": reflect.ValueOf(elf.R_X86_64_TLSLD), + "R_X86_64_TPOFF32": reflect.ValueOf(elf.R_X86_64_TPOFF32), + "R_X86_64_TPOFF64": reflect.ValueOf(elf.R_X86_64_TPOFF64), + "SHF_ALLOC": reflect.ValueOf(elf.SHF_ALLOC), + "SHF_COMPRESSED": reflect.ValueOf(elf.SHF_COMPRESSED), + "SHF_EXECINSTR": reflect.ValueOf(elf.SHF_EXECINSTR), + "SHF_GROUP": reflect.ValueOf(elf.SHF_GROUP), + "SHF_INFO_LINK": reflect.ValueOf(elf.SHF_INFO_LINK), + "SHF_LINK_ORDER": reflect.ValueOf(elf.SHF_LINK_ORDER), + "SHF_MASKOS": reflect.ValueOf(elf.SHF_MASKOS), + "SHF_MASKPROC": reflect.ValueOf(elf.SHF_MASKPROC), + "SHF_MERGE": reflect.ValueOf(elf.SHF_MERGE), + "SHF_OS_NONCONFORMING": reflect.ValueOf(elf.SHF_OS_NONCONFORMING), + "SHF_STRINGS": reflect.ValueOf(elf.SHF_STRINGS), + "SHF_TLS": reflect.ValueOf(elf.SHF_TLS), + "SHF_WRITE": reflect.ValueOf(elf.SHF_WRITE), + "SHN_ABS": reflect.ValueOf(elf.SHN_ABS), + "SHN_COMMON": reflect.ValueOf(elf.SHN_COMMON), + "SHN_HIOS": reflect.ValueOf(elf.SHN_HIOS), + "SHN_HIPROC": reflect.ValueOf(elf.SHN_HIPROC), + "SHN_HIRESERVE": reflect.ValueOf(elf.SHN_HIRESERVE), + "SHN_LOOS": reflect.ValueOf(elf.SHN_LOOS), + "SHN_LOPROC": reflect.ValueOf(elf.SHN_LOPROC), + "SHN_LORESERVE": reflect.ValueOf(elf.SHN_LORESERVE), + "SHN_UNDEF": reflect.ValueOf(elf.SHN_UNDEF), + "SHN_XINDEX": reflect.ValueOf(elf.SHN_XINDEX), + "SHT_DYNAMIC": reflect.ValueOf(elf.SHT_DYNAMIC), + "SHT_DYNSYM": reflect.ValueOf(elf.SHT_DYNSYM), + "SHT_FINI_ARRAY": reflect.ValueOf(elf.SHT_FINI_ARRAY), + "SHT_GNU_ATTRIBUTES": reflect.ValueOf(elf.SHT_GNU_ATTRIBUTES), + "SHT_GNU_HASH": reflect.ValueOf(elf.SHT_GNU_HASH), + "SHT_GNU_LIBLIST": reflect.ValueOf(elf.SHT_GNU_LIBLIST), + "SHT_GNU_VERDEF": reflect.ValueOf(elf.SHT_GNU_VERDEF), + "SHT_GNU_VERNEED": reflect.ValueOf(elf.SHT_GNU_VERNEED), + "SHT_GNU_VERSYM": reflect.ValueOf(elf.SHT_GNU_VERSYM), + "SHT_GROUP": reflect.ValueOf(elf.SHT_GROUP), + "SHT_HASH": reflect.ValueOf(elf.SHT_HASH), + "SHT_HIOS": reflect.ValueOf(elf.SHT_HIOS), + "SHT_HIPROC": reflect.ValueOf(elf.SHT_HIPROC), + "SHT_HIUSER": reflect.ValueOf(elf.SHT_HIUSER), + "SHT_INIT_ARRAY": reflect.ValueOf(elf.SHT_INIT_ARRAY), + "SHT_LOOS": reflect.ValueOf(elf.SHT_LOOS), + "SHT_LOPROC": reflect.ValueOf(elf.SHT_LOPROC), + "SHT_LOUSER": reflect.ValueOf(elf.SHT_LOUSER), + "SHT_MIPS_ABIFLAGS": reflect.ValueOf(elf.SHT_MIPS_ABIFLAGS), + "SHT_NOBITS": reflect.ValueOf(elf.SHT_NOBITS), + "SHT_NOTE": reflect.ValueOf(elf.SHT_NOTE), + "SHT_NULL": reflect.ValueOf(elf.SHT_NULL), + "SHT_PREINIT_ARRAY": reflect.ValueOf(elf.SHT_PREINIT_ARRAY), + "SHT_PROGBITS": reflect.ValueOf(elf.SHT_PROGBITS), + "SHT_REL": reflect.ValueOf(elf.SHT_REL), + "SHT_RELA": reflect.ValueOf(elf.SHT_RELA), + "SHT_SHLIB": reflect.ValueOf(elf.SHT_SHLIB), + "SHT_STRTAB": reflect.ValueOf(elf.SHT_STRTAB), + "SHT_SYMTAB": reflect.ValueOf(elf.SHT_SYMTAB), + "SHT_SYMTAB_SHNDX": reflect.ValueOf(elf.SHT_SYMTAB_SHNDX), + "STB_GLOBAL": reflect.ValueOf(elf.STB_GLOBAL), + "STB_HIOS": reflect.ValueOf(elf.STB_HIOS), + "STB_HIPROC": reflect.ValueOf(elf.STB_HIPROC), + "STB_LOCAL": reflect.ValueOf(elf.STB_LOCAL), + "STB_LOOS": reflect.ValueOf(elf.STB_LOOS), + "STB_LOPROC": reflect.ValueOf(elf.STB_LOPROC), + "STB_WEAK": reflect.ValueOf(elf.STB_WEAK), + "STT_COMMON": reflect.ValueOf(elf.STT_COMMON), + "STT_FILE": reflect.ValueOf(elf.STT_FILE), + "STT_FUNC": reflect.ValueOf(elf.STT_FUNC), + "STT_HIOS": reflect.ValueOf(elf.STT_HIOS), + "STT_HIPROC": reflect.ValueOf(elf.STT_HIPROC), + "STT_LOOS": reflect.ValueOf(elf.STT_LOOS), + "STT_LOPROC": reflect.ValueOf(elf.STT_LOPROC), + "STT_NOTYPE": reflect.ValueOf(elf.STT_NOTYPE), + "STT_OBJECT": reflect.ValueOf(elf.STT_OBJECT), + "STT_SECTION": reflect.ValueOf(elf.STT_SECTION), + "STT_TLS": reflect.ValueOf(elf.STT_TLS), + "STV_DEFAULT": reflect.ValueOf(elf.STV_DEFAULT), + "STV_HIDDEN": reflect.ValueOf(elf.STV_HIDDEN), + "STV_INTERNAL": reflect.ValueOf(elf.STV_INTERNAL), + "STV_PROTECTED": reflect.ValueOf(elf.STV_PROTECTED), + "ST_BIND": reflect.ValueOf(elf.ST_BIND), + "ST_INFO": reflect.ValueOf(elf.ST_INFO), + "ST_TYPE": reflect.ValueOf(elf.ST_TYPE), + "ST_VISIBILITY": reflect.ValueOf(elf.ST_VISIBILITY), + "Sym32Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Sym64Size": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + + // type definitions + "Chdr32": reflect.ValueOf((*elf.Chdr32)(nil)), + "Chdr64": reflect.ValueOf((*elf.Chdr64)(nil)), + "Class": reflect.ValueOf((*elf.Class)(nil)), + "CompressionType": reflect.ValueOf((*elf.CompressionType)(nil)), + "Data": reflect.ValueOf((*elf.Data)(nil)), + "Dyn32": reflect.ValueOf((*elf.Dyn32)(nil)), + "Dyn64": reflect.ValueOf((*elf.Dyn64)(nil)), + "DynFlag": reflect.ValueOf((*elf.DynFlag)(nil)), + "DynTag": reflect.ValueOf((*elf.DynTag)(nil)), + "File": reflect.ValueOf((*elf.File)(nil)), + "FileHeader": reflect.ValueOf((*elf.FileHeader)(nil)), + "FormatError": reflect.ValueOf((*elf.FormatError)(nil)), + "Header32": reflect.ValueOf((*elf.Header32)(nil)), + "Header64": reflect.ValueOf((*elf.Header64)(nil)), + "ImportedSymbol": reflect.ValueOf((*elf.ImportedSymbol)(nil)), + "Machine": reflect.ValueOf((*elf.Machine)(nil)), + "NType": reflect.ValueOf((*elf.NType)(nil)), + "OSABI": reflect.ValueOf((*elf.OSABI)(nil)), + "Prog": reflect.ValueOf((*elf.Prog)(nil)), + "Prog32": reflect.ValueOf((*elf.Prog32)(nil)), + "Prog64": reflect.ValueOf((*elf.Prog64)(nil)), + "ProgFlag": reflect.ValueOf((*elf.ProgFlag)(nil)), + "ProgHeader": reflect.ValueOf((*elf.ProgHeader)(nil)), + "ProgType": reflect.ValueOf((*elf.ProgType)(nil)), + "R_386": reflect.ValueOf((*elf.R_386)(nil)), + "R_390": reflect.ValueOf((*elf.R_390)(nil)), + "R_AARCH64": reflect.ValueOf((*elf.R_AARCH64)(nil)), + "R_ALPHA": reflect.ValueOf((*elf.R_ALPHA)(nil)), + "R_ARM": reflect.ValueOf((*elf.R_ARM)(nil)), + "R_MIPS": reflect.ValueOf((*elf.R_MIPS)(nil)), + "R_PPC": reflect.ValueOf((*elf.R_PPC)(nil)), + "R_PPC64": reflect.ValueOf((*elf.R_PPC64)(nil)), + "R_RISCV": reflect.ValueOf((*elf.R_RISCV)(nil)), + "R_SPARC": reflect.ValueOf((*elf.R_SPARC)(nil)), + "R_X86_64": reflect.ValueOf((*elf.R_X86_64)(nil)), + "Rel32": reflect.ValueOf((*elf.Rel32)(nil)), + "Rel64": reflect.ValueOf((*elf.Rel64)(nil)), + "Rela32": reflect.ValueOf((*elf.Rela32)(nil)), + "Rela64": reflect.ValueOf((*elf.Rela64)(nil)), + "Section": reflect.ValueOf((*elf.Section)(nil)), + "Section32": reflect.ValueOf((*elf.Section32)(nil)), + "Section64": reflect.ValueOf((*elf.Section64)(nil)), + "SectionFlag": reflect.ValueOf((*elf.SectionFlag)(nil)), + "SectionHeader": reflect.ValueOf((*elf.SectionHeader)(nil)), + "SectionIndex": reflect.ValueOf((*elf.SectionIndex)(nil)), + "SectionType": reflect.ValueOf((*elf.SectionType)(nil)), + "Sym32": reflect.ValueOf((*elf.Sym32)(nil)), + "Sym64": reflect.ValueOf((*elf.Sym64)(nil)), + "SymBind": reflect.ValueOf((*elf.SymBind)(nil)), + "SymType": reflect.ValueOf((*elf.SymType)(nil)), + "SymVis": reflect.ValueOf((*elf.SymVis)(nil)), + "Symbol": reflect.ValueOf((*elf.Symbol)(nil)), + "Type": reflect.ValueOf((*elf.Type)(nil)), + "Version": reflect.ValueOf((*elf.Version)(nil)), + } +} diff --git a/stdlib/go1_18_debug_gosym.go b/stdlib/go1_18_debug_gosym.go new file mode 100644 index 000000000..b0427c301 --- /dev/null +++ b/stdlib/go1_18_debug_gosym.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/gosym" + "reflect" +) + +func init() { + Symbols["debug/gosym/gosym"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewLineTable": reflect.ValueOf(gosym.NewLineTable), + "NewTable": reflect.ValueOf(gosym.NewTable), + + // type definitions + "DecodingError": reflect.ValueOf((*gosym.DecodingError)(nil)), + "Func": reflect.ValueOf((*gosym.Func)(nil)), + "LineTable": reflect.ValueOf((*gosym.LineTable)(nil)), + "Obj": reflect.ValueOf((*gosym.Obj)(nil)), + "Sym": reflect.ValueOf((*gosym.Sym)(nil)), + "Table": reflect.ValueOf((*gosym.Table)(nil)), + "UnknownFileError": reflect.ValueOf((*gosym.UnknownFileError)(nil)), + "UnknownLineError": reflect.ValueOf((*gosym.UnknownLineError)(nil)), + } +} diff --git a/stdlib/go1_18_debug_macho.go b/stdlib/go1_18_debug_macho.go new file mode 100644 index 000000000..4e197099e --- /dev/null +++ b/stdlib/go1_18_debug_macho.go @@ -0,0 +1,160 @@ +// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/macho" + "reflect" +) + +func init() { + Symbols["debug/macho/macho"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ARM64_RELOC_ADDEND": reflect.ValueOf(macho.ARM64_RELOC_ADDEND), + "ARM64_RELOC_BRANCH26": reflect.ValueOf(macho.ARM64_RELOC_BRANCH26), + "ARM64_RELOC_GOT_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGE21), + "ARM64_RELOC_GOT_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGEOFF12), + "ARM64_RELOC_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_PAGE21), + "ARM64_RELOC_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_PAGEOFF12), + "ARM64_RELOC_POINTER_TO_GOT": reflect.ValueOf(macho.ARM64_RELOC_POINTER_TO_GOT), + "ARM64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.ARM64_RELOC_SUBTRACTOR), + "ARM64_RELOC_TLVP_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGE21), + "ARM64_RELOC_TLVP_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGEOFF12), + "ARM64_RELOC_UNSIGNED": reflect.ValueOf(macho.ARM64_RELOC_UNSIGNED), + "ARM_RELOC_BR24": reflect.ValueOf(macho.ARM_RELOC_BR24), + "ARM_RELOC_HALF": reflect.ValueOf(macho.ARM_RELOC_HALF), + "ARM_RELOC_HALF_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_HALF_SECTDIFF), + "ARM_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_LOCAL_SECTDIFF), + "ARM_RELOC_PAIR": reflect.ValueOf(macho.ARM_RELOC_PAIR), + "ARM_RELOC_PB_LA_PTR": reflect.ValueOf(macho.ARM_RELOC_PB_LA_PTR), + "ARM_RELOC_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_SECTDIFF), + "ARM_RELOC_VANILLA": reflect.ValueOf(macho.ARM_RELOC_VANILLA), + "ARM_THUMB_32BIT_BRANCH": reflect.ValueOf(macho.ARM_THUMB_32BIT_BRANCH), + "ARM_THUMB_RELOC_BR22": reflect.ValueOf(macho.ARM_THUMB_RELOC_BR22), + "Cpu386": reflect.ValueOf(macho.Cpu386), + "CpuAmd64": reflect.ValueOf(macho.CpuAmd64), + "CpuArm": reflect.ValueOf(macho.CpuArm), + "CpuArm64": reflect.ValueOf(macho.CpuArm64), + "CpuPpc": reflect.ValueOf(macho.CpuPpc), + "CpuPpc64": reflect.ValueOf(macho.CpuPpc64), + "ErrNotFat": reflect.ValueOf(&macho.ErrNotFat).Elem(), + "FlagAllModsBound": reflect.ValueOf(macho.FlagAllModsBound), + "FlagAllowStackExecution": reflect.ValueOf(macho.FlagAllowStackExecution), + "FlagAppExtensionSafe": reflect.ValueOf(macho.FlagAppExtensionSafe), + "FlagBindAtLoad": reflect.ValueOf(macho.FlagBindAtLoad), + "FlagBindsToWeak": reflect.ValueOf(macho.FlagBindsToWeak), + "FlagCanonical": reflect.ValueOf(macho.FlagCanonical), + "FlagDeadStrippableDylib": reflect.ValueOf(macho.FlagDeadStrippableDylib), + "FlagDyldLink": reflect.ValueOf(macho.FlagDyldLink), + "FlagForceFlat": reflect.ValueOf(macho.FlagForceFlat), + "FlagHasTLVDescriptors": reflect.ValueOf(macho.FlagHasTLVDescriptors), + "FlagIncrLink": reflect.ValueOf(macho.FlagIncrLink), + "FlagLazyInit": reflect.ValueOf(macho.FlagLazyInit), + "FlagNoFixPrebinding": reflect.ValueOf(macho.FlagNoFixPrebinding), + "FlagNoHeapExecution": reflect.ValueOf(macho.FlagNoHeapExecution), + "FlagNoMultiDefs": reflect.ValueOf(macho.FlagNoMultiDefs), + "FlagNoReexportedDylibs": reflect.ValueOf(macho.FlagNoReexportedDylibs), + "FlagNoUndefs": reflect.ValueOf(macho.FlagNoUndefs), + "FlagPIE": reflect.ValueOf(macho.FlagPIE), + "FlagPrebindable": reflect.ValueOf(macho.FlagPrebindable), + "FlagPrebound": reflect.ValueOf(macho.FlagPrebound), + "FlagRootSafe": reflect.ValueOf(macho.FlagRootSafe), + "FlagSetuidSafe": reflect.ValueOf(macho.FlagSetuidSafe), + "FlagSplitSegs": reflect.ValueOf(macho.FlagSplitSegs), + "FlagSubsectionsViaSymbols": reflect.ValueOf(macho.FlagSubsectionsViaSymbols), + "FlagTwoLevel": reflect.ValueOf(macho.FlagTwoLevel), + "FlagWeakDefines": reflect.ValueOf(macho.FlagWeakDefines), + "GENERIC_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_LOCAL_SECTDIFF), + "GENERIC_RELOC_PAIR": reflect.ValueOf(macho.GENERIC_RELOC_PAIR), + "GENERIC_RELOC_PB_LA_PTR": reflect.ValueOf(macho.GENERIC_RELOC_PB_LA_PTR), + "GENERIC_RELOC_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_SECTDIFF), + "GENERIC_RELOC_TLV": reflect.ValueOf(macho.GENERIC_RELOC_TLV), + "GENERIC_RELOC_VANILLA": reflect.ValueOf(macho.GENERIC_RELOC_VANILLA), + "LoadCmdDylib": reflect.ValueOf(macho.LoadCmdDylib), + "LoadCmdDylinker": reflect.ValueOf(macho.LoadCmdDylinker), + "LoadCmdDysymtab": reflect.ValueOf(macho.LoadCmdDysymtab), + "LoadCmdRpath": reflect.ValueOf(macho.LoadCmdRpath), + "LoadCmdSegment": reflect.ValueOf(macho.LoadCmdSegment), + "LoadCmdSegment64": reflect.ValueOf(macho.LoadCmdSegment64), + "LoadCmdSymtab": reflect.ValueOf(macho.LoadCmdSymtab), + "LoadCmdThread": reflect.ValueOf(macho.LoadCmdThread), + "LoadCmdUnixThread": reflect.ValueOf(macho.LoadCmdUnixThread), + "Magic32": reflect.ValueOf(macho.Magic32), + "Magic64": reflect.ValueOf(macho.Magic64), + "MagicFat": reflect.ValueOf(macho.MagicFat), + "NewFatFile": reflect.ValueOf(macho.NewFatFile), + "NewFile": reflect.ValueOf(macho.NewFile), + "Open": reflect.ValueOf(macho.Open), + "OpenFat": reflect.ValueOf(macho.OpenFat), + "TypeBundle": reflect.ValueOf(macho.TypeBundle), + "TypeDylib": reflect.ValueOf(macho.TypeDylib), + "TypeExec": reflect.ValueOf(macho.TypeExec), + "TypeObj": reflect.ValueOf(macho.TypeObj), + "X86_64_RELOC_BRANCH": reflect.ValueOf(macho.X86_64_RELOC_BRANCH), + "X86_64_RELOC_GOT": reflect.ValueOf(macho.X86_64_RELOC_GOT), + "X86_64_RELOC_GOT_LOAD": reflect.ValueOf(macho.X86_64_RELOC_GOT_LOAD), + "X86_64_RELOC_SIGNED": reflect.ValueOf(macho.X86_64_RELOC_SIGNED), + "X86_64_RELOC_SIGNED_1": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_1), + "X86_64_RELOC_SIGNED_2": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_2), + "X86_64_RELOC_SIGNED_4": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_4), + "X86_64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.X86_64_RELOC_SUBTRACTOR), + "X86_64_RELOC_TLV": reflect.ValueOf(macho.X86_64_RELOC_TLV), + "X86_64_RELOC_UNSIGNED": reflect.ValueOf(macho.X86_64_RELOC_UNSIGNED), + + // type definitions + "Cpu": reflect.ValueOf((*macho.Cpu)(nil)), + "Dylib": reflect.ValueOf((*macho.Dylib)(nil)), + "DylibCmd": reflect.ValueOf((*macho.DylibCmd)(nil)), + "Dysymtab": reflect.ValueOf((*macho.Dysymtab)(nil)), + "DysymtabCmd": reflect.ValueOf((*macho.DysymtabCmd)(nil)), + "FatArch": reflect.ValueOf((*macho.FatArch)(nil)), + "FatArchHeader": reflect.ValueOf((*macho.FatArchHeader)(nil)), + "FatFile": reflect.ValueOf((*macho.FatFile)(nil)), + "File": reflect.ValueOf((*macho.File)(nil)), + "FileHeader": reflect.ValueOf((*macho.FileHeader)(nil)), + "FormatError": reflect.ValueOf((*macho.FormatError)(nil)), + "Load": reflect.ValueOf((*macho.Load)(nil)), + "LoadBytes": reflect.ValueOf((*macho.LoadBytes)(nil)), + "LoadCmd": reflect.ValueOf((*macho.LoadCmd)(nil)), + "Nlist32": reflect.ValueOf((*macho.Nlist32)(nil)), + "Nlist64": reflect.ValueOf((*macho.Nlist64)(nil)), + "Regs386": reflect.ValueOf((*macho.Regs386)(nil)), + "RegsAMD64": reflect.ValueOf((*macho.RegsAMD64)(nil)), + "Reloc": reflect.ValueOf((*macho.Reloc)(nil)), + "RelocTypeARM": reflect.ValueOf((*macho.RelocTypeARM)(nil)), + "RelocTypeARM64": reflect.ValueOf((*macho.RelocTypeARM64)(nil)), + "RelocTypeGeneric": reflect.ValueOf((*macho.RelocTypeGeneric)(nil)), + "RelocTypeX86_64": reflect.ValueOf((*macho.RelocTypeX86_64)(nil)), + "Rpath": reflect.ValueOf((*macho.Rpath)(nil)), + "RpathCmd": reflect.ValueOf((*macho.RpathCmd)(nil)), + "Section": reflect.ValueOf((*macho.Section)(nil)), + "Section32": reflect.ValueOf((*macho.Section32)(nil)), + "Section64": reflect.ValueOf((*macho.Section64)(nil)), + "SectionHeader": reflect.ValueOf((*macho.SectionHeader)(nil)), + "Segment": reflect.ValueOf((*macho.Segment)(nil)), + "Segment32": reflect.ValueOf((*macho.Segment32)(nil)), + "Segment64": reflect.ValueOf((*macho.Segment64)(nil)), + "SegmentHeader": reflect.ValueOf((*macho.SegmentHeader)(nil)), + "Symbol": reflect.ValueOf((*macho.Symbol)(nil)), + "Symtab": reflect.ValueOf((*macho.Symtab)(nil)), + "SymtabCmd": reflect.ValueOf((*macho.SymtabCmd)(nil)), + "Thread": reflect.ValueOf((*macho.Thread)(nil)), + "Type": reflect.ValueOf((*macho.Type)(nil)), + + // interface wrapper definitions + "_Load": reflect.ValueOf((*_debug_macho_Load)(nil)), + } +} + +// _debug_macho_Load is an interface wrapper for Load type +type _debug_macho_Load struct { + IValue interface{} + WRaw func() []byte +} + +func (W _debug_macho_Load) Raw() []byte { + return W.WRaw() +} diff --git a/stdlib/go1_18_debug_pe.go b/stdlib/go1_18_debug_pe.go new file mode 100644 index 000000000..72f6afe67 --- /dev/null +++ b/stdlib/go1_18_debug_pe.go @@ -0,0 +1,115 @@ +// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/pe" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["debug/pe/pe"] = map[string]reflect.Value{ + // function, constant and variable definitions + "COFFSymbolSize": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_ARCHITECTURE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_BASERELOC": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_EXCEPTION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_EXPORT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_GLOBALPTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_IAT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_RESOURCE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_TLS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_APPCONTAINER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_GUARD_CF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NO_BIND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NO_SEH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NX_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_WDM_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IMAGE_FILE_32BIT_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IMAGE_FILE_AGGRESIVE_WS_TRIM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IMAGE_FILE_BYTES_REVERSED_HI": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IMAGE_FILE_BYTES_REVERSED_LO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IMAGE_FILE_DEBUG_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IMAGE_FILE_DLL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IMAGE_FILE_EXECUTABLE_IMAGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_FILE_LARGE_ADDRESS_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IMAGE_FILE_LINE_NUMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAGE_FILE_LOCAL_SYMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IMAGE_FILE_MACHINE_AM33": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "IMAGE_FILE_MACHINE_AMD64": reflect.ValueOf(constant.MakeFromLiteral("34404", token.INT, 0)), + "IMAGE_FILE_MACHINE_ARM": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "IMAGE_FILE_MACHINE_ARM64": reflect.ValueOf(constant.MakeFromLiteral("43620", token.INT, 0)), + "IMAGE_FILE_MACHINE_ARMNT": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "IMAGE_FILE_MACHINE_EBC": reflect.ValueOf(constant.MakeFromLiteral("3772", token.INT, 0)), + "IMAGE_FILE_MACHINE_I386": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "IMAGE_FILE_MACHINE_IA64": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IMAGE_FILE_MACHINE_M32R": reflect.ValueOf(constant.MakeFromLiteral("36929", token.INT, 0)), + "IMAGE_FILE_MACHINE_MIPS16": reflect.ValueOf(constant.MakeFromLiteral("614", token.INT, 0)), + "IMAGE_FILE_MACHINE_MIPSFPU": reflect.ValueOf(constant.MakeFromLiteral("870", token.INT, 0)), + "IMAGE_FILE_MACHINE_MIPSFPU16": reflect.ValueOf(constant.MakeFromLiteral("1126", token.INT, 0)), + "IMAGE_FILE_MACHINE_POWERPC": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "IMAGE_FILE_MACHINE_POWERPCFP": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "IMAGE_FILE_MACHINE_R4000": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH3": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH3DSP": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH4": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH5": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "IMAGE_FILE_MACHINE_THUMB": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "IMAGE_FILE_MACHINE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IMAGE_FILE_MACHINE_WCEMIPSV2": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "IMAGE_FILE_NET_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IMAGE_FILE_RELOCS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IMAGE_FILE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IMAGE_FILE_UP_SYSTEM_ONLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_ROM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IMAGE_SUBSYSTEM_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_SUBSYSTEM_NATIVE_WINDOWS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IMAGE_SUBSYSTEM_OS2_CUI": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IMAGE_SUBSYSTEM_POSIX_CUI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IMAGE_SUBSYSTEM_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_CE_GUI": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_CUI": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_GUI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_SUBSYSTEM_XBOX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NewFile": reflect.ValueOf(pe.NewFile), + "Open": reflect.ValueOf(pe.Open), + + // type definitions + "COFFSymbol": reflect.ValueOf((*pe.COFFSymbol)(nil)), + "DataDirectory": reflect.ValueOf((*pe.DataDirectory)(nil)), + "File": reflect.ValueOf((*pe.File)(nil)), + "FileHeader": reflect.ValueOf((*pe.FileHeader)(nil)), + "FormatError": reflect.ValueOf((*pe.FormatError)(nil)), + "ImportDirectory": reflect.ValueOf((*pe.ImportDirectory)(nil)), + "OptionalHeader32": reflect.ValueOf((*pe.OptionalHeader32)(nil)), + "OptionalHeader64": reflect.ValueOf((*pe.OptionalHeader64)(nil)), + "Reloc": reflect.ValueOf((*pe.Reloc)(nil)), + "Section": reflect.ValueOf((*pe.Section)(nil)), + "SectionHeader": reflect.ValueOf((*pe.SectionHeader)(nil)), + "SectionHeader32": reflect.ValueOf((*pe.SectionHeader32)(nil)), + "StringTable": reflect.ValueOf((*pe.StringTable)(nil)), + "Symbol": reflect.ValueOf((*pe.Symbol)(nil)), + } +} diff --git a/stdlib/go1_18_debug_plan9obj.go b/stdlib/go1_18_debug_plan9obj.go new file mode 100644 index 000000000..f49b69fc1 --- /dev/null +++ b/stdlib/go1_18_debug_plan9obj.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "debug/plan9obj" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["debug/plan9obj/plan9obj"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrNoSymbols": reflect.ValueOf(&plan9obj.ErrNoSymbols).Elem(), + "Magic386": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "Magic64": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MagicAMD64": reflect.ValueOf(constant.MakeFromLiteral("35479", token.INT, 0)), + "MagicARM": reflect.ValueOf(constant.MakeFromLiteral("1607", token.INT, 0)), + "NewFile": reflect.ValueOf(plan9obj.NewFile), + "Open": reflect.ValueOf(plan9obj.Open), + + // type definitions + "File": reflect.ValueOf((*plan9obj.File)(nil)), + "FileHeader": reflect.ValueOf((*plan9obj.FileHeader)(nil)), + "Section": reflect.ValueOf((*plan9obj.Section)(nil)), + "SectionHeader": reflect.ValueOf((*plan9obj.SectionHeader)(nil)), + "Sym": reflect.ValueOf((*plan9obj.Sym)(nil)), + } +} diff --git a/stdlib/go1_18_embed.go b/stdlib/go1_18_embed.go new file mode 100644 index 000000000..50c6e1143 --- /dev/null +++ b/stdlib/go1_18_embed.go @@ -0,0 +1,18 @@ +// Code generated by 'yaegi extract embed'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "embed" + "reflect" +) + +func init() { + Symbols["embed/embed"] = map[string]reflect.Value{ + // type definitions + "FS": reflect.ValueOf((*embed.FS)(nil)), + } +} diff --git a/stdlib/go1_18_encoding.go b/stdlib/go1_18_encoding.go new file mode 100644 index 000000000..2a75f0eeb --- /dev/null +++ b/stdlib/go1_18_encoding.go @@ -0,0 +1,67 @@ +// Code generated by 'yaegi extract encoding'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding" + "reflect" +) + +func init() { + Symbols["encoding/encoding"] = map[string]reflect.Value{ + // type definitions + "BinaryMarshaler": reflect.ValueOf((*encoding.BinaryMarshaler)(nil)), + "BinaryUnmarshaler": reflect.ValueOf((*encoding.BinaryUnmarshaler)(nil)), + "TextMarshaler": reflect.ValueOf((*encoding.TextMarshaler)(nil)), + "TextUnmarshaler": reflect.ValueOf((*encoding.TextUnmarshaler)(nil)), + + // interface wrapper definitions + "_BinaryMarshaler": reflect.ValueOf((*_encoding_BinaryMarshaler)(nil)), + "_BinaryUnmarshaler": reflect.ValueOf((*_encoding_BinaryUnmarshaler)(nil)), + "_TextMarshaler": reflect.ValueOf((*_encoding_TextMarshaler)(nil)), + "_TextUnmarshaler": reflect.ValueOf((*_encoding_TextUnmarshaler)(nil)), + } +} + +// _encoding_BinaryMarshaler is an interface wrapper for BinaryMarshaler type +type _encoding_BinaryMarshaler struct { + IValue interface{} + WMarshalBinary func() (data []byte, err error) +} + +func (W _encoding_BinaryMarshaler) MarshalBinary() (data []byte, err error) { + return W.WMarshalBinary() +} + +// _encoding_BinaryUnmarshaler is an interface wrapper for BinaryUnmarshaler type +type _encoding_BinaryUnmarshaler struct { + IValue interface{} + WUnmarshalBinary func(data []byte) error +} + +func (W _encoding_BinaryUnmarshaler) UnmarshalBinary(data []byte) error { + return W.WUnmarshalBinary(data) +} + +// _encoding_TextMarshaler is an interface wrapper for TextMarshaler type +type _encoding_TextMarshaler struct { + IValue interface{} + WMarshalText func() (text []byte, err error) +} + +func (W _encoding_TextMarshaler) MarshalText() (text []byte, err error) { + return W.WMarshalText() +} + +// _encoding_TextUnmarshaler is an interface wrapper for TextUnmarshaler type +type _encoding_TextUnmarshaler struct { + IValue interface{} + WUnmarshalText func(text []byte) error +} + +func (W _encoding_TextUnmarshaler) UnmarshalText(text []byte) error { + return W.WUnmarshalText(text) +} diff --git a/stdlib/go1_18_encoding_ascii85.go b/stdlib/go1_18_encoding_ascii85.go new file mode 100644 index 000000000..f126cc8d2 --- /dev/null +++ b/stdlib/go1_18_encoding_ascii85.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/ascii85" + "reflect" +) + +func init() { + Symbols["encoding/ascii85/ascii85"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(ascii85.Decode), + "Encode": reflect.ValueOf(ascii85.Encode), + "MaxEncodedLen": reflect.ValueOf(ascii85.MaxEncodedLen), + "NewDecoder": reflect.ValueOf(ascii85.NewDecoder), + "NewEncoder": reflect.ValueOf(ascii85.NewEncoder), + + // type definitions + "CorruptInputError": reflect.ValueOf((*ascii85.CorruptInputError)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_asn1.go b/stdlib/go1_18_encoding_asn1.go new file mode 100644 index 000000000..a1568b6f5 --- /dev/null +++ b/stdlib/go1_18_encoding_asn1.go @@ -0,0 +1,57 @@ +// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/asn1" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["encoding/asn1/asn1"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ClassApplication": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ClassContextSpecific": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ClassPrivate": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ClassUniversal": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Marshal": reflect.ValueOf(asn1.Marshal), + "MarshalWithParams": reflect.ValueOf(asn1.MarshalWithParams), + "NullBytes": reflect.ValueOf(&asn1.NullBytes).Elem(), + "NullRawValue": reflect.ValueOf(&asn1.NullRawValue).Elem(), + "TagBMPString": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "TagBitString": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TagBoolean": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TagEnum": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TagGeneralString": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TagGeneralizedTime": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TagIA5String": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TagInteger": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TagNull": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TagNumericString": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TagOID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TagOctetString": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TagPrintableString": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TagSequence": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TagSet": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TagT61String": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TagUTCTime": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TagUTF8String": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "Unmarshal": reflect.ValueOf(asn1.Unmarshal), + "UnmarshalWithParams": reflect.ValueOf(asn1.UnmarshalWithParams), + + // type definitions + "BitString": reflect.ValueOf((*asn1.BitString)(nil)), + "Enumerated": reflect.ValueOf((*asn1.Enumerated)(nil)), + "Flag": reflect.ValueOf((*asn1.Flag)(nil)), + "ObjectIdentifier": reflect.ValueOf((*asn1.ObjectIdentifier)(nil)), + "RawContent": reflect.ValueOf((*asn1.RawContent)(nil)), + "RawValue": reflect.ValueOf((*asn1.RawValue)(nil)), + "StructuralError": reflect.ValueOf((*asn1.StructuralError)(nil)), + "SyntaxError": reflect.ValueOf((*asn1.SyntaxError)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_base32.go b/stdlib/go1_18_encoding_base32.go new file mode 100644 index 000000000..5bfd91bd9 --- /dev/null +++ b/stdlib/go1_18_encoding_base32.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/base32" + "reflect" +) + +func init() { + Symbols["encoding/base32/base32"] = map[string]reflect.Value{ + // function, constant and variable definitions + "HexEncoding": reflect.ValueOf(&base32.HexEncoding).Elem(), + "NewDecoder": reflect.ValueOf(base32.NewDecoder), + "NewEncoder": reflect.ValueOf(base32.NewEncoder), + "NewEncoding": reflect.ValueOf(base32.NewEncoding), + "NoPadding": reflect.ValueOf(base32.NoPadding), + "StdEncoding": reflect.ValueOf(&base32.StdEncoding).Elem(), + "StdPadding": reflect.ValueOf(base32.StdPadding), + + // type definitions + "CorruptInputError": reflect.ValueOf((*base32.CorruptInputError)(nil)), + "Encoding": reflect.ValueOf((*base32.Encoding)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_base64.go b/stdlib/go1_18_encoding_base64.go new file mode 100644 index 000000000..51b21d6d6 --- /dev/null +++ b/stdlib/go1_18_encoding_base64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/base64" + "reflect" +) + +func init() { + Symbols["encoding/base64/base64"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewDecoder": reflect.ValueOf(base64.NewDecoder), + "NewEncoder": reflect.ValueOf(base64.NewEncoder), + "NewEncoding": reflect.ValueOf(base64.NewEncoding), + "NoPadding": reflect.ValueOf(base64.NoPadding), + "RawStdEncoding": reflect.ValueOf(&base64.RawStdEncoding).Elem(), + "RawURLEncoding": reflect.ValueOf(&base64.RawURLEncoding).Elem(), + "StdEncoding": reflect.ValueOf(&base64.StdEncoding).Elem(), + "StdPadding": reflect.ValueOf(base64.StdPadding), + "URLEncoding": reflect.ValueOf(&base64.URLEncoding).Elem(), + + // type definitions + "CorruptInputError": reflect.ValueOf((*base64.CorruptInputError)(nil)), + "Encoding": reflect.ValueOf((*base64.Encoding)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_binary.go b/stdlib/go1_18_encoding_binary.go new file mode 100644 index 000000000..c580da009 --- /dev/null +++ b/stdlib/go1_18_encoding_binary.go @@ -0,0 +1,76 @@ +// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/binary" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["encoding/binary/binary"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BigEndian": reflect.ValueOf(&binary.BigEndian).Elem(), + "LittleEndian": reflect.ValueOf(&binary.LittleEndian).Elem(), + "MaxVarintLen16": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MaxVarintLen32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MaxVarintLen64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PutUvarint": reflect.ValueOf(binary.PutUvarint), + "PutVarint": reflect.ValueOf(binary.PutVarint), + "Read": reflect.ValueOf(binary.Read), + "ReadUvarint": reflect.ValueOf(binary.ReadUvarint), + "ReadVarint": reflect.ValueOf(binary.ReadVarint), + "Size": reflect.ValueOf(binary.Size), + "Uvarint": reflect.ValueOf(binary.Uvarint), + "Varint": reflect.ValueOf(binary.Varint), + "Write": reflect.ValueOf(binary.Write), + + // type definitions + "ByteOrder": reflect.ValueOf((*binary.ByteOrder)(nil)), + + // interface wrapper definitions + "_ByteOrder": reflect.ValueOf((*_encoding_binary_ByteOrder)(nil)), + } +} + +// _encoding_binary_ByteOrder is an interface wrapper for ByteOrder type +type _encoding_binary_ByteOrder struct { + IValue interface{} + WPutUint16 func(a0 []byte, a1 uint16) + WPutUint32 func(a0 []byte, a1 uint32) + WPutUint64 func(a0 []byte, a1 uint64) + WString func() string + WUint16 func(a0 []byte) uint16 + WUint32 func(a0 []byte) uint32 + WUint64 func(a0 []byte) uint64 +} + +func (W _encoding_binary_ByteOrder) PutUint16(a0 []byte, a1 uint16) { + W.WPutUint16(a0, a1) +} +func (W _encoding_binary_ByteOrder) PutUint32(a0 []byte, a1 uint32) { + W.WPutUint32(a0, a1) +} +func (W _encoding_binary_ByteOrder) PutUint64(a0 []byte, a1 uint64) { + W.WPutUint64(a0, a1) +} +func (W _encoding_binary_ByteOrder) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _encoding_binary_ByteOrder) Uint16(a0 []byte) uint16 { + return W.WUint16(a0) +} +func (W _encoding_binary_ByteOrder) Uint32(a0 []byte) uint32 { + return W.WUint32(a0) +} +func (W _encoding_binary_ByteOrder) Uint64(a0 []byte) uint64 { + return W.WUint64(a0) +} diff --git a/stdlib/go1_18_encoding_csv.go b/stdlib/go1_18_encoding_csv.go new file mode 100644 index 000000000..63f149add --- /dev/null +++ b/stdlib/go1_18_encoding_csv.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/csv" + "reflect" +) + +func init() { + Symbols["encoding/csv/csv"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrBareQuote": reflect.ValueOf(&csv.ErrBareQuote).Elem(), + "ErrFieldCount": reflect.ValueOf(&csv.ErrFieldCount).Elem(), + "ErrQuote": reflect.ValueOf(&csv.ErrQuote).Elem(), + "ErrTrailingComma": reflect.ValueOf(&csv.ErrTrailingComma).Elem(), + "NewReader": reflect.ValueOf(csv.NewReader), + "NewWriter": reflect.ValueOf(csv.NewWriter), + + // type definitions + "ParseError": reflect.ValueOf((*csv.ParseError)(nil)), + "Reader": reflect.ValueOf((*csv.Reader)(nil)), + "Writer": reflect.ValueOf((*csv.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_gob.go b/stdlib/go1_18_encoding_gob.go new file mode 100644 index 000000000..fb4f394c5 --- /dev/null +++ b/stdlib/go1_18_encoding_gob.go @@ -0,0 +1,52 @@ +// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/gob" + "reflect" +) + +func init() { + Symbols["encoding/gob/gob"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewDecoder": reflect.ValueOf(gob.NewDecoder), + "NewEncoder": reflect.ValueOf(gob.NewEncoder), + "Register": reflect.ValueOf(gob.Register), + "RegisterName": reflect.ValueOf(gob.RegisterName), + + // type definitions + "CommonType": reflect.ValueOf((*gob.CommonType)(nil)), + "Decoder": reflect.ValueOf((*gob.Decoder)(nil)), + "Encoder": reflect.ValueOf((*gob.Encoder)(nil)), + "GobDecoder": reflect.ValueOf((*gob.GobDecoder)(nil)), + "GobEncoder": reflect.ValueOf((*gob.GobEncoder)(nil)), + + // interface wrapper definitions + "_GobDecoder": reflect.ValueOf((*_encoding_gob_GobDecoder)(nil)), + "_GobEncoder": reflect.ValueOf((*_encoding_gob_GobEncoder)(nil)), + } +} + +// _encoding_gob_GobDecoder is an interface wrapper for GobDecoder type +type _encoding_gob_GobDecoder struct { + IValue interface{} + WGobDecode func(a0 []byte) error +} + +func (W _encoding_gob_GobDecoder) GobDecode(a0 []byte) error { + return W.WGobDecode(a0) +} + +// _encoding_gob_GobEncoder is an interface wrapper for GobEncoder type +type _encoding_gob_GobEncoder struct { + IValue interface{} + WGobEncode func() ([]byte, error) +} + +func (W _encoding_gob_GobEncoder) GobEncode() ([]byte, error) { + return W.WGobEncode() +} diff --git a/stdlib/go1_18_encoding_hex.go b/stdlib/go1_18_encoding_hex.go new file mode 100644 index 000000000..57f3b4f0e --- /dev/null +++ b/stdlib/go1_18_encoding_hex.go @@ -0,0 +1,31 @@ +// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/hex" + "reflect" +) + +func init() { + Symbols["encoding/hex/hex"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(hex.Decode), + "DecodeString": reflect.ValueOf(hex.DecodeString), + "DecodedLen": reflect.ValueOf(hex.DecodedLen), + "Dump": reflect.ValueOf(hex.Dump), + "Dumper": reflect.ValueOf(hex.Dumper), + "Encode": reflect.ValueOf(hex.Encode), + "EncodeToString": reflect.ValueOf(hex.EncodeToString), + "EncodedLen": reflect.ValueOf(hex.EncodedLen), + "ErrLength": reflect.ValueOf(&hex.ErrLength).Elem(), + "NewDecoder": reflect.ValueOf(hex.NewDecoder), + "NewEncoder": reflect.ValueOf(hex.NewEncoder), + + // type definitions + "InvalidByteError": reflect.ValueOf((*hex.InvalidByteError)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_json.go b/stdlib/go1_18_encoding_json.go new file mode 100644 index 000000000..f70defd74 --- /dev/null +++ b/stdlib/go1_18_encoding_json.go @@ -0,0 +1,74 @@ +// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/json" + "reflect" +) + +func init() { + Symbols["encoding/json/json"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Compact": reflect.ValueOf(json.Compact), + "HTMLEscape": reflect.ValueOf(json.HTMLEscape), + "Indent": reflect.ValueOf(json.Indent), + "Marshal": reflect.ValueOf(json.Marshal), + "MarshalIndent": reflect.ValueOf(json.MarshalIndent), + "NewDecoder": reflect.ValueOf(json.NewDecoder), + "NewEncoder": reflect.ValueOf(json.NewEncoder), + "Unmarshal": reflect.ValueOf(json.Unmarshal), + "Valid": reflect.ValueOf(json.Valid), + + // type definitions + "Decoder": reflect.ValueOf((*json.Decoder)(nil)), + "Delim": reflect.ValueOf((*json.Delim)(nil)), + "Encoder": reflect.ValueOf((*json.Encoder)(nil)), + "InvalidUTF8Error": reflect.ValueOf((*json.InvalidUTF8Error)(nil)), + "InvalidUnmarshalError": reflect.ValueOf((*json.InvalidUnmarshalError)(nil)), + "Marshaler": reflect.ValueOf((*json.Marshaler)(nil)), + "MarshalerError": reflect.ValueOf((*json.MarshalerError)(nil)), + "Number": reflect.ValueOf((*json.Number)(nil)), + "RawMessage": reflect.ValueOf((*json.RawMessage)(nil)), + "SyntaxError": reflect.ValueOf((*json.SyntaxError)(nil)), + "Token": reflect.ValueOf((*json.Token)(nil)), + "UnmarshalFieldError": reflect.ValueOf((*json.UnmarshalFieldError)(nil)), + "UnmarshalTypeError": reflect.ValueOf((*json.UnmarshalTypeError)(nil)), + "Unmarshaler": reflect.ValueOf((*json.Unmarshaler)(nil)), + "UnsupportedTypeError": reflect.ValueOf((*json.UnsupportedTypeError)(nil)), + "UnsupportedValueError": reflect.ValueOf((*json.UnsupportedValueError)(nil)), + + // interface wrapper definitions + "_Marshaler": reflect.ValueOf((*_encoding_json_Marshaler)(nil)), + "_Token": reflect.ValueOf((*_encoding_json_Token)(nil)), + "_Unmarshaler": reflect.ValueOf((*_encoding_json_Unmarshaler)(nil)), + } +} + +// _encoding_json_Marshaler is an interface wrapper for Marshaler type +type _encoding_json_Marshaler struct { + IValue interface{} + WMarshalJSON func() ([]byte, error) +} + +func (W _encoding_json_Marshaler) MarshalJSON() ([]byte, error) { + return W.WMarshalJSON() +} + +// _encoding_json_Token is an interface wrapper for Token type +type _encoding_json_Token struct { + IValue interface{} +} + +// _encoding_json_Unmarshaler is an interface wrapper for Unmarshaler type +type _encoding_json_Unmarshaler struct { + IValue interface{} + WUnmarshalJSON func(a0 []byte) error +} + +func (W _encoding_json_Unmarshaler) UnmarshalJSON(a0 []byte) error { + return W.WUnmarshalJSON(a0) +} diff --git a/stdlib/go1_18_encoding_pem.go b/stdlib/go1_18_encoding_pem.go new file mode 100644 index 000000000..3c6723aec --- /dev/null +++ b/stdlib/go1_18_encoding_pem.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/pem" + "reflect" +) + +func init() { + Symbols["encoding/pem/pem"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(pem.Decode), + "Encode": reflect.ValueOf(pem.Encode), + "EncodeToMemory": reflect.ValueOf(pem.EncodeToMemory), + + // type definitions + "Block": reflect.ValueOf((*pem.Block)(nil)), + } +} diff --git a/stdlib/go1_18_encoding_xml.go b/stdlib/go1_18_encoding_xml.go new file mode 100644 index 000000000..00b69ac41 --- /dev/null +++ b/stdlib/go1_18_encoding_xml.go @@ -0,0 +1,116 @@ +// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "encoding/xml" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["encoding/xml/xml"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CopyToken": reflect.ValueOf(xml.CopyToken), + "Escape": reflect.ValueOf(xml.Escape), + "EscapeText": reflect.ValueOf(xml.EscapeText), + "HTMLAutoClose": reflect.ValueOf(&xml.HTMLAutoClose).Elem(), + "HTMLEntity": reflect.ValueOf(&xml.HTMLEntity).Elem(), + "Header": reflect.ValueOf(constant.MakeFromLiteral("\"\\n\"", token.STRING, 0)), + "Marshal": reflect.ValueOf(xml.Marshal), + "MarshalIndent": reflect.ValueOf(xml.MarshalIndent), + "NewDecoder": reflect.ValueOf(xml.NewDecoder), + "NewEncoder": reflect.ValueOf(xml.NewEncoder), + "NewTokenDecoder": reflect.ValueOf(xml.NewTokenDecoder), + "Unmarshal": reflect.ValueOf(xml.Unmarshal), + + // type definitions + "Attr": reflect.ValueOf((*xml.Attr)(nil)), + "CharData": reflect.ValueOf((*xml.CharData)(nil)), + "Comment": reflect.ValueOf((*xml.Comment)(nil)), + "Decoder": reflect.ValueOf((*xml.Decoder)(nil)), + "Directive": reflect.ValueOf((*xml.Directive)(nil)), + "Encoder": reflect.ValueOf((*xml.Encoder)(nil)), + "EndElement": reflect.ValueOf((*xml.EndElement)(nil)), + "Marshaler": reflect.ValueOf((*xml.Marshaler)(nil)), + "MarshalerAttr": reflect.ValueOf((*xml.MarshalerAttr)(nil)), + "Name": reflect.ValueOf((*xml.Name)(nil)), + "ProcInst": reflect.ValueOf((*xml.ProcInst)(nil)), + "StartElement": reflect.ValueOf((*xml.StartElement)(nil)), + "SyntaxError": reflect.ValueOf((*xml.SyntaxError)(nil)), + "TagPathError": reflect.ValueOf((*xml.TagPathError)(nil)), + "Token": reflect.ValueOf((*xml.Token)(nil)), + "TokenReader": reflect.ValueOf((*xml.TokenReader)(nil)), + "UnmarshalError": reflect.ValueOf((*xml.UnmarshalError)(nil)), + "Unmarshaler": reflect.ValueOf((*xml.Unmarshaler)(nil)), + "UnmarshalerAttr": reflect.ValueOf((*xml.UnmarshalerAttr)(nil)), + "UnsupportedTypeError": reflect.ValueOf((*xml.UnsupportedTypeError)(nil)), + + // interface wrapper definitions + "_Marshaler": reflect.ValueOf((*_encoding_xml_Marshaler)(nil)), + "_MarshalerAttr": reflect.ValueOf((*_encoding_xml_MarshalerAttr)(nil)), + "_Token": reflect.ValueOf((*_encoding_xml_Token)(nil)), + "_TokenReader": reflect.ValueOf((*_encoding_xml_TokenReader)(nil)), + "_Unmarshaler": reflect.ValueOf((*_encoding_xml_Unmarshaler)(nil)), + "_UnmarshalerAttr": reflect.ValueOf((*_encoding_xml_UnmarshalerAttr)(nil)), + } +} + +// _encoding_xml_Marshaler is an interface wrapper for Marshaler type +type _encoding_xml_Marshaler struct { + IValue interface{} + WMarshalXML func(e *xml.Encoder, start xml.StartElement) error +} + +func (W _encoding_xml_Marshaler) MarshalXML(e *xml.Encoder, start xml.StartElement) error { + return W.WMarshalXML(e, start) +} + +// _encoding_xml_MarshalerAttr is an interface wrapper for MarshalerAttr type +type _encoding_xml_MarshalerAttr struct { + IValue interface{} + WMarshalXMLAttr func(name xml.Name) (xml.Attr, error) +} + +func (W _encoding_xml_MarshalerAttr) MarshalXMLAttr(name xml.Name) (xml.Attr, error) { + return W.WMarshalXMLAttr(name) +} + +// _encoding_xml_Token is an interface wrapper for Token type +type _encoding_xml_Token struct { + IValue interface{} +} + +// _encoding_xml_TokenReader is an interface wrapper for TokenReader type +type _encoding_xml_TokenReader struct { + IValue interface{} + WToken func() (xml.Token, error) +} + +func (W _encoding_xml_TokenReader) Token() (xml.Token, error) { + return W.WToken() +} + +// _encoding_xml_Unmarshaler is an interface wrapper for Unmarshaler type +type _encoding_xml_Unmarshaler struct { + IValue interface{} + WUnmarshalXML func(d *xml.Decoder, start xml.StartElement) error +} + +func (W _encoding_xml_Unmarshaler) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { + return W.WUnmarshalXML(d, start) +} + +// _encoding_xml_UnmarshalerAttr is an interface wrapper for UnmarshalerAttr type +type _encoding_xml_UnmarshalerAttr struct { + IValue interface{} + WUnmarshalXMLAttr func(attr xml.Attr) error +} + +func (W _encoding_xml_UnmarshalerAttr) UnmarshalXMLAttr(attr xml.Attr) error { + return W.WUnmarshalXMLAttr(attr) +} diff --git a/stdlib/go1_18_errors.go b/stdlib/go1_18_errors.go new file mode 100644 index 000000000..475855f75 --- /dev/null +++ b/stdlib/go1_18_errors.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract errors'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "errors" + "reflect" +) + +func init() { + Symbols["errors/errors"] = map[string]reflect.Value{ + // function, constant and variable definitions + "As": reflect.ValueOf(errors.As), + "Is": reflect.ValueOf(errors.Is), + "New": reflect.ValueOf(errors.New), + "Unwrap": reflect.ValueOf(errors.Unwrap), + } +} diff --git a/stdlib/go1_18_expvar.go b/stdlib/go1_18_expvar.go new file mode 100644 index 000000000..94c1861ad --- /dev/null +++ b/stdlib/go1_18_expvar.go @@ -0,0 +1,50 @@ +// Code generated by 'yaegi extract expvar'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "expvar" + "reflect" +) + +func init() { + Symbols["expvar/expvar"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Do": reflect.ValueOf(expvar.Do), + "Get": reflect.ValueOf(expvar.Get), + "Handler": reflect.ValueOf(expvar.Handler), + "NewFloat": reflect.ValueOf(expvar.NewFloat), + "NewInt": reflect.ValueOf(expvar.NewInt), + "NewMap": reflect.ValueOf(expvar.NewMap), + "NewString": reflect.ValueOf(expvar.NewString), + "Publish": reflect.ValueOf(expvar.Publish), + + // type definitions + "Float": reflect.ValueOf((*expvar.Float)(nil)), + "Func": reflect.ValueOf((*expvar.Func)(nil)), + "Int": reflect.ValueOf((*expvar.Int)(nil)), + "KeyValue": reflect.ValueOf((*expvar.KeyValue)(nil)), + "Map": reflect.ValueOf((*expvar.Map)(nil)), + "String": reflect.ValueOf((*expvar.String)(nil)), + "Var": reflect.ValueOf((*expvar.Var)(nil)), + + // interface wrapper definitions + "_Var": reflect.ValueOf((*_expvar_Var)(nil)), + } +} + +// _expvar_Var is an interface wrapper for Var type +type _expvar_Var struct { + IValue interface{} + WString func() string +} + +func (W _expvar_Var) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_flag.go b/stdlib/go1_18_flag.go new file mode 100644 index 000000000..39e012b6f --- /dev/null +++ b/stdlib/go1_18_flag.go @@ -0,0 +1,103 @@ +// Code generated by 'yaegi extract flag'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "flag" + "reflect" +) + +func init() { + Symbols["flag/flag"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Arg": reflect.ValueOf(flag.Arg), + "Args": reflect.ValueOf(flag.Args), + "Bool": reflect.ValueOf(flag.Bool), + "BoolVar": reflect.ValueOf(flag.BoolVar), + "CommandLine": reflect.ValueOf(&flag.CommandLine).Elem(), + "ContinueOnError": reflect.ValueOf(flag.ContinueOnError), + "Duration": reflect.ValueOf(flag.Duration), + "DurationVar": reflect.ValueOf(flag.DurationVar), + "ErrHelp": reflect.ValueOf(&flag.ErrHelp).Elem(), + "ExitOnError": reflect.ValueOf(flag.ExitOnError), + "Float64": reflect.ValueOf(flag.Float64), + "Float64Var": reflect.ValueOf(flag.Float64Var), + "Func": reflect.ValueOf(flag.Func), + "Int": reflect.ValueOf(flag.Int), + "Int64": reflect.ValueOf(flag.Int64), + "Int64Var": reflect.ValueOf(flag.Int64Var), + "IntVar": reflect.ValueOf(flag.IntVar), + "Lookup": reflect.ValueOf(flag.Lookup), + "NArg": reflect.ValueOf(flag.NArg), + "NFlag": reflect.ValueOf(flag.NFlag), + "NewFlagSet": reflect.ValueOf(flag.NewFlagSet), + "PanicOnError": reflect.ValueOf(flag.PanicOnError), + "Parse": reflect.ValueOf(flag.Parse), + "Parsed": reflect.ValueOf(flag.Parsed), + "PrintDefaults": reflect.ValueOf(flag.PrintDefaults), + "Set": reflect.ValueOf(flag.Set), + "String": reflect.ValueOf(flag.String), + "StringVar": reflect.ValueOf(flag.StringVar), + "Uint": reflect.ValueOf(flag.Uint), + "Uint64": reflect.ValueOf(flag.Uint64), + "Uint64Var": reflect.ValueOf(flag.Uint64Var), + "UintVar": reflect.ValueOf(flag.UintVar), + "UnquoteUsage": reflect.ValueOf(flag.UnquoteUsage), + "Usage": reflect.ValueOf(&flag.Usage).Elem(), + "Var": reflect.ValueOf(flag.Var), + "Visit": reflect.ValueOf(flag.Visit), + "VisitAll": reflect.ValueOf(flag.VisitAll), + + // type definitions + "ErrorHandling": reflect.ValueOf((*flag.ErrorHandling)(nil)), + "Flag": reflect.ValueOf((*flag.Flag)(nil)), + "FlagSet": reflect.ValueOf((*flag.FlagSet)(nil)), + "Getter": reflect.ValueOf((*flag.Getter)(nil)), + "Value": reflect.ValueOf((*flag.Value)(nil)), + + // interface wrapper definitions + "_Getter": reflect.ValueOf((*_flag_Getter)(nil)), + "_Value": reflect.ValueOf((*_flag_Value)(nil)), + } +} + +// _flag_Getter is an interface wrapper for Getter type +type _flag_Getter struct { + IValue interface{} + WGet func() any + WSet func(a0 string) error + WString func() string +} + +func (W _flag_Getter) Get() any { + return W.WGet() +} +func (W _flag_Getter) Set(a0 string) error { + return W.WSet(a0) +} +func (W _flag_Getter) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} + +// _flag_Value is an interface wrapper for Value type +type _flag_Value struct { + IValue interface{} + WSet func(a0 string) error + WString func() string +} + +func (W _flag_Value) Set(a0 string) error { + return W.WSet(a0) +} +func (W _flag_Value) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_fmt.go b/stdlib/go1_18_fmt.go new file mode 100644 index 000000000..45843ccbe --- /dev/null +++ b/stdlib/go1_18_fmt.go @@ -0,0 +1,147 @@ +// Code generated by 'yaegi extract fmt'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "fmt" + "reflect" +) + +func init() { + Symbols["fmt/fmt"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Errorf": reflect.ValueOf(fmt.Errorf), + "Fprint": reflect.ValueOf(fmt.Fprint), + "Fprintf": reflect.ValueOf(fmt.Fprintf), + "Fprintln": reflect.ValueOf(fmt.Fprintln), + "Fscan": reflect.ValueOf(fmt.Fscan), + "Fscanf": reflect.ValueOf(fmt.Fscanf), + "Fscanln": reflect.ValueOf(fmt.Fscanln), + "Print": reflect.ValueOf(fmt.Print), + "Printf": reflect.ValueOf(fmt.Printf), + "Println": reflect.ValueOf(fmt.Println), + "Scan": reflect.ValueOf(fmt.Scan), + "Scanf": reflect.ValueOf(fmt.Scanf), + "Scanln": reflect.ValueOf(fmt.Scanln), + "Sprint": reflect.ValueOf(fmt.Sprint), + "Sprintf": reflect.ValueOf(fmt.Sprintf), + "Sprintln": reflect.ValueOf(fmt.Sprintln), + "Sscan": reflect.ValueOf(fmt.Sscan), + "Sscanf": reflect.ValueOf(fmt.Sscanf), + "Sscanln": reflect.ValueOf(fmt.Sscanln), + + // type definitions + "Formatter": reflect.ValueOf((*fmt.Formatter)(nil)), + "GoStringer": reflect.ValueOf((*fmt.GoStringer)(nil)), + "ScanState": reflect.ValueOf((*fmt.ScanState)(nil)), + "Scanner": reflect.ValueOf((*fmt.Scanner)(nil)), + "State": reflect.ValueOf((*fmt.State)(nil)), + "Stringer": reflect.ValueOf((*fmt.Stringer)(nil)), + + // interface wrapper definitions + "_Formatter": reflect.ValueOf((*_fmt_Formatter)(nil)), + "_GoStringer": reflect.ValueOf((*_fmt_GoStringer)(nil)), + "_ScanState": reflect.ValueOf((*_fmt_ScanState)(nil)), + "_Scanner": reflect.ValueOf((*_fmt_Scanner)(nil)), + "_State": reflect.ValueOf((*_fmt_State)(nil)), + "_Stringer": reflect.ValueOf((*_fmt_Stringer)(nil)), + } +} + +// _fmt_Formatter is an interface wrapper for Formatter type +type _fmt_Formatter struct { + IValue interface{} + WFormat func(f fmt.State, verb rune) +} + +func (W _fmt_Formatter) Format(f fmt.State, verb rune) { + W.WFormat(f, verb) +} + +// _fmt_GoStringer is an interface wrapper for GoStringer type +type _fmt_GoStringer struct { + IValue interface{} + WGoString func() string +} + +func (W _fmt_GoStringer) GoString() string { + return W.WGoString() +} + +// _fmt_ScanState is an interface wrapper for ScanState type +type _fmt_ScanState struct { + IValue interface{} + WRead func(buf []byte) (n int, err error) + WReadRune func() (r rune, size int, err error) + WSkipSpace func() + WToken func(skipSpace bool, f func(rune) bool) (token []byte, err error) + WUnreadRune func() error + WWidth func() (wid int, ok bool) +} + +func (W _fmt_ScanState) Read(buf []byte) (n int, err error) { + return W.WRead(buf) +} +func (W _fmt_ScanState) ReadRune() (r rune, size int, err error) { + return W.WReadRune() +} +func (W _fmt_ScanState) SkipSpace() { + W.WSkipSpace() +} +func (W _fmt_ScanState) Token(skipSpace bool, f func(rune) bool) (token []byte, err error) { + return W.WToken(skipSpace, f) +} +func (W _fmt_ScanState) UnreadRune() error { + return W.WUnreadRune() +} +func (W _fmt_ScanState) Width() (wid int, ok bool) { + return W.WWidth() +} + +// _fmt_Scanner is an interface wrapper for Scanner type +type _fmt_Scanner struct { + IValue interface{} + WScan func(state fmt.ScanState, verb rune) error +} + +func (W _fmt_Scanner) Scan(state fmt.ScanState, verb rune) error { + return W.WScan(state, verb) +} + +// _fmt_State is an interface wrapper for State type +type _fmt_State struct { + IValue interface{} + WFlag func(c int) bool + WPrecision func() (prec int, ok bool) + WWidth func() (wid int, ok bool) + WWrite func(b []byte) (n int, err error) +} + +func (W _fmt_State) Flag(c int) bool { + return W.WFlag(c) +} +func (W _fmt_State) Precision() (prec int, ok bool) { + return W.WPrecision() +} +func (W _fmt_State) Width() (wid int, ok bool) { + return W.WWidth() +} +func (W _fmt_State) Write(b []byte) (n int, err error) { + return W.WWrite(b) +} + +// _fmt_Stringer is an interface wrapper for Stringer type +type _fmt_Stringer struct { + IValue interface{} + WString func() string +} + +func (W _fmt_Stringer) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_go_ast.go b/stdlib/go1_18_go_ast.go new file mode 100644 index 000000000..d66bd85b2 --- /dev/null +++ b/stdlib/go1_18_go_ast.go @@ -0,0 +1,209 @@ +// Code generated by 'yaegi extract go/ast'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/ast" + "go/token" + "reflect" +) + +func init() { + Symbols["go/ast/ast"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Bad": reflect.ValueOf(ast.Bad), + "Con": reflect.ValueOf(ast.Con), + "FileExports": reflect.ValueOf(ast.FileExports), + "FilterDecl": reflect.ValueOf(ast.FilterDecl), + "FilterFile": reflect.ValueOf(ast.FilterFile), + "FilterFuncDuplicates": reflect.ValueOf(ast.FilterFuncDuplicates), + "FilterImportDuplicates": reflect.ValueOf(ast.FilterImportDuplicates), + "FilterPackage": reflect.ValueOf(ast.FilterPackage), + "FilterUnassociatedComments": reflect.ValueOf(ast.FilterUnassociatedComments), + "Fprint": reflect.ValueOf(ast.Fprint), + "Fun": reflect.ValueOf(ast.Fun), + "Inspect": reflect.ValueOf(ast.Inspect), + "IsExported": reflect.ValueOf(ast.IsExported), + "Lbl": reflect.ValueOf(ast.Lbl), + "MergePackageFiles": reflect.ValueOf(ast.MergePackageFiles), + "NewCommentMap": reflect.ValueOf(ast.NewCommentMap), + "NewIdent": reflect.ValueOf(ast.NewIdent), + "NewObj": reflect.ValueOf(ast.NewObj), + "NewPackage": reflect.ValueOf(ast.NewPackage), + "NewScope": reflect.ValueOf(ast.NewScope), + "NotNilFilter": reflect.ValueOf(ast.NotNilFilter), + "PackageExports": reflect.ValueOf(ast.PackageExports), + "Pkg": reflect.ValueOf(ast.Pkg), + "Print": reflect.ValueOf(ast.Print), + "RECV": reflect.ValueOf(ast.RECV), + "SEND": reflect.ValueOf(ast.SEND), + "SortImports": reflect.ValueOf(ast.SortImports), + "Typ": reflect.ValueOf(ast.Typ), + "Var": reflect.ValueOf(ast.Var), + "Walk": reflect.ValueOf(ast.Walk), + + // type definitions + "ArrayType": reflect.ValueOf((*ast.ArrayType)(nil)), + "AssignStmt": reflect.ValueOf((*ast.AssignStmt)(nil)), + "BadDecl": reflect.ValueOf((*ast.BadDecl)(nil)), + "BadExpr": reflect.ValueOf((*ast.BadExpr)(nil)), + "BadStmt": reflect.ValueOf((*ast.BadStmt)(nil)), + "BasicLit": reflect.ValueOf((*ast.BasicLit)(nil)), + "BinaryExpr": reflect.ValueOf((*ast.BinaryExpr)(nil)), + "BlockStmt": reflect.ValueOf((*ast.BlockStmt)(nil)), + "BranchStmt": reflect.ValueOf((*ast.BranchStmt)(nil)), + "CallExpr": reflect.ValueOf((*ast.CallExpr)(nil)), + "CaseClause": reflect.ValueOf((*ast.CaseClause)(nil)), + "ChanDir": reflect.ValueOf((*ast.ChanDir)(nil)), + "ChanType": reflect.ValueOf((*ast.ChanType)(nil)), + "CommClause": reflect.ValueOf((*ast.CommClause)(nil)), + "Comment": reflect.ValueOf((*ast.Comment)(nil)), + "CommentGroup": reflect.ValueOf((*ast.CommentGroup)(nil)), + "CommentMap": reflect.ValueOf((*ast.CommentMap)(nil)), + "CompositeLit": reflect.ValueOf((*ast.CompositeLit)(nil)), + "Decl": reflect.ValueOf((*ast.Decl)(nil)), + "DeclStmt": reflect.ValueOf((*ast.DeclStmt)(nil)), + "DeferStmt": reflect.ValueOf((*ast.DeferStmt)(nil)), + "Ellipsis": reflect.ValueOf((*ast.Ellipsis)(nil)), + "EmptyStmt": reflect.ValueOf((*ast.EmptyStmt)(nil)), + "Expr": reflect.ValueOf((*ast.Expr)(nil)), + "ExprStmt": reflect.ValueOf((*ast.ExprStmt)(nil)), + "Field": reflect.ValueOf((*ast.Field)(nil)), + "FieldFilter": reflect.ValueOf((*ast.FieldFilter)(nil)), + "FieldList": reflect.ValueOf((*ast.FieldList)(nil)), + "File": reflect.ValueOf((*ast.File)(nil)), + "Filter": reflect.ValueOf((*ast.Filter)(nil)), + "ForStmt": reflect.ValueOf((*ast.ForStmt)(nil)), + "FuncDecl": reflect.ValueOf((*ast.FuncDecl)(nil)), + "FuncLit": reflect.ValueOf((*ast.FuncLit)(nil)), + "FuncType": reflect.ValueOf((*ast.FuncType)(nil)), + "GenDecl": reflect.ValueOf((*ast.GenDecl)(nil)), + "GoStmt": reflect.ValueOf((*ast.GoStmt)(nil)), + "Ident": reflect.ValueOf((*ast.Ident)(nil)), + "IfStmt": reflect.ValueOf((*ast.IfStmt)(nil)), + "ImportSpec": reflect.ValueOf((*ast.ImportSpec)(nil)), + "Importer": reflect.ValueOf((*ast.Importer)(nil)), + "IncDecStmt": reflect.ValueOf((*ast.IncDecStmt)(nil)), + "IndexExpr": reflect.ValueOf((*ast.IndexExpr)(nil)), + "IndexListExpr": reflect.ValueOf((*ast.IndexListExpr)(nil)), + "InterfaceType": reflect.ValueOf((*ast.InterfaceType)(nil)), + "KeyValueExpr": reflect.ValueOf((*ast.KeyValueExpr)(nil)), + "LabeledStmt": reflect.ValueOf((*ast.LabeledStmt)(nil)), + "MapType": reflect.ValueOf((*ast.MapType)(nil)), + "MergeMode": reflect.ValueOf((*ast.MergeMode)(nil)), + "Node": reflect.ValueOf((*ast.Node)(nil)), + "ObjKind": reflect.ValueOf((*ast.ObjKind)(nil)), + "Object": reflect.ValueOf((*ast.Object)(nil)), + "Package": reflect.ValueOf((*ast.Package)(nil)), + "ParenExpr": reflect.ValueOf((*ast.ParenExpr)(nil)), + "RangeStmt": reflect.ValueOf((*ast.RangeStmt)(nil)), + "ReturnStmt": reflect.ValueOf((*ast.ReturnStmt)(nil)), + "Scope": reflect.ValueOf((*ast.Scope)(nil)), + "SelectStmt": reflect.ValueOf((*ast.SelectStmt)(nil)), + "SelectorExpr": reflect.ValueOf((*ast.SelectorExpr)(nil)), + "SendStmt": reflect.ValueOf((*ast.SendStmt)(nil)), + "SliceExpr": reflect.ValueOf((*ast.SliceExpr)(nil)), + "Spec": reflect.ValueOf((*ast.Spec)(nil)), + "StarExpr": reflect.ValueOf((*ast.StarExpr)(nil)), + "Stmt": reflect.ValueOf((*ast.Stmt)(nil)), + "StructType": reflect.ValueOf((*ast.StructType)(nil)), + "SwitchStmt": reflect.ValueOf((*ast.SwitchStmt)(nil)), + "TypeAssertExpr": reflect.ValueOf((*ast.TypeAssertExpr)(nil)), + "TypeSpec": reflect.ValueOf((*ast.TypeSpec)(nil)), + "TypeSwitchStmt": reflect.ValueOf((*ast.TypeSwitchStmt)(nil)), + "UnaryExpr": reflect.ValueOf((*ast.UnaryExpr)(nil)), + "ValueSpec": reflect.ValueOf((*ast.ValueSpec)(nil)), + "Visitor": reflect.ValueOf((*ast.Visitor)(nil)), + + // interface wrapper definitions + "_Decl": reflect.ValueOf((*_go_ast_Decl)(nil)), + "_Expr": reflect.ValueOf((*_go_ast_Expr)(nil)), + "_Node": reflect.ValueOf((*_go_ast_Node)(nil)), + "_Spec": reflect.ValueOf((*_go_ast_Spec)(nil)), + "_Stmt": reflect.ValueOf((*_go_ast_Stmt)(nil)), + "_Visitor": reflect.ValueOf((*_go_ast_Visitor)(nil)), + } +} + +// _go_ast_Decl is an interface wrapper for Decl type +type _go_ast_Decl struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Decl) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Decl) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Expr is an interface wrapper for Expr type +type _go_ast_Expr struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Expr) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Expr) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Node is an interface wrapper for Node type +type _go_ast_Node struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Node) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Node) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Spec is an interface wrapper for Spec type +type _go_ast_Spec struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Spec) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Spec) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Stmt is an interface wrapper for Stmt type +type _go_ast_Stmt struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Stmt) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Stmt) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Visitor is an interface wrapper for Visitor type +type _go_ast_Visitor struct { + IValue interface{} + WVisit func(node ast.Node) (w ast.Visitor) +} + +func (W _go_ast_Visitor) Visit(node ast.Node) (w ast.Visitor) { + return W.WVisit(node) +} diff --git a/stdlib/go1_18_go_build.go b/stdlib/go1_18_go_build.go new file mode 100644 index 000000000..b5d4d075f --- /dev/null +++ b/stdlib/go1_18_go_build.go @@ -0,0 +1,34 @@ +// Code generated by 'yaegi extract go/build'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/build" + "reflect" +) + +func init() { + Symbols["go/build/build"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllowBinary": reflect.ValueOf(build.AllowBinary), + "ArchChar": reflect.ValueOf(build.ArchChar), + "Default": reflect.ValueOf(&build.Default).Elem(), + "FindOnly": reflect.ValueOf(build.FindOnly), + "IgnoreVendor": reflect.ValueOf(build.IgnoreVendor), + "Import": reflect.ValueOf(build.Import), + "ImportComment": reflect.ValueOf(build.ImportComment), + "ImportDir": reflect.ValueOf(build.ImportDir), + "IsLocalImport": reflect.ValueOf(build.IsLocalImport), + "ToolDir": reflect.ValueOf(&build.ToolDir).Elem(), + + // type definitions + "Context": reflect.ValueOf((*build.Context)(nil)), + "ImportMode": reflect.ValueOf((*build.ImportMode)(nil)), + "MultiplePackageError": reflect.ValueOf((*build.MultiplePackageError)(nil)), + "NoGoError": reflect.ValueOf((*build.NoGoError)(nil)), + "Package": reflect.ValueOf((*build.Package)(nil)), + } +} diff --git a/stdlib/go1_18_go_build_constraint.go b/stdlib/go1_18_go_build_constraint.go new file mode 100644 index 000000000..7bd563fe6 --- /dev/null +++ b/stdlib/go1_18_go_build_constraint.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/build/constraint" + "reflect" +) + +func init() { + Symbols["go/build/constraint/constraint"] = map[string]reflect.Value{ + // function, constant and variable definitions + "IsGoBuild": reflect.ValueOf(constraint.IsGoBuild), + "IsPlusBuild": reflect.ValueOf(constraint.IsPlusBuild), + "Parse": reflect.ValueOf(constraint.Parse), + "PlusBuildLines": reflect.ValueOf(constraint.PlusBuildLines), + + // type definitions + "AndExpr": reflect.ValueOf((*constraint.AndExpr)(nil)), + "Expr": reflect.ValueOf((*constraint.Expr)(nil)), + "NotExpr": reflect.ValueOf((*constraint.NotExpr)(nil)), + "OrExpr": reflect.ValueOf((*constraint.OrExpr)(nil)), + "SyntaxError": reflect.ValueOf((*constraint.SyntaxError)(nil)), + "TagExpr": reflect.ValueOf((*constraint.TagExpr)(nil)), + + // interface wrapper definitions + "_Expr": reflect.ValueOf((*_go_build_constraint_Expr)(nil)), + } +} + +// _go_build_constraint_Expr is an interface wrapper for Expr type +type _go_build_constraint_Expr struct { + IValue interface{} + WEval func(ok func(tag string) bool) bool + WString func() string +} + +func (W _go_build_constraint_Expr) Eval(ok func(tag string) bool) bool { + return W.WEval(ok) +} +func (W _go_build_constraint_Expr) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_go_constant.go b/stdlib/go1_18_go_constant.go new file mode 100644 index 000000000..0f3118a06 --- /dev/null +++ b/stdlib/go1_18_go_constant.go @@ -0,0 +1,82 @@ +// Code generated by 'yaegi extract go/constant'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "reflect" +) + +func init() { + Symbols["go/constant/constant"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BinaryOp": reflect.ValueOf(constant.BinaryOp), + "BitLen": reflect.ValueOf(constant.BitLen), + "Bool": reflect.ValueOf(constant.Bool), + "BoolVal": reflect.ValueOf(constant.BoolVal), + "Bytes": reflect.ValueOf(constant.Bytes), + "Compare": reflect.ValueOf(constant.Compare), + "Complex": reflect.ValueOf(constant.Complex), + "Denom": reflect.ValueOf(constant.Denom), + "Float": reflect.ValueOf(constant.Float), + "Float32Val": reflect.ValueOf(constant.Float32Val), + "Float64Val": reflect.ValueOf(constant.Float64Val), + "Imag": reflect.ValueOf(constant.Imag), + "Int": reflect.ValueOf(constant.Int), + "Int64Val": reflect.ValueOf(constant.Int64Val), + "Make": reflect.ValueOf(constant.Make), + "MakeBool": reflect.ValueOf(constant.MakeBool), + "MakeFloat64": reflect.ValueOf(constant.MakeFloat64), + "MakeFromBytes": reflect.ValueOf(constant.MakeFromBytes), + "MakeFromLiteral": reflect.ValueOf(constant.MakeFromLiteral), + "MakeImag": reflect.ValueOf(constant.MakeImag), + "MakeInt64": reflect.ValueOf(constant.MakeInt64), + "MakeString": reflect.ValueOf(constant.MakeString), + "MakeUint64": reflect.ValueOf(constant.MakeUint64), + "MakeUnknown": reflect.ValueOf(constant.MakeUnknown), + "Num": reflect.ValueOf(constant.Num), + "Real": reflect.ValueOf(constant.Real), + "Shift": reflect.ValueOf(constant.Shift), + "Sign": reflect.ValueOf(constant.Sign), + "String": reflect.ValueOf(constant.String), + "StringVal": reflect.ValueOf(constant.StringVal), + "ToComplex": reflect.ValueOf(constant.ToComplex), + "ToFloat": reflect.ValueOf(constant.ToFloat), + "ToInt": reflect.ValueOf(constant.ToInt), + "Uint64Val": reflect.ValueOf(constant.Uint64Val), + "UnaryOp": reflect.ValueOf(constant.UnaryOp), + "Unknown": reflect.ValueOf(constant.Unknown), + "Val": reflect.ValueOf(constant.Val), + + // type definitions + "Kind": reflect.ValueOf((*constant.Kind)(nil)), + "Value": reflect.ValueOf((*constant.Value)(nil)), + + // interface wrapper definitions + "_Value": reflect.ValueOf((*_go_constant_Value)(nil)), + } +} + +// _go_constant_Value is an interface wrapper for Value type +type _go_constant_Value struct { + IValue interface{} + WExactString func() string + WKind func() constant.Kind + WString func() string +} + +func (W _go_constant_Value) ExactString() string { + return W.WExactString() +} +func (W _go_constant_Value) Kind() constant.Kind { + return W.WKind() +} +func (W _go_constant_Value) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_go_doc.go b/stdlib/go1_18_go_doc.go new file mode 100644 index 000000000..6943e85c3 --- /dev/null +++ b/stdlib/go1_18_go_doc.go @@ -0,0 +1,38 @@ +// Code generated by 'yaegi extract go/doc'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/doc" + "reflect" +) + +func init() { + Symbols["go/doc/doc"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllDecls": reflect.ValueOf(doc.AllDecls), + "AllMethods": reflect.ValueOf(doc.AllMethods), + "Examples": reflect.ValueOf(doc.Examples), + "IllegalPrefixes": reflect.ValueOf(&doc.IllegalPrefixes).Elem(), + "IsPredeclared": reflect.ValueOf(doc.IsPredeclared), + "New": reflect.ValueOf(doc.New), + "NewFromFiles": reflect.ValueOf(doc.NewFromFiles), + "PreserveAST": reflect.ValueOf(doc.PreserveAST), + "Synopsis": reflect.ValueOf(doc.Synopsis), + "ToHTML": reflect.ValueOf(doc.ToHTML), + "ToText": reflect.ValueOf(doc.ToText), + + // type definitions + "Example": reflect.ValueOf((*doc.Example)(nil)), + "Filter": reflect.ValueOf((*doc.Filter)(nil)), + "Func": reflect.ValueOf((*doc.Func)(nil)), + "Mode": reflect.ValueOf((*doc.Mode)(nil)), + "Note": reflect.ValueOf((*doc.Note)(nil)), + "Package": reflect.ValueOf((*doc.Package)(nil)), + "Type": reflect.ValueOf((*doc.Type)(nil)), + "Value": reflect.ValueOf((*doc.Value)(nil)), + } +} diff --git a/stdlib/go1_18_go_format.go b/stdlib/go1_18_go_format.go new file mode 100644 index 000000000..99af0d936 --- /dev/null +++ b/stdlib/go1_18_go_format.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract go/format'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/format" + "reflect" +) + +func init() { + Symbols["go/format/format"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Node": reflect.ValueOf(format.Node), + "Source": reflect.ValueOf(format.Source), + } +} diff --git a/stdlib/go1_18_go_importer.go b/stdlib/go1_18_go_importer.go new file mode 100644 index 000000000..2a6f242a3 --- /dev/null +++ b/stdlib/go1_18_go_importer.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract go/importer'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/importer" + "reflect" +) + +func init() { + Symbols["go/importer/importer"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Default": reflect.ValueOf(importer.Default), + "For": reflect.ValueOf(importer.For), + "ForCompiler": reflect.ValueOf(importer.ForCompiler), + + // type definitions + "Lookup": reflect.ValueOf((*importer.Lookup)(nil)), + } +} diff --git a/stdlib/go1_18_go_parser.go b/stdlib/go1_18_go_parser.go new file mode 100644 index 000000000..c017dbcc5 --- /dev/null +++ b/stdlib/go1_18_go_parser.go @@ -0,0 +1,32 @@ +// Code generated by 'yaegi extract go/parser'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/parser" + "reflect" +) + +func init() { + Symbols["go/parser/parser"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllErrors": reflect.ValueOf(parser.AllErrors), + "DeclarationErrors": reflect.ValueOf(parser.DeclarationErrors), + "ImportsOnly": reflect.ValueOf(parser.ImportsOnly), + "PackageClauseOnly": reflect.ValueOf(parser.PackageClauseOnly), + "ParseComments": reflect.ValueOf(parser.ParseComments), + "ParseDir": reflect.ValueOf(parser.ParseDir), + "ParseExpr": reflect.ValueOf(parser.ParseExpr), + "ParseExprFrom": reflect.ValueOf(parser.ParseExprFrom), + "ParseFile": reflect.ValueOf(parser.ParseFile), + "SkipObjectResolution": reflect.ValueOf(parser.SkipObjectResolution), + "SpuriousErrors": reflect.ValueOf(parser.SpuriousErrors), + "Trace": reflect.ValueOf(parser.Trace), + + // type definitions + "Mode": reflect.ValueOf((*parser.Mode)(nil)), + } +} diff --git a/stdlib/go1_18_go_printer.go b/stdlib/go1_18_go_printer.go new file mode 100644 index 000000000..aaf269b31 --- /dev/null +++ b/stdlib/go1_18_go_printer.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract go/printer'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/printer" + "reflect" +) + +func init() { + Symbols["go/printer/printer"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Fprint": reflect.ValueOf(printer.Fprint), + "RawFormat": reflect.ValueOf(printer.RawFormat), + "SourcePos": reflect.ValueOf(printer.SourcePos), + "TabIndent": reflect.ValueOf(printer.TabIndent), + "UseSpaces": reflect.ValueOf(printer.UseSpaces), + + // type definitions + "CommentedNode": reflect.ValueOf((*printer.CommentedNode)(nil)), + "Config": reflect.ValueOf((*printer.Config)(nil)), + "Mode": reflect.ValueOf((*printer.Mode)(nil)), + } +} diff --git a/stdlib/go1_18_go_scanner.go b/stdlib/go1_18_go_scanner.go new file mode 100644 index 000000000..b7a728e8a --- /dev/null +++ b/stdlib/go1_18_go_scanner.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/scanner" + "reflect" +) + +func init() { + Symbols["go/scanner/scanner"] = map[string]reflect.Value{ + // function, constant and variable definitions + "PrintError": reflect.ValueOf(scanner.PrintError), + "ScanComments": reflect.ValueOf(scanner.ScanComments), + + // type definitions + "Error": reflect.ValueOf((*scanner.Error)(nil)), + "ErrorHandler": reflect.ValueOf((*scanner.ErrorHandler)(nil)), + "ErrorList": reflect.ValueOf((*scanner.ErrorList)(nil)), + "Mode": reflect.ValueOf((*scanner.Mode)(nil)), + "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), + } +} diff --git a/stdlib/go1_18_go_token.go b/stdlib/go1_18_go_token.go new file mode 100644 index 000000000..f3bcd4608 --- /dev/null +++ b/stdlib/go1_18_go_token.go @@ -0,0 +1,116 @@ +// Code generated by 'yaegi extract go/token'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["go/token/token"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ADD": reflect.ValueOf(token.ADD), + "ADD_ASSIGN": reflect.ValueOf(token.ADD_ASSIGN), + "AND": reflect.ValueOf(token.AND), + "AND_ASSIGN": reflect.ValueOf(token.AND_ASSIGN), + "AND_NOT": reflect.ValueOf(token.AND_NOT), + "AND_NOT_ASSIGN": reflect.ValueOf(token.AND_NOT_ASSIGN), + "ARROW": reflect.ValueOf(token.ARROW), + "ASSIGN": reflect.ValueOf(token.ASSIGN), + "BREAK": reflect.ValueOf(token.BREAK), + "CASE": reflect.ValueOf(token.CASE), + "CHAN": reflect.ValueOf(token.CHAN), + "CHAR": reflect.ValueOf(token.CHAR), + "COLON": reflect.ValueOf(token.COLON), + "COMMA": reflect.ValueOf(token.COMMA), + "COMMENT": reflect.ValueOf(token.COMMENT), + "CONST": reflect.ValueOf(token.CONST), + "CONTINUE": reflect.ValueOf(token.CONTINUE), + "DEC": reflect.ValueOf(token.DEC), + "DEFAULT": reflect.ValueOf(token.DEFAULT), + "DEFER": reflect.ValueOf(token.DEFER), + "DEFINE": reflect.ValueOf(token.DEFINE), + "ELLIPSIS": reflect.ValueOf(token.ELLIPSIS), + "ELSE": reflect.ValueOf(token.ELSE), + "EOF": reflect.ValueOf(token.EOF), + "EQL": reflect.ValueOf(token.EQL), + "FALLTHROUGH": reflect.ValueOf(token.FALLTHROUGH), + "FLOAT": reflect.ValueOf(token.FLOAT), + "FOR": reflect.ValueOf(token.FOR), + "FUNC": reflect.ValueOf(token.FUNC), + "GEQ": reflect.ValueOf(token.GEQ), + "GO": reflect.ValueOf(token.GO), + "GOTO": reflect.ValueOf(token.GOTO), + "GTR": reflect.ValueOf(token.GTR), + "HighestPrec": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IDENT": reflect.ValueOf(token.IDENT), + "IF": reflect.ValueOf(token.IF), + "ILLEGAL": reflect.ValueOf(token.ILLEGAL), + "IMAG": reflect.ValueOf(token.IMAG), + "IMPORT": reflect.ValueOf(token.IMPORT), + "INC": reflect.ValueOf(token.INC), + "INT": reflect.ValueOf(token.INT), + "INTERFACE": reflect.ValueOf(token.INTERFACE), + "IsExported": reflect.ValueOf(token.IsExported), + "IsIdentifier": reflect.ValueOf(token.IsIdentifier), + "IsKeyword": reflect.ValueOf(token.IsKeyword), + "LAND": reflect.ValueOf(token.LAND), + "LBRACE": reflect.ValueOf(token.LBRACE), + "LBRACK": reflect.ValueOf(token.LBRACK), + "LEQ": reflect.ValueOf(token.LEQ), + "LOR": reflect.ValueOf(token.LOR), + "LPAREN": reflect.ValueOf(token.LPAREN), + "LSS": reflect.ValueOf(token.LSS), + "Lookup": reflect.ValueOf(token.Lookup), + "LowestPrec": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP": reflect.ValueOf(token.MAP), + "MUL": reflect.ValueOf(token.MUL), + "MUL_ASSIGN": reflect.ValueOf(token.MUL_ASSIGN), + "NEQ": reflect.ValueOf(token.NEQ), + "NOT": reflect.ValueOf(token.NOT), + "NewFileSet": reflect.ValueOf(token.NewFileSet), + "NoPos": reflect.ValueOf(token.NoPos), + "OR": reflect.ValueOf(token.OR), + "OR_ASSIGN": reflect.ValueOf(token.OR_ASSIGN), + "PACKAGE": reflect.ValueOf(token.PACKAGE), + "PERIOD": reflect.ValueOf(token.PERIOD), + "QUO": reflect.ValueOf(token.QUO), + "QUO_ASSIGN": reflect.ValueOf(token.QUO_ASSIGN), + "RANGE": reflect.ValueOf(token.RANGE), + "RBRACE": reflect.ValueOf(token.RBRACE), + "RBRACK": reflect.ValueOf(token.RBRACK), + "REM": reflect.ValueOf(token.REM), + "REM_ASSIGN": reflect.ValueOf(token.REM_ASSIGN), + "RETURN": reflect.ValueOf(token.RETURN), + "RPAREN": reflect.ValueOf(token.RPAREN), + "SELECT": reflect.ValueOf(token.SELECT), + "SEMICOLON": reflect.ValueOf(token.SEMICOLON), + "SHL": reflect.ValueOf(token.SHL), + "SHL_ASSIGN": reflect.ValueOf(token.SHL_ASSIGN), + "SHR": reflect.ValueOf(token.SHR), + "SHR_ASSIGN": reflect.ValueOf(token.SHR_ASSIGN), + "STRING": reflect.ValueOf(token.STRING), + "STRUCT": reflect.ValueOf(token.STRUCT), + "SUB": reflect.ValueOf(token.SUB), + "SUB_ASSIGN": reflect.ValueOf(token.SUB_ASSIGN), + "SWITCH": reflect.ValueOf(token.SWITCH), + "TILDE": reflect.ValueOf(token.TILDE), + "TYPE": reflect.ValueOf(token.TYPE), + "UnaryPrec": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VAR": reflect.ValueOf(token.VAR), + "XOR": reflect.ValueOf(token.XOR), + "XOR_ASSIGN": reflect.ValueOf(token.XOR_ASSIGN), + + // type definitions + "File": reflect.ValueOf((*token.File)(nil)), + "FileSet": reflect.ValueOf((*token.FileSet)(nil)), + "Pos": reflect.ValueOf((*token.Pos)(nil)), + "Position": reflect.ValueOf((*token.Position)(nil)), + "Token": reflect.ValueOf((*token.Token)(nil)), + } +} diff --git a/stdlib/go1_18_go_types.go b/stdlib/go1_18_go_types.go new file mode 100644 index 000000000..cd95c5861 --- /dev/null +++ b/stdlib/go1_18_go_types.go @@ -0,0 +1,276 @@ +// Code generated by 'yaegi extract go/types'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/token" + "go/types" + "reflect" +) + +func init() { + Symbols["go/types/types"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AssertableTo": reflect.ValueOf(types.AssertableTo), + "AssignableTo": reflect.ValueOf(types.AssignableTo), + "Bool": reflect.ValueOf(types.Bool), + "Byte": reflect.ValueOf(types.Byte), + "CheckExpr": reflect.ValueOf(types.CheckExpr), + "Comparable": reflect.ValueOf(types.Comparable), + "Complex128": reflect.ValueOf(types.Complex128), + "Complex64": reflect.ValueOf(types.Complex64), + "ConvertibleTo": reflect.ValueOf(types.ConvertibleTo), + "DefPredeclaredTestFuncs": reflect.ValueOf(types.DefPredeclaredTestFuncs), + "Default": reflect.ValueOf(types.Default), + "Eval": reflect.ValueOf(types.Eval), + "ExprString": reflect.ValueOf(types.ExprString), + "FieldVal": reflect.ValueOf(types.FieldVal), + "Float32": reflect.ValueOf(types.Float32), + "Float64": reflect.ValueOf(types.Float64), + "Id": reflect.ValueOf(types.Id), + "Identical": reflect.ValueOf(types.Identical), + "IdenticalIgnoreTags": reflect.ValueOf(types.IdenticalIgnoreTags), + "Implements": reflect.ValueOf(types.Implements), + "Instantiate": reflect.ValueOf(types.Instantiate), + "Int": reflect.ValueOf(types.Int), + "Int16": reflect.ValueOf(types.Int16), + "Int32": reflect.ValueOf(types.Int32), + "Int64": reflect.ValueOf(types.Int64), + "Int8": reflect.ValueOf(types.Int8), + "Invalid": reflect.ValueOf(types.Invalid), + "IsBoolean": reflect.ValueOf(types.IsBoolean), + "IsComplex": reflect.ValueOf(types.IsComplex), + "IsConstType": reflect.ValueOf(types.IsConstType), + "IsFloat": reflect.ValueOf(types.IsFloat), + "IsInteger": reflect.ValueOf(types.IsInteger), + "IsInterface": reflect.ValueOf(types.IsInterface), + "IsNumeric": reflect.ValueOf(types.IsNumeric), + "IsOrdered": reflect.ValueOf(types.IsOrdered), + "IsString": reflect.ValueOf(types.IsString), + "IsUnsigned": reflect.ValueOf(types.IsUnsigned), + "IsUntyped": reflect.ValueOf(types.IsUntyped), + "LookupFieldOrMethod": reflect.ValueOf(types.LookupFieldOrMethod), + "MethodExpr": reflect.ValueOf(types.MethodExpr), + "MethodVal": reflect.ValueOf(types.MethodVal), + "MissingMethod": reflect.ValueOf(types.MissingMethod), + "NewArray": reflect.ValueOf(types.NewArray), + "NewChan": reflect.ValueOf(types.NewChan), + "NewChecker": reflect.ValueOf(types.NewChecker), + "NewConst": reflect.ValueOf(types.NewConst), + "NewContext": reflect.ValueOf(types.NewContext), + "NewField": reflect.ValueOf(types.NewField), + "NewFunc": reflect.ValueOf(types.NewFunc), + "NewInterface": reflect.ValueOf(types.NewInterface), + "NewInterfaceType": reflect.ValueOf(types.NewInterfaceType), + "NewLabel": reflect.ValueOf(types.NewLabel), + "NewMap": reflect.ValueOf(types.NewMap), + "NewMethodSet": reflect.ValueOf(types.NewMethodSet), + "NewNamed": reflect.ValueOf(types.NewNamed), + "NewPackage": reflect.ValueOf(types.NewPackage), + "NewParam": reflect.ValueOf(types.NewParam), + "NewPkgName": reflect.ValueOf(types.NewPkgName), + "NewPointer": reflect.ValueOf(types.NewPointer), + "NewScope": reflect.ValueOf(types.NewScope), + "NewSignature": reflect.ValueOf(types.NewSignature), + "NewSignatureType": reflect.ValueOf(types.NewSignatureType), + "NewSlice": reflect.ValueOf(types.NewSlice), + "NewStruct": reflect.ValueOf(types.NewStruct), + "NewTerm": reflect.ValueOf(types.NewTerm), + "NewTuple": reflect.ValueOf(types.NewTuple), + "NewTypeName": reflect.ValueOf(types.NewTypeName), + "NewTypeParam": reflect.ValueOf(types.NewTypeParam), + "NewUnion": reflect.ValueOf(types.NewUnion), + "NewVar": reflect.ValueOf(types.NewVar), + "ObjectString": reflect.ValueOf(types.ObjectString), + "RecvOnly": reflect.ValueOf(types.RecvOnly), + "RelativeTo": reflect.ValueOf(types.RelativeTo), + "Rune": reflect.ValueOf(types.Rune), + "SelectionString": reflect.ValueOf(types.SelectionString), + "SendOnly": reflect.ValueOf(types.SendOnly), + "SendRecv": reflect.ValueOf(types.SendRecv), + "SizesFor": reflect.ValueOf(types.SizesFor), + "String": reflect.ValueOf(types.String), + "Typ": reflect.ValueOf(&types.Typ).Elem(), + "TypeString": reflect.ValueOf(types.TypeString), + "Uint": reflect.ValueOf(types.Uint), + "Uint16": reflect.ValueOf(types.Uint16), + "Uint32": reflect.ValueOf(types.Uint32), + "Uint64": reflect.ValueOf(types.Uint64), + "Uint8": reflect.ValueOf(types.Uint8), + "Uintptr": reflect.ValueOf(types.Uintptr), + "Universe": reflect.ValueOf(&types.Universe).Elem(), + "Unsafe": reflect.ValueOf(&types.Unsafe).Elem(), + "UnsafePointer": reflect.ValueOf(types.UnsafePointer), + "UntypedBool": reflect.ValueOf(types.UntypedBool), + "UntypedComplex": reflect.ValueOf(types.UntypedComplex), + "UntypedFloat": reflect.ValueOf(types.UntypedFloat), + "UntypedInt": reflect.ValueOf(types.UntypedInt), + "UntypedNil": reflect.ValueOf(types.UntypedNil), + "UntypedRune": reflect.ValueOf(types.UntypedRune), + "UntypedString": reflect.ValueOf(types.UntypedString), + "WriteExpr": reflect.ValueOf(types.WriteExpr), + "WriteSignature": reflect.ValueOf(types.WriteSignature), + "WriteType": reflect.ValueOf(types.WriteType), + + // type definitions + "ArgumentError": reflect.ValueOf((*types.ArgumentError)(nil)), + "Array": reflect.ValueOf((*types.Array)(nil)), + "Basic": reflect.ValueOf((*types.Basic)(nil)), + "BasicInfo": reflect.ValueOf((*types.BasicInfo)(nil)), + "BasicKind": reflect.ValueOf((*types.BasicKind)(nil)), + "Builtin": reflect.ValueOf((*types.Builtin)(nil)), + "Chan": reflect.ValueOf((*types.Chan)(nil)), + "ChanDir": reflect.ValueOf((*types.ChanDir)(nil)), + "Checker": reflect.ValueOf((*types.Checker)(nil)), + "Config": reflect.ValueOf((*types.Config)(nil)), + "Const": reflect.ValueOf((*types.Const)(nil)), + "Context": reflect.ValueOf((*types.Context)(nil)), + "Error": reflect.ValueOf((*types.Error)(nil)), + "Func": reflect.ValueOf((*types.Func)(nil)), + "ImportMode": reflect.ValueOf((*types.ImportMode)(nil)), + "Importer": reflect.ValueOf((*types.Importer)(nil)), + "ImporterFrom": reflect.ValueOf((*types.ImporterFrom)(nil)), + "Info": reflect.ValueOf((*types.Info)(nil)), + "Initializer": reflect.ValueOf((*types.Initializer)(nil)), + "Instance": reflect.ValueOf((*types.Instance)(nil)), + "Interface": reflect.ValueOf((*types.Interface)(nil)), + "Label": reflect.ValueOf((*types.Label)(nil)), + "Map": reflect.ValueOf((*types.Map)(nil)), + "MethodSet": reflect.ValueOf((*types.MethodSet)(nil)), + "Named": reflect.ValueOf((*types.Named)(nil)), + "Nil": reflect.ValueOf((*types.Nil)(nil)), + "Object": reflect.ValueOf((*types.Object)(nil)), + "Package": reflect.ValueOf((*types.Package)(nil)), + "PkgName": reflect.ValueOf((*types.PkgName)(nil)), + "Pointer": reflect.ValueOf((*types.Pointer)(nil)), + "Qualifier": reflect.ValueOf((*types.Qualifier)(nil)), + "Scope": reflect.ValueOf((*types.Scope)(nil)), + "Selection": reflect.ValueOf((*types.Selection)(nil)), + "SelectionKind": reflect.ValueOf((*types.SelectionKind)(nil)), + "Signature": reflect.ValueOf((*types.Signature)(nil)), + "Sizes": reflect.ValueOf((*types.Sizes)(nil)), + "Slice": reflect.ValueOf((*types.Slice)(nil)), + "StdSizes": reflect.ValueOf((*types.StdSizes)(nil)), + "Struct": reflect.ValueOf((*types.Struct)(nil)), + "Term": reflect.ValueOf((*types.Term)(nil)), + "Tuple": reflect.ValueOf((*types.Tuple)(nil)), + "Type": reflect.ValueOf((*types.Type)(nil)), + "TypeAndValue": reflect.ValueOf((*types.TypeAndValue)(nil)), + "TypeList": reflect.ValueOf((*types.TypeList)(nil)), + "TypeName": reflect.ValueOf((*types.TypeName)(nil)), + "TypeParam": reflect.ValueOf((*types.TypeParam)(nil)), + "TypeParamList": reflect.ValueOf((*types.TypeParamList)(nil)), + "Union": reflect.ValueOf((*types.Union)(nil)), + "Var": reflect.ValueOf((*types.Var)(nil)), + + // interface wrapper definitions + "_Importer": reflect.ValueOf((*_go_types_Importer)(nil)), + "_ImporterFrom": reflect.ValueOf((*_go_types_ImporterFrom)(nil)), + "_Object": reflect.ValueOf((*_go_types_Object)(nil)), + "_Sizes": reflect.ValueOf((*_go_types_Sizes)(nil)), + "_Type": reflect.ValueOf((*_go_types_Type)(nil)), + } +} + +// _go_types_Importer is an interface wrapper for Importer type +type _go_types_Importer struct { + IValue interface{} + WImport func(path string) (*types.Package, error) +} + +func (W _go_types_Importer) Import(path string) (*types.Package, error) { + return W.WImport(path) +} + +// _go_types_ImporterFrom is an interface wrapper for ImporterFrom type +type _go_types_ImporterFrom struct { + IValue interface{} + WImport func(path string) (*types.Package, error) + WImportFrom func(path string, dir string, mode types.ImportMode) (*types.Package, error) +} + +func (W _go_types_ImporterFrom) Import(path string) (*types.Package, error) { + return W.WImport(path) +} +func (W _go_types_ImporterFrom) ImportFrom(path string, dir string, mode types.ImportMode) (*types.Package, error) { + return W.WImportFrom(path, dir, mode) +} + +// _go_types_Object is an interface wrapper for Object type +type _go_types_Object struct { + IValue interface{} + WExported func() bool + WId func() string + WName func() string + WParent func() *types.Scope + WPkg func() *types.Package + WPos func() token.Pos + WString func() string + WType func() types.Type +} + +func (W _go_types_Object) Exported() bool { + return W.WExported() +} +func (W _go_types_Object) Id() string { + return W.WId() +} +func (W _go_types_Object) Name() string { + return W.WName() +} +func (W _go_types_Object) Parent() *types.Scope { + return W.WParent() +} +func (W _go_types_Object) Pkg() *types.Package { + return W.WPkg() +} +func (W _go_types_Object) Pos() token.Pos { + return W.WPos() +} +func (W _go_types_Object) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _go_types_Object) Type() types.Type { + return W.WType() +} + +// _go_types_Sizes is an interface wrapper for Sizes type +type _go_types_Sizes struct { + IValue interface{} + WAlignof func(T types.Type) int64 + WOffsetsof func(fields []*types.Var) []int64 + WSizeof func(T types.Type) int64 +} + +func (W _go_types_Sizes) Alignof(T types.Type) int64 { + return W.WAlignof(T) +} +func (W _go_types_Sizes) Offsetsof(fields []*types.Var) []int64 { + return W.WOffsetsof(fields) +} +func (W _go_types_Sizes) Sizeof(T types.Type) int64 { + return W.WSizeof(T) +} + +// _go_types_Type is an interface wrapper for Type type +type _go_types_Type struct { + IValue interface{} + WString func() string + WUnderlying func() types.Type +} + +func (W _go_types_Type) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _go_types_Type) Underlying() types.Type { + return W.WUnderlying() +} diff --git a/stdlib/go1_18_hash.go b/stdlib/go1_18_hash.go new file mode 100644 index 000000000..278d86a99 --- /dev/null +++ b/stdlib/go1_18_hash.go @@ -0,0 +1,111 @@ +// Code generated by 'yaegi extract hash'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "hash" + "reflect" +) + +func init() { + Symbols["hash/hash"] = map[string]reflect.Value{ + // type definitions + "Hash": reflect.ValueOf((*hash.Hash)(nil)), + "Hash32": reflect.ValueOf((*hash.Hash32)(nil)), + "Hash64": reflect.ValueOf((*hash.Hash64)(nil)), + + // interface wrapper definitions + "_Hash": reflect.ValueOf((*_hash_Hash)(nil)), + "_Hash32": reflect.ValueOf((*_hash_Hash32)(nil)), + "_Hash64": reflect.ValueOf((*_hash_Hash64)(nil)), + } +} + +// _hash_Hash is an interface wrapper for Hash type +type _hash_Hash struct { + IValue interface{} + WBlockSize func() int + WReset func() + WSize func() int + WSum func(b []byte) []byte + WWrite func(p []byte) (n int, err error) +} + +func (W _hash_Hash) BlockSize() int { + return W.WBlockSize() +} +func (W _hash_Hash) Reset() { + W.WReset() +} +func (W _hash_Hash) Size() int { + return W.WSize() +} +func (W _hash_Hash) Sum(b []byte) []byte { + return W.WSum(b) +} +func (W _hash_Hash) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _hash_Hash32 is an interface wrapper for Hash32 type +type _hash_Hash32 struct { + IValue interface{} + WBlockSize func() int + WReset func() + WSize func() int + WSum func(b []byte) []byte + WSum32 func() uint32 + WWrite func(p []byte) (n int, err error) +} + +func (W _hash_Hash32) BlockSize() int { + return W.WBlockSize() +} +func (W _hash_Hash32) Reset() { + W.WReset() +} +func (W _hash_Hash32) Size() int { + return W.WSize() +} +func (W _hash_Hash32) Sum(b []byte) []byte { + return W.WSum(b) +} +func (W _hash_Hash32) Sum32() uint32 { + return W.WSum32() +} +func (W _hash_Hash32) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _hash_Hash64 is an interface wrapper for Hash64 type +type _hash_Hash64 struct { + IValue interface{} + WBlockSize func() int + WReset func() + WSize func() int + WSum func(b []byte) []byte + WSum64 func() uint64 + WWrite func(p []byte) (n int, err error) +} + +func (W _hash_Hash64) BlockSize() int { + return W.WBlockSize() +} +func (W _hash_Hash64) Reset() { + W.WReset() +} +func (W _hash_Hash64) Size() int { + return W.WSize() +} +func (W _hash_Hash64) Sum(b []byte) []byte { + return W.WSum(b) +} +func (W _hash_Hash64) Sum64() uint64 { + return W.WSum64() +} +func (W _hash_Hash64) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} diff --git a/stdlib/go1_18_hash_adler32.go b/stdlib/go1_18_hash_adler32.go new file mode 100644 index 000000000..60854b1cb --- /dev/null +++ b/stdlib/go1_18_hash_adler32.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "hash/adler32" + "reflect" +) + +func init() { + Symbols["hash/adler32/adler32"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Checksum": reflect.ValueOf(adler32.Checksum), + "New": reflect.ValueOf(adler32.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + } +} diff --git a/stdlib/go1_18_hash_crc32.go b/stdlib/go1_18_hash_crc32.go new file mode 100644 index 000000000..1cd42e500 --- /dev/null +++ b/stdlib/go1_18_hash_crc32.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "hash/crc32" + "reflect" +) + +func init() { + Symbols["hash/crc32/crc32"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Castagnoli": reflect.ValueOf(constant.MakeFromLiteral("2197175160", token.INT, 0)), + "Checksum": reflect.ValueOf(crc32.Checksum), + "ChecksumIEEE": reflect.ValueOf(crc32.ChecksumIEEE), + "IEEE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "IEEETable": reflect.ValueOf(&crc32.IEEETable).Elem(), + "Koopman": reflect.ValueOf(constant.MakeFromLiteral("3945912366", token.INT, 0)), + "MakeTable": reflect.ValueOf(crc32.MakeTable), + "New": reflect.ValueOf(crc32.New), + "NewIEEE": reflect.ValueOf(crc32.NewIEEE), + "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Update": reflect.ValueOf(crc32.Update), + + // type definitions + "Table": reflect.ValueOf((*crc32.Table)(nil)), + } +} diff --git a/stdlib/go1_18_hash_crc64.go b/stdlib/go1_18_hash_crc64.go new file mode 100644 index 000000000..7db8beb90 --- /dev/null +++ b/stdlib/go1_18_hash_crc64.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "hash/crc64" + "reflect" +) + +func init() { + Symbols["hash/crc64/crc64"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Checksum": reflect.ValueOf(crc64.Checksum), + "ECMA": reflect.ValueOf(constant.MakeFromLiteral("14514072000185962306", token.INT, 0)), + "ISO": reflect.ValueOf(constant.MakeFromLiteral("15564440312192434176", token.INT, 0)), + "MakeTable": reflect.ValueOf(crc64.MakeTable), + "New": reflect.ValueOf(crc64.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Update": reflect.ValueOf(crc64.Update), + + // type definitions + "Table": reflect.ValueOf((*crc64.Table)(nil)), + } +} diff --git a/stdlib/go1_18_hash_fnv.go b/stdlib/go1_18_hash_fnv.go new file mode 100644 index 000000000..e5c81b6a0 --- /dev/null +++ b/stdlib/go1_18_hash_fnv.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "hash/fnv" + "reflect" +) + +func init() { + Symbols["hash/fnv/fnv"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New128": reflect.ValueOf(fnv.New128), + "New128a": reflect.ValueOf(fnv.New128a), + "New32": reflect.ValueOf(fnv.New32), + "New32a": reflect.ValueOf(fnv.New32a), + "New64": reflect.ValueOf(fnv.New64), + "New64a": reflect.ValueOf(fnv.New64a), + } +} diff --git a/stdlib/go1_18_hash_maphash.go b/stdlib/go1_18_hash_maphash.go new file mode 100644 index 000000000..4cd84bc83 --- /dev/null +++ b/stdlib/go1_18_hash_maphash.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "hash/maphash" + "reflect" +) + +func init() { + Symbols["hash/maphash/maphash"] = map[string]reflect.Value{ + // function, constant and variable definitions + "MakeSeed": reflect.ValueOf(maphash.MakeSeed), + + // type definitions + "Hash": reflect.ValueOf((*maphash.Hash)(nil)), + "Seed": reflect.ValueOf((*maphash.Seed)(nil)), + } +} diff --git a/stdlib/go1_18_html.go b/stdlib/go1_18_html.go new file mode 100644 index 000000000..7b54c7740 --- /dev/null +++ b/stdlib/go1_18_html.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract html'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "html" + "reflect" +) + +func init() { + Symbols["html/html"] = map[string]reflect.Value{ + // function, constant and variable definitions + "EscapeString": reflect.ValueOf(html.EscapeString), + "UnescapeString": reflect.ValueOf(html.UnescapeString), + } +} diff --git a/stdlib/go1_18_html_template.go b/stdlib/go1_18_html_template.go new file mode 100644 index 000000000..32aeec625 --- /dev/null +++ b/stdlib/go1_18_html_template.go @@ -0,0 +1,55 @@ +// Code generated by 'yaegi extract html/template'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "html/template" + "reflect" +) + +func init() { + Symbols["html/template/template"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrAmbigContext": reflect.ValueOf(template.ErrAmbigContext), + "ErrBadHTML": reflect.ValueOf(template.ErrBadHTML), + "ErrBranchEnd": reflect.ValueOf(template.ErrBranchEnd), + "ErrEndContext": reflect.ValueOf(template.ErrEndContext), + "ErrNoSuchTemplate": reflect.ValueOf(template.ErrNoSuchTemplate), + "ErrOutputContext": reflect.ValueOf(template.ErrOutputContext), + "ErrPartialCharset": reflect.ValueOf(template.ErrPartialCharset), + "ErrPartialEscape": reflect.ValueOf(template.ErrPartialEscape), + "ErrPredefinedEscaper": reflect.ValueOf(template.ErrPredefinedEscaper), + "ErrRangeLoopReentry": reflect.ValueOf(template.ErrRangeLoopReentry), + "ErrSlashAmbig": reflect.ValueOf(template.ErrSlashAmbig), + "HTMLEscape": reflect.ValueOf(template.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), + "IsTrue": reflect.ValueOf(template.IsTrue), + "JSEscape": reflect.ValueOf(template.JSEscape), + "JSEscapeString": reflect.ValueOf(template.JSEscapeString), + "JSEscaper": reflect.ValueOf(template.JSEscaper), + "Must": reflect.ValueOf(template.Must), + "New": reflect.ValueOf(template.New), + "OK": reflect.ValueOf(template.OK), + "ParseFS": reflect.ValueOf(template.ParseFS), + "ParseFiles": reflect.ValueOf(template.ParseFiles), + "ParseGlob": reflect.ValueOf(template.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), + + // type definitions + "CSS": reflect.ValueOf((*template.CSS)(nil)), + "Error": reflect.ValueOf((*template.Error)(nil)), + "ErrorCode": reflect.ValueOf((*template.ErrorCode)(nil)), + "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), + "HTML": reflect.ValueOf((*template.HTML)(nil)), + "HTMLAttr": reflect.ValueOf((*template.HTMLAttr)(nil)), + "JS": reflect.ValueOf((*template.JS)(nil)), + "JSStr": reflect.ValueOf((*template.JSStr)(nil)), + "Srcset": reflect.ValueOf((*template.Srcset)(nil)), + "Template": reflect.ValueOf((*template.Template)(nil)), + "URL": reflect.ValueOf((*template.URL)(nil)), + } +} diff --git a/stdlib/go1_18_image.go b/stdlib/go1_18_image.go new file mode 100644 index 000000000..2e6bd8f77 --- /dev/null +++ b/stdlib/go1_18_image.go @@ -0,0 +1,138 @@ +// Code generated by 'yaegi extract image'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "image" + "image/color" + "reflect" +) + +func init() { + Symbols["image/image"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Black": reflect.ValueOf(&image.Black).Elem(), + "Decode": reflect.ValueOf(image.Decode), + "DecodeConfig": reflect.ValueOf(image.DecodeConfig), + "ErrFormat": reflect.ValueOf(&image.ErrFormat).Elem(), + "NewAlpha": reflect.ValueOf(image.NewAlpha), + "NewAlpha16": reflect.ValueOf(image.NewAlpha16), + "NewCMYK": reflect.ValueOf(image.NewCMYK), + "NewGray": reflect.ValueOf(image.NewGray), + "NewGray16": reflect.ValueOf(image.NewGray16), + "NewNRGBA": reflect.ValueOf(image.NewNRGBA), + "NewNRGBA64": reflect.ValueOf(image.NewNRGBA64), + "NewNYCbCrA": reflect.ValueOf(image.NewNYCbCrA), + "NewPaletted": reflect.ValueOf(image.NewPaletted), + "NewRGBA": reflect.ValueOf(image.NewRGBA), + "NewRGBA64": reflect.ValueOf(image.NewRGBA64), + "NewUniform": reflect.ValueOf(image.NewUniform), + "NewYCbCr": reflect.ValueOf(image.NewYCbCr), + "Opaque": reflect.ValueOf(&image.Opaque).Elem(), + "Pt": reflect.ValueOf(image.Pt), + "Rect": reflect.ValueOf(image.Rect), + "RegisterFormat": reflect.ValueOf(image.RegisterFormat), + "Transparent": reflect.ValueOf(&image.Transparent).Elem(), + "White": reflect.ValueOf(&image.White).Elem(), + "YCbCrSubsampleRatio410": reflect.ValueOf(image.YCbCrSubsampleRatio410), + "YCbCrSubsampleRatio411": reflect.ValueOf(image.YCbCrSubsampleRatio411), + "YCbCrSubsampleRatio420": reflect.ValueOf(image.YCbCrSubsampleRatio420), + "YCbCrSubsampleRatio422": reflect.ValueOf(image.YCbCrSubsampleRatio422), + "YCbCrSubsampleRatio440": reflect.ValueOf(image.YCbCrSubsampleRatio440), + "YCbCrSubsampleRatio444": reflect.ValueOf(image.YCbCrSubsampleRatio444), + "ZP": reflect.ValueOf(&image.ZP).Elem(), + "ZR": reflect.ValueOf(&image.ZR).Elem(), + + // type definitions + "Alpha": reflect.ValueOf((*image.Alpha)(nil)), + "Alpha16": reflect.ValueOf((*image.Alpha16)(nil)), + "CMYK": reflect.ValueOf((*image.CMYK)(nil)), + "Config": reflect.ValueOf((*image.Config)(nil)), + "Gray": reflect.ValueOf((*image.Gray)(nil)), + "Gray16": reflect.ValueOf((*image.Gray16)(nil)), + "Image": reflect.ValueOf((*image.Image)(nil)), + "NRGBA": reflect.ValueOf((*image.NRGBA)(nil)), + "NRGBA64": reflect.ValueOf((*image.NRGBA64)(nil)), + "NYCbCrA": reflect.ValueOf((*image.NYCbCrA)(nil)), + "Paletted": reflect.ValueOf((*image.Paletted)(nil)), + "PalettedImage": reflect.ValueOf((*image.PalettedImage)(nil)), + "Point": reflect.ValueOf((*image.Point)(nil)), + "RGBA": reflect.ValueOf((*image.RGBA)(nil)), + "RGBA64": reflect.ValueOf((*image.RGBA64)(nil)), + "RGBA64Image": reflect.ValueOf((*image.RGBA64Image)(nil)), + "Rectangle": reflect.ValueOf((*image.Rectangle)(nil)), + "Uniform": reflect.ValueOf((*image.Uniform)(nil)), + "YCbCr": reflect.ValueOf((*image.YCbCr)(nil)), + "YCbCrSubsampleRatio": reflect.ValueOf((*image.YCbCrSubsampleRatio)(nil)), + + // interface wrapper definitions + "_Image": reflect.ValueOf((*_image_Image)(nil)), + "_PalettedImage": reflect.ValueOf((*_image_PalettedImage)(nil)), + "_RGBA64Image": reflect.ValueOf((*_image_RGBA64Image)(nil)), + } +} + +// _image_Image is an interface wrapper for Image type +type _image_Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model +} + +func (W _image_Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_Image) ColorModel() color.Model { + return W.WColorModel() +} + +// _image_PalettedImage is an interface wrapper for PalettedImage type +type _image_PalettedImage struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorIndexAt func(x int, y int) uint8 + WColorModel func() color.Model +} + +func (W _image_PalettedImage) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_PalettedImage) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_PalettedImage) ColorIndexAt(x int, y int) uint8 { + return W.WColorIndexAt(x, y) +} +func (W _image_PalettedImage) ColorModel() color.Model { + return W.WColorModel() +} + +// _image_RGBA64Image is an interface wrapper for RGBA64Image type +type _image_RGBA64Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model + WRGBA64At func(x int, y int) color.RGBA64 +} + +func (W _image_RGBA64Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_RGBA64Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_RGBA64Image) ColorModel() color.Model { + return W.WColorModel() +} +func (W _image_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { + return W.WRGBA64At(x, y) +} diff --git a/stdlib/go1_18_image_color.go b/stdlib/go1_18_image_color.go new file mode 100644 index 000000000..e99fdaf03 --- /dev/null +++ b/stdlib/go1_18_image_color.go @@ -0,0 +1,77 @@ +// Code generated by 'yaegi extract image/color'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "image/color" + "reflect" +) + +func init() { + Symbols["image/color/color"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Alpha16Model": reflect.ValueOf(&color.Alpha16Model).Elem(), + "AlphaModel": reflect.ValueOf(&color.AlphaModel).Elem(), + "Black": reflect.ValueOf(&color.Black).Elem(), + "CMYKModel": reflect.ValueOf(&color.CMYKModel).Elem(), + "CMYKToRGB": reflect.ValueOf(color.CMYKToRGB), + "Gray16Model": reflect.ValueOf(&color.Gray16Model).Elem(), + "GrayModel": reflect.ValueOf(&color.GrayModel).Elem(), + "ModelFunc": reflect.ValueOf(color.ModelFunc), + "NRGBA64Model": reflect.ValueOf(&color.NRGBA64Model).Elem(), + "NRGBAModel": reflect.ValueOf(&color.NRGBAModel).Elem(), + "NYCbCrAModel": reflect.ValueOf(&color.NYCbCrAModel).Elem(), + "Opaque": reflect.ValueOf(&color.Opaque).Elem(), + "RGBA64Model": reflect.ValueOf(&color.RGBA64Model).Elem(), + "RGBAModel": reflect.ValueOf(&color.RGBAModel).Elem(), + "RGBToCMYK": reflect.ValueOf(color.RGBToCMYK), + "RGBToYCbCr": reflect.ValueOf(color.RGBToYCbCr), + "Transparent": reflect.ValueOf(&color.Transparent).Elem(), + "White": reflect.ValueOf(&color.White).Elem(), + "YCbCrModel": reflect.ValueOf(&color.YCbCrModel).Elem(), + "YCbCrToRGB": reflect.ValueOf(color.YCbCrToRGB), + + // type definitions + "Alpha": reflect.ValueOf((*color.Alpha)(nil)), + "Alpha16": reflect.ValueOf((*color.Alpha16)(nil)), + "CMYK": reflect.ValueOf((*color.CMYK)(nil)), + "Color": reflect.ValueOf((*color.Color)(nil)), + "Gray": reflect.ValueOf((*color.Gray)(nil)), + "Gray16": reflect.ValueOf((*color.Gray16)(nil)), + "Model": reflect.ValueOf((*color.Model)(nil)), + "NRGBA": reflect.ValueOf((*color.NRGBA)(nil)), + "NRGBA64": reflect.ValueOf((*color.NRGBA64)(nil)), + "NYCbCrA": reflect.ValueOf((*color.NYCbCrA)(nil)), + "Palette": reflect.ValueOf((*color.Palette)(nil)), + "RGBA": reflect.ValueOf((*color.RGBA)(nil)), + "RGBA64": reflect.ValueOf((*color.RGBA64)(nil)), + "YCbCr": reflect.ValueOf((*color.YCbCr)(nil)), + + // interface wrapper definitions + "_Color": reflect.ValueOf((*_image_color_Color)(nil)), + "_Model": reflect.ValueOf((*_image_color_Model)(nil)), + } +} + +// _image_color_Color is an interface wrapper for Color type +type _image_color_Color struct { + IValue interface{} + WRGBA func() (r uint32, g uint32, b uint32, a uint32) +} + +func (W _image_color_Color) RGBA() (r uint32, g uint32, b uint32, a uint32) { + return W.WRGBA() +} + +// _image_color_Model is an interface wrapper for Model type +type _image_color_Model struct { + IValue interface{} + WConvert func(c color.Color) color.Color +} + +func (W _image_color_Model) Convert(c color.Color) color.Color { + return W.WConvert(c) +} diff --git a/stdlib/go1_18_image_color_palette.go b/stdlib/go1_18_image_color_palette.go new file mode 100644 index 000000000..e5a304fef --- /dev/null +++ b/stdlib/go1_18_image_color_palette.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "image/color/palette" + "reflect" +) + +func init() { + Symbols["image/color/palette/palette"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Plan9": reflect.ValueOf(&palette.Plan9).Elem(), + "WebSafe": reflect.ValueOf(&palette.WebSafe).Elem(), + } +} diff --git a/stdlib/go1_18_image_draw.go b/stdlib/go1_18_image_draw.go new file mode 100644 index 000000000..98d9ffa90 --- /dev/null +++ b/stdlib/go1_18_image_draw.go @@ -0,0 +1,109 @@ +// Code generated by 'yaegi extract image/draw'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "image" + "image/color" + "image/draw" + "reflect" +) + +func init() { + Symbols["image/draw/draw"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Draw": reflect.ValueOf(draw.Draw), + "DrawMask": reflect.ValueOf(draw.DrawMask), + "FloydSteinberg": reflect.ValueOf(&draw.FloydSteinberg).Elem(), + "Over": reflect.ValueOf(draw.Over), + "Src": reflect.ValueOf(draw.Src), + + // type definitions + "Drawer": reflect.ValueOf((*draw.Drawer)(nil)), + "Image": reflect.ValueOf((*draw.Image)(nil)), + "Op": reflect.ValueOf((*draw.Op)(nil)), + "Quantizer": reflect.ValueOf((*draw.Quantizer)(nil)), + "RGBA64Image": reflect.ValueOf((*draw.RGBA64Image)(nil)), + + // interface wrapper definitions + "_Drawer": reflect.ValueOf((*_image_draw_Drawer)(nil)), + "_Image": reflect.ValueOf((*_image_draw_Image)(nil)), + "_Quantizer": reflect.ValueOf((*_image_draw_Quantizer)(nil)), + "_RGBA64Image": reflect.ValueOf((*_image_draw_RGBA64Image)(nil)), + } +} + +// _image_draw_Drawer is an interface wrapper for Drawer type +type _image_draw_Drawer struct { + IValue interface{} + WDraw func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) +} + +func (W _image_draw_Drawer) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) { + W.WDraw(dst, r, src, sp) +} + +// _image_draw_Image is an interface wrapper for Image type +type _image_draw_Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model + WSet func(x int, y int, c color.Color) +} + +func (W _image_draw_Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_draw_Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_draw_Image) ColorModel() color.Model { + return W.WColorModel() +} +func (W _image_draw_Image) Set(x int, y int, c color.Color) { + W.WSet(x, y, c) +} + +// _image_draw_Quantizer is an interface wrapper for Quantizer type +type _image_draw_Quantizer struct { + IValue interface{} + WQuantize func(p color.Palette, m image.Image) color.Palette +} + +func (W _image_draw_Quantizer) Quantize(p color.Palette, m image.Image) color.Palette { + return W.WQuantize(p, m) +} + +// _image_draw_RGBA64Image is an interface wrapper for RGBA64Image type +type _image_draw_RGBA64Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model + WRGBA64At func(x int, y int) color.RGBA64 + WSet func(x int, y int, c color.Color) + WSetRGBA64 func(x int, y int, c color.RGBA64) +} + +func (W _image_draw_RGBA64Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_draw_RGBA64Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_draw_RGBA64Image) ColorModel() color.Model { + return W.WColorModel() +} +func (W _image_draw_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { + return W.WRGBA64At(x, y) +} +func (W _image_draw_RGBA64Image) Set(x int, y int, c color.Color) { + W.WSet(x, y, c) +} +func (W _image_draw_RGBA64Image) SetRGBA64(x int, y int, c color.RGBA64) { + W.WSetRGBA64(x, y, c) +} diff --git a/stdlib/go1_18_image_gif.go b/stdlib/go1_18_image_gif.go new file mode 100644 index 000000000..70912f916 --- /dev/null +++ b/stdlib/go1_18_image_gif.go @@ -0,0 +1,31 @@ +// Code generated by 'yaegi extract image/gif'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "image/gif" + "reflect" +) + +func init() { + Symbols["image/gif/gif"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(gif.Decode), + "DecodeAll": reflect.ValueOf(gif.DecodeAll), + "DecodeConfig": reflect.ValueOf(gif.DecodeConfig), + "DisposalBackground": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DisposalNone": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DisposalPrevious": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Encode": reflect.ValueOf(gif.Encode), + "EncodeAll": reflect.ValueOf(gif.EncodeAll), + + // type definitions + "GIF": reflect.ValueOf((*gif.GIF)(nil)), + "Options": reflect.ValueOf((*gif.Options)(nil)), + } +} diff --git a/stdlib/go1_18_image_jpeg.go b/stdlib/go1_18_image_jpeg.go new file mode 100644 index 000000000..3ddc866b4 --- /dev/null +++ b/stdlib/go1_18_image_jpeg.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "image/jpeg" + "reflect" +) + +func init() { + Symbols["image/jpeg/jpeg"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(jpeg.Decode), + "DecodeConfig": reflect.ValueOf(jpeg.DecodeConfig), + "DefaultQuality": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "Encode": reflect.ValueOf(jpeg.Encode), + + // type definitions + "FormatError": reflect.ValueOf((*jpeg.FormatError)(nil)), + "Options": reflect.ValueOf((*jpeg.Options)(nil)), + "Reader": reflect.ValueOf((*jpeg.Reader)(nil)), + "UnsupportedError": reflect.ValueOf((*jpeg.UnsupportedError)(nil)), + + // interface wrapper definitions + "_Reader": reflect.ValueOf((*_image_jpeg_Reader)(nil)), + } +} + +// _image_jpeg_Reader is an interface wrapper for Reader type +type _image_jpeg_Reader struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WReadByte func() (byte, error) +} + +func (W _image_jpeg_Reader) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _image_jpeg_Reader) ReadByte() (byte, error) { + return W.WReadByte() +} diff --git a/stdlib/go1_18_image_png.go b/stdlib/go1_18_image_png.go new file mode 100644 index 000000000..2ffb430be --- /dev/null +++ b/stdlib/go1_18_image_png.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract image/png'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "image/png" + "reflect" +) + +func init() { + Symbols["image/png/png"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(png.BestCompression), + "BestSpeed": reflect.ValueOf(png.BestSpeed), + "Decode": reflect.ValueOf(png.Decode), + "DecodeConfig": reflect.ValueOf(png.DecodeConfig), + "DefaultCompression": reflect.ValueOf(png.DefaultCompression), + "Encode": reflect.ValueOf(png.Encode), + "NoCompression": reflect.ValueOf(png.NoCompression), + + // type definitions + "CompressionLevel": reflect.ValueOf((*png.CompressionLevel)(nil)), + "Encoder": reflect.ValueOf((*png.Encoder)(nil)), + "EncoderBuffer": reflect.ValueOf((*png.EncoderBuffer)(nil)), + "EncoderBufferPool": reflect.ValueOf((*png.EncoderBufferPool)(nil)), + "FormatError": reflect.ValueOf((*png.FormatError)(nil)), + "UnsupportedError": reflect.ValueOf((*png.UnsupportedError)(nil)), + + // interface wrapper definitions + "_EncoderBufferPool": reflect.ValueOf((*_image_png_EncoderBufferPool)(nil)), + } +} + +// _image_png_EncoderBufferPool is an interface wrapper for EncoderBufferPool type +type _image_png_EncoderBufferPool struct { + IValue interface{} + WGet func() *png.EncoderBuffer + WPut func(a0 *png.EncoderBuffer) +} + +func (W _image_png_EncoderBufferPool) Get() *png.EncoderBuffer { + return W.WGet() +} +func (W _image_png_EncoderBufferPool) Put(a0 *png.EncoderBuffer) { + W.WPut(a0) +} diff --git a/stdlib/go1_18_index_suffixarray.go b/stdlib/go1_18_index_suffixarray.go new file mode 100644 index 000000000..1fbe85e50 --- /dev/null +++ b/stdlib/go1_18_index_suffixarray.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "index/suffixarray" + "reflect" +) + +func init() { + Symbols["index/suffixarray/suffixarray"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(suffixarray.New), + + // type definitions + "Index": reflect.ValueOf((*suffixarray.Index)(nil)), + } +} diff --git a/stdlib/go1_18_io.go b/stdlib/go1_18_io.go new file mode 100644 index 000000000..05a5fc64a --- /dev/null +++ b/stdlib/go1_18_io.go @@ -0,0 +1,367 @@ +// Code generated by 'yaegi extract io'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "io" + "reflect" +) + +func init() { + Symbols["io/io"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Copy": reflect.ValueOf(io.Copy), + "CopyBuffer": reflect.ValueOf(io.CopyBuffer), + "CopyN": reflect.ValueOf(io.CopyN), + "Discard": reflect.ValueOf(&io.Discard).Elem(), + "EOF": reflect.ValueOf(&io.EOF).Elem(), + "ErrClosedPipe": reflect.ValueOf(&io.ErrClosedPipe).Elem(), + "ErrNoProgress": reflect.ValueOf(&io.ErrNoProgress).Elem(), + "ErrShortBuffer": reflect.ValueOf(&io.ErrShortBuffer).Elem(), + "ErrShortWrite": reflect.ValueOf(&io.ErrShortWrite).Elem(), + "ErrUnexpectedEOF": reflect.ValueOf(&io.ErrUnexpectedEOF).Elem(), + "LimitReader": reflect.ValueOf(io.LimitReader), + "MultiReader": reflect.ValueOf(io.MultiReader), + "MultiWriter": reflect.ValueOf(io.MultiWriter), + "NewSectionReader": reflect.ValueOf(io.NewSectionReader), + "NopCloser": reflect.ValueOf(io.NopCloser), + "Pipe": reflect.ValueOf(io.Pipe), + "ReadAll": reflect.ValueOf(io.ReadAll), + "ReadAtLeast": reflect.ValueOf(io.ReadAtLeast), + "ReadFull": reflect.ValueOf(io.ReadFull), + "SeekCurrent": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SeekEnd": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SeekStart": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TeeReader": reflect.ValueOf(io.TeeReader), + "WriteString": reflect.ValueOf(io.WriteString), + + // type definitions + "ByteReader": reflect.ValueOf((*io.ByteReader)(nil)), + "ByteScanner": reflect.ValueOf((*io.ByteScanner)(nil)), + "ByteWriter": reflect.ValueOf((*io.ByteWriter)(nil)), + "Closer": reflect.ValueOf((*io.Closer)(nil)), + "LimitedReader": reflect.ValueOf((*io.LimitedReader)(nil)), + "PipeReader": reflect.ValueOf((*io.PipeReader)(nil)), + "PipeWriter": reflect.ValueOf((*io.PipeWriter)(nil)), + "ReadCloser": reflect.ValueOf((*io.ReadCloser)(nil)), + "ReadSeekCloser": reflect.ValueOf((*io.ReadSeekCloser)(nil)), + "ReadSeeker": reflect.ValueOf((*io.ReadSeeker)(nil)), + "ReadWriteCloser": reflect.ValueOf((*io.ReadWriteCloser)(nil)), + "ReadWriteSeeker": reflect.ValueOf((*io.ReadWriteSeeker)(nil)), + "ReadWriter": reflect.ValueOf((*io.ReadWriter)(nil)), + "Reader": reflect.ValueOf((*io.Reader)(nil)), + "ReaderAt": reflect.ValueOf((*io.ReaderAt)(nil)), + "ReaderFrom": reflect.ValueOf((*io.ReaderFrom)(nil)), + "RuneReader": reflect.ValueOf((*io.RuneReader)(nil)), + "RuneScanner": reflect.ValueOf((*io.RuneScanner)(nil)), + "SectionReader": reflect.ValueOf((*io.SectionReader)(nil)), + "Seeker": reflect.ValueOf((*io.Seeker)(nil)), + "StringWriter": reflect.ValueOf((*io.StringWriter)(nil)), + "WriteCloser": reflect.ValueOf((*io.WriteCloser)(nil)), + "WriteSeeker": reflect.ValueOf((*io.WriteSeeker)(nil)), + "Writer": reflect.ValueOf((*io.Writer)(nil)), + "WriterAt": reflect.ValueOf((*io.WriterAt)(nil)), + "WriterTo": reflect.ValueOf((*io.WriterTo)(nil)), + + // interface wrapper definitions + "_ByteReader": reflect.ValueOf((*_io_ByteReader)(nil)), + "_ByteScanner": reflect.ValueOf((*_io_ByteScanner)(nil)), + "_ByteWriter": reflect.ValueOf((*_io_ByteWriter)(nil)), + "_Closer": reflect.ValueOf((*_io_Closer)(nil)), + "_ReadCloser": reflect.ValueOf((*_io_ReadCloser)(nil)), + "_ReadSeekCloser": reflect.ValueOf((*_io_ReadSeekCloser)(nil)), + "_ReadSeeker": reflect.ValueOf((*_io_ReadSeeker)(nil)), + "_ReadWriteCloser": reflect.ValueOf((*_io_ReadWriteCloser)(nil)), + "_ReadWriteSeeker": reflect.ValueOf((*_io_ReadWriteSeeker)(nil)), + "_ReadWriter": reflect.ValueOf((*_io_ReadWriter)(nil)), + "_Reader": reflect.ValueOf((*_io_Reader)(nil)), + "_ReaderAt": reflect.ValueOf((*_io_ReaderAt)(nil)), + "_ReaderFrom": reflect.ValueOf((*_io_ReaderFrom)(nil)), + "_RuneReader": reflect.ValueOf((*_io_RuneReader)(nil)), + "_RuneScanner": reflect.ValueOf((*_io_RuneScanner)(nil)), + "_Seeker": reflect.ValueOf((*_io_Seeker)(nil)), + "_StringWriter": reflect.ValueOf((*_io_StringWriter)(nil)), + "_WriteCloser": reflect.ValueOf((*_io_WriteCloser)(nil)), + "_WriteSeeker": reflect.ValueOf((*_io_WriteSeeker)(nil)), + "_Writer": reflect.ValueOf((*_io_Writer)(nil)), + "_WriterAt": reflect.ValueOf((*_io_WriterAt)(nil)), + "_WriterTo": reflect.ValueOf((*_io_WriterTo)(nil)), + } +} + +// _io_ByteReader is an interface wrapper for ByteReader type +type _io_ByteReader struct { + IValue interface{} + WReadByte func() (byte, error) +} + +func (W _io_ByteReader) ReadByte() (byte, error) { + return W.WReadByte() +} + +// _io_ByteScanner is an interface wrapper for ByteScanner type +type _io_ByteScanner struct { + IValue interface{} + WReadByte func() (byte, error) + WUnreadByte func() error +} + +func (W _io_ByteScanner) ReadByte() (byte, error) { + return W.WReadByte() +} +func (W _io_ByteScanner) UnreadByte() error { + return W.WUnreadByte() +} + +// _io_ByteWriter is an interface wrapper for ByteWriter type +type _io_ByteWriter struct { + IValue interface{} + WWriteByte func(c byte) error +} + +func (W _io_ByteWriter) WriteByte(c byte) error { + return W.WWriteByte(c) +} + +// _io_Closer is an interface wrapper for Closer type +type _io_Closer struct { + IValue interface{} + WClose func() error +} + +func (W _io_Closer) Close() error { + return W.WClose() +} + +// _io_ReadCloser is an interface wrapper for ReadCloser type +type _io_ReadCloser struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) +} + +func (W _io_ReadCloser) Close() error { + return W.WClose() +} +func (W _io_ReadCloser) Read(p []byte) (n int, err error) { + return W.WRead(p) +} + +// _io_ReadSeekCloser is an interface wrapper for ReadSeekCloser type +type _io_ReadSeekCloser struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _io_ReadSeekCloser) Close() error { + return W.WClose() +} +func (W _io_ReadSeekCloser) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadSeekCloser) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} + +// _io_ReadSeeker is an interface wrapper for ReadSeeker type +type _io_ReadSeeker struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _io_ReadSeeker) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadSeeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} + +// _io_ReadWriteCloser is an interface wrapper for ReadWriteCloser type +type _io_ReadWriteCloser struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_ReadWriteCloser) Close() error { + return W.WClose() +} +func (W _io_ReadWriteCloser) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadWriteCloser) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_ReadWriteSeeker is an interface wrapper for ReadWriteSeeker type +type _io_ReadWriteSeeker struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_ReadWriteSeeker) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadWriteSeeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} +func (W _io_ReadWriteSeeker) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_ReadWriter is an interface wrapper for ReadWriter type +type _io_ReadWriter struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_ReadWriter) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadWriter) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_Reader is an interface wrapper for Reader type +type _io_Reader struct { + IValue interface{} + WRead func(p []byte) (n int, err error) +} + +func (W _io_Reader) Read(p []byte) (n int, err error) { + return W.WRead(p) +} + +// _io_ReaderAt is an interface wrapper for ReaderAt type +type _io_ReaderAt struct { + IValue interface{} + WReadAt func(p []byte, off int64) (n int, err error) +} + +func (W _io_ReaderAt) ReadAt(p []byte, off int64) (n int, err error) { + return W.WReadAt(p, off) +} + +// _io_ReaderFrom is an interface wrapper for ReaderFrom type +type _io_ReaderFrom struct { + IValue interface{} + WReadFrom func(r io.Reader) (n int64, err error) +} + +func (W _io_ReaderFrom) ReadFrom(r io.Reader) (n int64, err error) { + return W.WReadFrom(r) +} + +// _io_RuneReader is an interface wrapper for RuneReader type +type _io_RuneReader struct { + IValue interface{} + WReadRune func() (r rune, size int, err error) +} + +func (W _io_RuneReader) ReadRune() (r rune, size int, err error) { + return W.WReadRune() +} + +// _io_RuneScanner is an interface wrapper for RuneScanner type +type _io_RuneScanner struct { + IValue interface{} + WReadRune func() (r rune, size int, err error) + WUnreadRune func() error +} + +func (W _io_RuneScanner) ReadRune() (r rune, size int, err error) { + return W.WReadRune() +} +func (W _io_RuneScanner) UnreadRune() error { + return W.WUnreadRune() +} + +// _io_Seeker is an interface wrapper for Seeker type +type _io_Seeker struct { + IValue interface{} + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _io_Seeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} + +// _io_StringWriter is an interface wrapper for StringWriter type +type _io_StringWriter struct { + IValue interface{} + WWriteString func(s string) (n int, err error) +} + +func (W _io_StringWriter) WriteString(s string) (n int, err error) { + return W.WWriteString(s) +} + +// _io_WriteCloser is an interface wrapper for WriteCloser type +type _io_WriteCloser struct { + IValue interface{} + WClose func() error + WWrite func(p []byte) (n int, err error) +} + +func (W _io_WriteCloser) Close() error { + return W.WClose() +} +func (W _io_WriteCloser) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_WriteSeeker is an interface wrapper for WriteSeeker type +type _io_WriteSeeker struct { + IValue interface{} + WSeek func(offset int64, whence int) (int64, error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_WriteSeeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} +func (W _io_WriteSeeker) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_Writer is an interface wrapper for Writer type +type _io_Writer struct { + IValue interface{} + WWrite func(p []byte) (n int, err error) +} + +func (W _io_Writer) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_WriterAt is an interface wrapper for WriterAt type +type _io_WriterAt struct { + IValue interface{} + WWriteAt func(p []byte, off int64) (n int, err error) +} + +func (W _io_WriterAt) WriteAt(p []byte, off int64) (n int, err error) { + return W.WWriteAt(p, off) +} + +// _io_WriterTo is an interface wrapper for WriterTo type +type _io_WriterTo struct { + IValue interface{} + WWriteTo func(w io.Writer) (n int64, err error) +} + +func (W _io_WriterTo) WriteTo(w io.Writer) (n int64, err error) { + return W.WWriteTo(w) +} diff --git a/stdlib/go1_18_io_fs.go b/stdlib/go1_18_io_fs.go new file mode 100644 index 000000000..42c124890 --- /dev/null +++ b/stdlib/go1_18_io_fs.go @@ -0,0 +1,246 @@ +// Code generated by 'yaegi extract io/fs'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "io/fs" + "reflect" + "time" +) + +func init() { + Symbols["io/fs/fs"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrClosed": reflect.ValueOf(&fs.ErrClosed).Elem(), + "ErrExist": reflect.ValueOf(&fs.ErrExist).Elem(), + "ErrInvalid": reflect.ValueOf(&fs.ErrInvalid).Elem(), + "ErrNotExist": reflect.ValueOf(&fs.ErrNotExist).Elem(), + "ErrPermission": reflect.ValueOf(&fs.ErrPermission).Elem(), + "FileInfoToDirEntry": reflect.ValueOf(fs.FileInfoToDirEntry), + "Glob": reflect.ValueOf(fs.Glob), + "ModeAppend": reflect.ValueOf(fs.ModeAppend), + "ModeCharDevice": reflect.ValueOf(fs.ModeCharDevice), + "ModeDevice": reflect.ValueOf(fs.ModeDevice), + "ModeDir": reflect.ValueOf(fs.ModeDir), + "ModeExclusive": reflect.ValueOf(fs.ModeExclusive), + "ModeIrregular": reflect.ValueOf(fs.ModeIrregular), + "ModeNamedPipe": reflect.ValueOf(fs.ModeNamedPipe), + "ModePerm": reflect.ValueOf(fs.ModePerm), + "ModeSetgid": reflect.ValueOf(fs.ModeSetgid), + "ModeSetuid": reflect.ValueOf(fs.ModeSetuid), + "ModeSocket": reflect.ValueOf(fs.ModeSocket), + "ModeSticky": reflect.ValueOf(fs.ModeSticky), + "ModeSymlink": reflect.ValueOf(fs.ModeSymlink), + "ModeTemporary": reflect.ValueOf(fs.ModeTemporary), + "ModeType": reflect.ValueOf(fs.ModeType), + "ReadDir": reflect.ValueOf(fs.ReadDir), + "ReadFile": reflect.ValueOf(fs.ReadFile), + "SkipDir": reflect.ValueOf(&fs.SkipDir).Elem(), + "Stat": reflect.ValueOf(fs.Stat), + "Sub": reflect.ValueOf(fs.Sub), + "ValidPath": reflect.ValueOf(fs.ValidPath), + "WalkDir": reflect.ValueOf(fs.WalkDir), + + // type definitions + "DirEntry": reflect.ValueOf((*fs.DirEntry)(nil)), + "FS": reflect.ValueOf((*fs.FS)(nil)), + "File": reflect.ValueOf((*fs.File)(nil)), + "FileInfo": reflect.ValueOf((*fs.FileInfo)(nil)), + "FileMode": reflect.ValueOf((*fs.FileMode)(nil)), + "GlobFS": reflect.ValueOf((*fs.GlobFS)(nil)), + "PathError": reflect.ValueOf((*fs.PathError)(nil)), + "ReadDirFS": reflect.ValueOf((*fs.ReadDirFS)(nil)), + "ReadDirFile": reflect.ValueOf((*fs.ReadDirFile)(nil)), + "ReadFileFS": reflect.ValueOf((*fs.ReadFileFS)(nil)), + "StatFS": reflect.ValueOf((*fs.StatFS)(nil)), + "SubFS": reflect.ValueOf((*fs.SubFS)(nil)), + "WalkDirFunc": reflect.ValueOf((*fs.WalkDirFunc)(nil)), + + // interface wrapper definitions + "_DirEntry": reflect.ValueOf((*_io_fs_DirEntry)(nil)), + "_FS": reflect.ValueOf((*_io_fs_FS)(nil)), + "_File": reflect.ValueOf((*_io_fs_File)(nil)), + "_FileInfo": reflect.ValueOf((*_io_fs_FileInfo)(nil)), + "_GlobFS": reflect.ValueOf((*_io_fs_GlobFS)(nil)), + "_ReadDirFS": reflect.ValueOf((*_io_fs_ReadDirFS)(nil)), + "_ReadDirFile": reflect.ValueOf((*_io_fs_ReadDirFile)(nil)), + "_ReadFileFS": reflect.ValueOf((*_io_fs_ReadFileFS)(nil)), + "_StatFS": reflect.ValueOf((*_io_fs_StatFS)(nil)), + "_SubFS": reflect.ValueOf((*_io_fs_SubFS)(nil)), + } +} + +// _io_fs_DirEntry is an interface wrapper for DirEntry type +type _io_fs_DirEntry struct { + IValue interface{} + WInfo func() (fs.FileInfo, error) + WIsDir func() bool + WName func() string + WType func() fs.FileMode +} + +func (W _io_fs_DirEntry) Info() (fs.FileInfo, error) { + return W.WInfo() +} +func (W _io_fs_DirEntry) IsDir() bool { + return W.WIsDir() +} +func (W _io_fs_DirEntry) Name() string { + return W.WName() +} +func (W _io_fs_DirEntry) Type() fs.FileMode { + return W.WType() +} + +// _io_fs_FS is an interface wrapper for FS type +type _io_fs_FS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) +} + +func (W _io_fs_FS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} + +// _io_fs_File is an interface wrapper for File type +type _io_fs_File struct { + IValue interface{} + WClose func() error + WRead func(a0 []byte) (int, error) + WStat func() (fs.FileInfo, error) +} + +func (W _io_fs_File) Close() error { + return W.WClose() +} +func (W _io_fs_File) Read(a0 []byte) (int, error) { + return W.WRead(a0) +} +func (W _io_fs_File) Stat() (fs.FileInfo, error) { + return W.WStat() +} + +// _io_fs_FileInfo is an interface wrapper for FileInfo type +type _io_fs_FileInfo struct { + IValue interface{} + WIsDir func() bool + WModTime func() time.Time + WMode func() fs.FileMode + WName func() string + WSize func() int64 + WSys func() any +} + +func (W _io_fs_FileInfo) IsDir() bool { + return W.WIsDir() +} +func (W _io_fs_FileInfo) ModTime() time.Time { + return W.WModTime() +} +func (W _io_fs_FileInfo) Mode() fs.FileMode { + return W.WMode() +} +func (W _io_fs_FileInfo) Name() string { + return W.WName() +} +func (W _io_fs_FileInfo) Size() int64 { + return W.WSize() +} +func (W _io_fs_FileInfo) Sys() any { + return W.WSys() +} + +// _io_fs_GlobFS is an interface wrapper for GlobFS type +type _io_fs_GlobFS struct { + IValue interface{} + WGlob func(pattern string) ([]string, error) + WOpen func(name string) (fs.File, error) +} + +func (W _io_fs_GlobFS) Glob(pattern string) ([]string, error) { + return W.WGlob(pattern) +} +func (W _io_fs_GlobFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} + +// _io_fs_ReadDirFS is an interface wrapper for ReadDirFS type +type _io_fs_ReadDirFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WReadDir func(name string) ([]fs.DirEntry, error) +} + +func (W _io_fs_ReadDirFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_ReadDirFS) ReadDir(name string) ([]fs.DirEntry, error) { + return W.WReadDir(name) +} + +// _io_fs_ReadDirFile is an interface wrapper for ReadDirFile type +type _io_fs_ReadDirFile struct { + IValue interface{} + WClose func() error + WRead func(a0 []byte) (int, error) + WReadDir func(n int) ([]fs.DirEntry, error) + WStat func() (fs.FileInfo, error) +} + +func (W _io_fs_ReadDirFile) Close() error { + return W.WClose() +} +func (W _io_fs_ReadDirFile) Read(a0 []byte) (int, error) { + return W.WRead(a0) +} +func (W _io_fs_ReadDirFile) ReadDir(n int) ([]fs.DirEntry, error) { + return W.WReadDir(n) +} +func (W _io_fs_ReadDirFile) Stat() (fs.FileInfo, error) { + return W.WStat() +} + +// _io_fs_ReadFileFS is an interface wrapper for ReadFileFS type +type _io_fs_ReadFileFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WReadFile func(name string) ([]byte, error) +} + +func (W _io_fs_ReadFileFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_ReadFileFS) ReadFile(name string) ([]byte, error) { + return W.WReadFile(name) +} + +// _io_fs_StatFS is an interface wrapper for StatFS type +type _io_fs_StatFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WStat func(name string) (fs.FileInfo, error) +} + +func (W _io_fs_StatFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_StatFS) Stat(name string) (fs.FileInfo, error) { + return W.WStat(name) +} + +// _io_fs_SubFS is an interface wrapper for SubFS type +type _io_fs_SubFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WSub func(dir string) (fs.FS, error) +} + +func (W _io_fs_SubFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_SubFS) Sub(dir string) (fs.FS, error) { + return W.WSub(dir) +} diff --git a/stdlib/go1_18_io_ioutil.go b/stdlib/go1_18_io_ioutil.go new file mode 100644 index 000000000..68e367db1 --- /dev/null +++ b/stdlib/go1_18_io_ioutil.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "io/ioutil" + "reflect" +) + +func init() { + Symbols["io/ioutil/ioutil"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Discard": reflect.ValueOf(&ioutil.Discard).Elem(), + "NopCloser": reflect.ValueOf(ioutil.NopCloser), + "ReadAll": reflect.ValueOf(ioutil.ReadAll), + "ReadDir": reflect.ValueOf(ioutil.ReadDir), + "ReadFile": reflect.ValueOf(ioutil.ReadFile), + "TempDir": reflect.ValueOf(ioutil.TempDir), + "TempFile": reflect.ValueOf(ioutil.TempFile), + "WriteFile": reflect.ValueOf(ioutil.WriteFile), + } +} diff --git a/stdlib/go1_18_log.go b/stdlib/go1_18_log.go new file mode 100644 index 000000000..e23bd89d4 --- /dev/null +++ b/stdlib/go1_18_log.go @@ -0,0 +1,48 @@ +// Code generated by 'yaegi extract log'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "log" + "reflect" +) + +func init() { + Symbols["log/log"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Default": reflect.ValueOf(log.Default), + "Fatal": reflect.ValueOf(logFatal), + "Fatalf": reflect.ValueOf(logFatalf), + "Fatalln": reflect.ValueOf(logFatalln), + "Flags": reflect.ValueOf(log.Flags), + "LUTC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Ldate": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Llongfile": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lmicroseconds": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Lmsgprefix": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Lshortfile": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "LstdFlags": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Ltime": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "New": reflect.ValueOf(logNew), + "Output": reflect.ValueOf(log.Output), + "Panic": reflect.ValueOf(log.Panic), + "Panicf": reflect.ValueOf(log.Panicf), + "Panicln": reflect.ValueOf(log.Panicln), + "Prefix": reflect.ValueOf(log.Prefix), + "Print": reflect.ValueOf(log.Print), + "Printf": reflect.ValueOf(log.Printf), + "Println": reflect.ValueOf(log.Println), + "SetFlags": reflect.ValueOf(log.SetFlags), + "SetOutput": reflect.ValueOf(log.SetOutput), + "SetPrefix": reflect.ValueOf(log.SetPrefix), + "Writer": reflect.ValueOf(log.Writer), + + // type definitions + "Logger": reflect.ValueOf((*logLogger)(nil)), + } +} diff --git a/stdlib/go1_18_log_syslog.go b/stdlib/go1_18_log_syslog.go new file mode 100644 index 000000000..7f24a1ac7 --- /dev/null +++ b/stdlib/go1_18_log_syslog.go @@ -0,0 +1,52 @@ +// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !windows && !nacl && !plan9 +// +build go1.18,!go1.19,!windows,!nacl,!plan9 + +package stdlib + +import ( + "log/syslog" + "reflect" +) + +func init() { + Symbols["log/syslog/syslog"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Dial": reflect.ValueOf(syslog.Dial), + "LOG_ALERT": reflect.ValueOf(syslog.LOG_ALERT), + "LOG_AUTH": reflect.ValueOf(syslog.LOG_AUTH), + "LOG_AUTHPRIV": reflect.ValueOf(syslog.LOG_AUTHPRIV), + "LOG_CRIT": reflect.ValueOf(syslog.LOG_CRIT), + "LOG_CRON": reflect.ValueOf(syslog.LOG_CRON), + "LOG_DAEMON": reflect.ValueOf(syslog.LOG_DAEMON), + "LOG_DEBUG": reflect.ValueOf(syslog.LOG_DEBUG), + "LOG_EMERG": reflect.ValueOf(syslog.LOG_EMERG), + "LOG_ERR": reflect.ValueOf(syslog.LOG_ERR), + "LOG_FTP": reflect.ValueOf(syslog.LOG_FTP), + "LOG_INFO": reflect.ValueOf(syslog.LOG_INFO), + "LOG_KERN": reflect.ValueOf(syslog.LOG_KERN), + "LOG_LOCAL0": reflect.ValueOf(syslog.LOG_LOCAL0), + "LOG_LOCAL1": reflect.ValueOf(syslog.LOG_LOCAL1), + "LOG_LOCAL2": reflect.ValueOf(syslog.LOG_LOCAL2), + "LOG_LOCAL3": reflect.ValueOf(syslog.LOG_LOCAL3), + "LOG_LOCAL4": reflect.ValueOf(syslog.LOG_LOCAL4), + "LOG_LOCAL5": reflect.ValueOf(syslog.LOG_LOCAL5), + "LOG_LOCAL6": reflect.ValueOf(syslog.LOG_LOCAL6), + "LOG_LOCAL7": reflect.ValueOf(syslog.LOG_LOCAL7), + "LOG_LPR": reflect.ValueOf(syslog.LOG_LPR), + "LOG_MAIL": reflect.ValueOf(syslog.LOG_MAIL), + "LOG_NEWS": reflect.ValueOf(syslog.LOG_NEWS), + "LOG_NOTICE": reflect.ValueOf(syslog.LOG_NOTICE), + "LOG_SYSLOG": reflect.ValueOf(syslog.LOG_SYSLOG), + "LOG_USER": reflect.ValueOf(syslog.LOG_USER), + "LOG_UUCP": reflect.ValueOf(syslog.LOG_UUCP), + "LOG_WARNING": reflect.ValueOf(syslog.LOG_WARNING), + "New": reflect.ValueOf(syslog.New), + "NewLogger": reflect.ValueOf(syslog.NewLogger), + + // type definitions + "Priority": reflect.ValueOf((*syslog.Priority)(nil)), + "Writer": reflect.ValueOf((*syslog.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_math.go b/stdlib/go1_18_math.go new file mode 100644 index 000000000..0a97f3238 --- /dev/null +++ b/stdlib/go1_18_math.go @@ -0,0 +1,116 @@ +// Code generated by 'yaegi extract math'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "math" + "reflect" +) + +func init() { + Symbols["math/math"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Abs": reflect.ValueOf(math.Abs), + "Acos": reflect.ValueOf(math.Acos), + "Acosh": reflect.ValueOf(math.Acosh), + "Asin": reflect.ValueOf(math.Asin), + "Asinh": reflect.ValueOf(math.Asinh), + "Atan": reflect.ValueOf(math.Atan), + "Atan2": reflect.ValueOf(math.Atan2), + "Atanh": reflect.ValueOf(math.Atanh), + "Cbrt": reflect.ValueOf(math.Cbrt), + "Ceil": reflect.ValueOf(math.Ceil), + "Copysign": reflect.ValueOf(math.Copysign), + "Cos": reflect.ValueOf(math.Cos), + "Cosh": reflect.ValueOf(math.Cosh), + "Dim": reflect.ValueOf(math.Dim), + "E": reflect.ValueOf(constant.MakeFromLiteral("2.71828182845904523536028747135266249775724709369995957496696762566337824315673231520670375558666729784504486779277967997696994772644702281675346915668215131895555530285035761295375777990557253360748291015625", token.FLOAT, 0)), + "Erf": reflect.ValueOf(math.Erf), + "Erfc": reflect.ValueOf(math.Erfc), + "Erfcinv": reflect.ValueOf(math.Erfcinv), + "Erfinv": reflect.ValueOf(math.Erfinv), + "Exp": reflect.ValueOf(math.Exp), + "Exp2": reflect.ValueOf(math.Exp2), + "Expm1": reflect.ValueOf(math.Expm1), + "FMA": reflect.ValueOf(math.FMA), + "Float32bits": reflect.ValueOf(math.Float32bits), + "Float32frombits": reflect.ValueOf(math.Float32frombits), + "Float64bits": reflect.ValueOf(math.Float64bits), + "Float64frombits": reflect.ValueOf(math.Float64frombits), + "Floor": reflect.ValueOf(math.Floor), + "Frexp": reflect.ValueOf(math.Frexp), + "Gamma": reflect.ValueOf(math.Gamma), + "Hypot": reflect.ValueOf(math.Hypot), + "Ilogb": reflect.ValueOf(math.Ilogb), + "Inf": reflect.ValueOf(math.Inf), + "IsInf": reflect.ValueOf(math.IsInf), + "IsNaN": reflect.ValueOf(math.IsNaN), + "J0": reflect.ValueOf(math.J0), + "J1": reflect.ValueOf(math.J1), + "Jn": reflect.ValueOf(math.Jn), + "Ldexp": reflect.ValueOf(math.Ldexp), + "Lgamma": reflect.ValueOf(math.Lgamma), + "Ln10": reflect.ValueOf(constant.MakeFromLiteral("2.30258509299404568401799145468436420760110148862877297603332784146804725494827975466552490443295866962642372461496758838959542646932914211937012833592062802600362869664962772731087170541286468505859375", token.FLOAT, 0)), + "Ln2": reflect.ValueOf(constant.MakeFromLiteral("0.6931471805599453094172321214581765680755001343602552541206800092715999496201383079363438206637927920954189307729314303884387720696314608777673678644642390655170150035209453154294578780536539852619171142578125", token.FLOAT, 0)), + "Log": reflect.ValueOf(math.Log), + "Log10": reflect.ValueOf(math.Log10), + "Log10E": reflect.ValueOf(constant.MakeFromLiteral("0.43429448190325182765112891891660508229439700580366656611445378416636798190620320263064286300825210972160277489744884502676719847561509639618196799746596688688378591625127711495224502868950366973876953125", token.FLOAT, 0)), + "Log1p": reflect.ValueOf(math.Log1p), + "Log2": reflect.ValueOf(math.Log2), + "Log2E": reflect.ValueOf(constant.MakeFromLiteral("1.44269504088896340735992468100189213742664595415298593413544940772066427768997545329060870636212628972710992130324953463427359402479619301286929040235571747101382214539290471666532766903401352465152740478515625", token.FLOAT, 0)), + "Logb": reflect.ValueOf(math.Logb), + "Max": reflect.ValueOf(math.Max), + "MaxFloat32": reflect.ValueOf(constant.MakeFromLiteral("340282346638528859811704183484516925440", token.FLOAT, 0)), + "MaxFloat64": reflect.ValueOf(constant.MakeFromLiteral("179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368", token.FLOAT, 0)), + "MaxInt": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "MaxInt16": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "MaxInt32": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "MaxInt64": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "MaxInt8": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "MaxUint": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), + "MaxUint16": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "MaxUint32": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "MaxUint64": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), + "MaxUint8": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "Min": reflect.ValueOf(math.Min), + "MinInt": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), + "MinInt16": reflect.ValueOf(constant.MakeFromLiteral("-32768", token.INT, 0)), + "MinInt32": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MinInt64": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), + "MinInt8": reflect.ValueOf(constant.MakeFromLiteral("-128", token.INT, 0)), + "Mod": reflect.ValueOf(math.Mod), + "Modf": reflect.ValueOf(math.Modf), + "NaN": reflect.ValueOf(math.NaN), + "Nextafter": reflect.ValueOf(math.Nextafter), + "Nextafter32": reflect.ValueOf(math.Nextafter32), + "Phi": reflect.ValueOf(constant.MakeFromLiteral("1.6180339887498948482045868343656381177203091798057628621354486119746080982153796619881086049305501566952211682590824739205931370737029882996587050475921915678674035433959321750307935872115194797515869140625", token.FLOAT, 0)), + "Pi": reflect.ValueOf(constant.MakeFromLiteral("3.141592653589793238462643383279502884197169399375105820974944594789982923695635954704435713335896673485663389728754819466702315787113662862838515639906529162340867271374644786874341662041842937469482421875", token.FLOAT, 0)), + "Pow": reflect.ValueOf(math.Pow), + "Pow10": reflect.ValueOf(math.Pow10), + "Remainder": reflect.ValueOf(math.Remainder), + "Round": reflect.ValueOf(math.Round), + "RoundToEven": reflect.ValueOf(math.RoundToEven), + "Signbit": reflect.ValueOf(math.Signbit), + "Sin": reflect.ValueOf(math.Sin), + "Sincos": reflect.ValueOf(math.Sincos), + "Sinh": reflect.ValueOf(math.Sinh), + "SmallestNonzeroFloat32": reflect.ValueOf(constant.MakeFromLiteral("1.40129846432481707092372958328991613128026194187651577175706828388979108268586060148663818836212158203125e-45", token.FLOAT, 0)), + "SmallestNonzeroFloat64": reflect.ValueOf(constant.MakeFromLiteral("4.940656458412465441765687928682213723650598026143247644255856825006755072702087518652998363616359923797965646954457177309266567103559397963987747960107818781263007131903114045278458171678489821036887186360569987307230500063874091535649843873124733972731696151400317153853980741262385655911710266585566867681870395603106249319452715914924553293054565444011274801297099995419319894090804165633245247571478690147267801593552386115501348035264934720193790268107107491703332226844753335720832431936092382893458368060106011506169809753078342277318329247904982524730776375927247874656084778203734469699533647017972677717585125660551199131504891101451037862738167250955837389733598993664809941164205702637090279242767544565229087538682506419718265533447265625e-324", token.FLOAT, 0)), + "Sqrt": reflect.ValueOf(math.Sqrt), + "Sqrt2": reflect.ValueOf(constant.MakeFromLiteral("1.414213562373095048801688724209698078569671875376948073176679739576083351575381440094441524123797447886801949755143139115339040409162552642832693297721230919563348109313505318596071447245776653289794921875", token.FLOAT, 0)), + "SqrtE": reflect.ValueOf(constant.MakeFromLiteral("1.64872127070012814684865078781416357165377610071014801157507931167328763229187870850146925823776361770041160388013884200789716007979526823569827080974091691342077871211546646890155898290686309337615966796875", token.FLOAT, 0)), + "SqrtPhi": reflect.ValueOf(constant.MakeFromLiteral("1.2720196495140689642524224617374914917156080418400962486166403754616080542166459302584536396369727769747312116100875915825863540562126478288118732191412003988041797518382391984914647764526307582855224609375", token.FLOAT, 0)), + "SqrtPi": reflect.ValueOf(constant.MakeFromLiteral("1.772453850905516027298167483341145182797549456122387128213807789740599698370237052541269446184448945647349951047154197675245574635259260134350885938555625028620527962319730619356050738133490085601806640625", token.FLOAT, 0)), + "Tan": reflect.ValueOf(math.Tan), + "Tanh": reflect.ValueOf(math.Tanh), + "Trunc": reflect.ValueOf(math.Trunc), + "Y0": reflect.ValueOf(math.Y0), + "Y1": reflect.ValueOf(math.Y1), + "Yn": reflect.ValueOf(math.Yn), + } +} diff --git a/stdlib/go1_18_math_big.go b/stdlib/go1_18_math_big.go new file mode 100644 index 000000000..f44cbaf5d --- /dev/null +++ b/stdlib/go1_18_math_big.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract math/big'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "math/big" + "reflect" +) + +func init() { + Symbols["math/big/big"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Above": reflect.ValueOf(big.Above), + "AwayFromZero": reflect.ValueOf(big.AwayFromZero), + "Below": reflect.ValueOf(big.Below), + "Exact": reflect.ValueOf(big.Exact), + "Jacobi": reflect.ValueOf(big.Jacobi), + "MaxBase": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "MaxExp": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "MaxPrec": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "MinExp": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "NewFloat": reflect.ValueOf(big.NewFloat), + "NewInt": reflect.ValueOf(big.NewInt), + "NewRat": reflect.ValueOf(big.NewRat), + "ParseFloat": reflect.ValueOf(big.ParseFloat), + "ToNearestAway": reflect.ValueOf(big.ToNearestAway), + "ToNearestEven": reflect.ValueOf(big.ToNearestEven), + "ToNegativeInf": reflect.ValueOf(big.ToNegativeInf), + "ToPositiveInf": reflect.ValueOf(big.ToPositiveInf), + "ToZero": reflect.ValueOf(big.ToZero), + + // type definitions + "Accuracy": reflect.ValueOf((*big.Accuracy)(nil)), + "ErrNaN": reflect.ValueOf((*big.ErrNaN)(nil)), + "Float": reflect.ValueOf((*big.Float)(nil)), + "Int": reflect.ValueOf((*big.Int)(nil)), + "Rat": reflect.ValueOf((*big.Rat)(nil)), + "RoundingMode": reflect.ValueOf((*big.RoundingMode)(nil)), + "Word": reflect.ValueOf((*big.Word)(nil)), + } +} diff --git a/stdlib/go1_18_math_bits.go b/stdlib/go1_18_math_bits.go new file mode 100644 index 000000000..bc168685f --- /dev/null +++ b/stdlib/go1_18_math_bits.go @@ -0,0 +1,69 @@ +// Code generated by 'yaegi extract math/bits'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "math/bits" + "reflect" +) + +func init() { + Symbols["math/bits/bits"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Add": reflect.ValueOf(bits.Add), + "Add32": reflect.ValueOf(bits.Add32), + "Add64": reflect.ValueOf(bits.Add64), + "Div": reflect.ValueOf(bits.Div), + "Div32": reflect.ValueOf(bits.Div32), + "Div64": reflect.ValueOf(bits.Div64), + "LeadingZeros": reflect.ValueOf(bits.LeadingZeros), + "LeadingZeros16": reflect.ValueOf(bits.LeadingZeros16), + "LeadingZeros32": reflect.ValueOf(bits.LeadingZeros32), + "LeadingZeros64": reflect.ValueOf(bits.LeadingZeros64), + "LeadingZeros8": reflect.ValueOf(bits.LeadingZeros8), + "Len": reflect.ValueOf(bits.Len), + "Len16": reflect.ValueOf(bits.Len16), + "Len32": reflect.ValueOf(bits.Len32), + "Len64": reflect.ValueOf(bits.Len64), + "Len8": reflect.ValueOf(bits.Len8), + "Mul": reflect.ValueOf(bits.Mul), + "Mul32": reflect.ValueOf(bits.Mul32), + "Mul64": reflect.ValueOf(bits.Mul64), + "OnesCount": reflect.ValueOf(bits.OnesCount), + "OnesCount16": reflect.ValueOf(bits.OnesCount16), + "OnesCount32": reflect.ValueOf(bits.OnesCount32), + "OnesCount64": reflect.ValueOf(bits.OnesCount64), + "OnesCount8": reflect.ValueOf(bits.OnesCount8), + "Rem": reflect.ValueOf(bits.Rem), + "Rem32": reflect.ValueOf(bits.Rem32), + "Rem64": reflect.ValueOf(bits.Rem64), + "Reverse": reflect.ValueOf(bits.Reverse), + "Reverse16": reflect.ValueOf(bits.Reverse16), + "Reverse32": reflect.ValueOf(bits.Reverse32), + "Reverse64": reflect.ValueOf(bits.Reverse64), + "Reverse8": reflect.ValueOf(bits.Reverse8), + "ReverseBytes": reflect.ValueOf(bits.ReverseBytes), + "ReverseBytes16": reflect.ValueOf(bits.ReverseBytes16), + "ReverseBytes32": reflect.ValueOf(bits.ReverseBytes32), + "ReverseBytes64": reflect.ValueOf(bits.ReverseBytes64), + "RotateLeft": reflect.ValueOf(bits.RotateLeft), + "RotateLeft16": reflect.ValueOf(bits.RotateLeft16), + "RotateLeft32": reflect.ValueOf(bits.RotateLeft32), + "RotateLeft64": reflect.ValueOf(bits.RotateLeft64), + "RotateLeft8": reflect.ValueOf(bits.RotateLeft8), + "Sub": reflect.ValueOf(bits.Sub), + "Sub32": reflect.ValueOf(bits.Sub32), + "Sub64": reflect.ValueOf(bits.Sub64), + "TrailingZeros": reflect.ValueOf(bits.TrailingZeros), + "TrailingZeros16": reflect.ValueOf(bits.TrailingZeros16), + "TrailingZeros32": reflect.ValueOf(bits.TrailingZeros32), + "TrailingZeros64": reflect.ValueOf(bits.TrailingZeros64), + "TrailingZeros8": reflect.ValueOf(bits.TrailingZeros8), + "UintSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + } +} diff --git a/stdlib/go1_18_math_cmplx.go b/stdlib/go1_18_math_cmplx.go new file mode 100644 index 000000000..2690b732f --- /dev/null +++ b/stdlib/go1_18_math_cmplx.go @@ -0,0 +1,44 @@ +// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "math/cmplx" + "reflect" +) + +func init() { + Symbols["math/cmplx/cmplx"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Abs": reflect.ValueOf(cmplx.Abs), + "Acos": reflect.ValueOf(cmplx.Acos), + "Acosh": reflect.ValueOf(cmplx.Acosh), + "Asin": reflect.ValueOf(cmplx.Asin), + "Asinh": reflect.ValueOf(cmplx.Asinh), + "Atan": reflect.ValueOf(cmplx.Atan), + "Atanh": reflect.ValueOf(cmplx.Atanh), + "Conj": reflect.ValueOf(cmplx.Conj), + "Cos": reflect.ValueOf(cmplx.Cos), + "Cosh": reflect.ValueOf(cmplx.Cosh), + "Cot": reflect.ValueOf(cmplx.Cot), + "Exp": reflect.ValueOf(cmplx.Exp), + "Inf": reflect.ValueOf(cmplx.Inf), + "IsInf": reflect.ValueOf(cmplx.IsInf), + "IsNaN": reflect.ValueOf(cmplx.IsNaN), + "Log": reflect.ValueOf(cmplx.Log), + "Log10": reflect.ValueOf(cmplx.Log10), + "NaN": reflect.ValueOf(cmplx.NaN), + "Phase": reflect.ValueOf(cmplx.Phase), + "Polar": reflect.ValueOf(cmplx.Polar), + "Pow": reflect.ValueOf(cmplx.Pow), + "Rect": reflect.ValueOf(cmplx.Rect), + "Sin": reflect.ValueOf(cmplx.Sin), + "Sinh": reflect.ValueOf(cmplx.Sinh), + "Sqrt": reflect.ValueOf(cmplx.Sqrt), + "Tan": reflect.ValueOf(cmplx.Tan), + "Tanh": reflect.ValueOf(cmplx.Tanh), + } +} diff --git a/stdlib/go1_18_math_rand.go b/stdlib/go1_18_math_rand.go new file mode 100644 index 000000000..a366900cc --- /dev/null +++ b/stdlib/go1_18_math_rand.go @@ -0,0 +1,78 @@ +// Code generated by 'yaegi extract math/rand'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "math/rand" + "reflect" +) + +func init() { + Symbols["math/rand/rand"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ExpFloat64": reflect.ValueOf(rand.ExpFloat64), + "Float32": reflect.ValueOf(rand.Float32), + "Float64": reflect.ValueOf(rand.Float64), + "Int": reflect.ValueOf(rand.Int), + "Int31": reflect.ValueOf(rand.Int31), + "Int31n": reflect.ValueOf(rand.Int31n), + "Int63": reflect.ValueOf(rand.Int63), + "Int63n": reflect.ValueOf(rand.Int63n), + "Intn": reflect.ValueOf(rand.Intn), + "New": reflect.ValueOf(rand.New), + "NewSource": reflect.ValueOf(rand.NewSource), + "NewZipf": reflect.ValueOf(rand.NewZipf), + "NormFloat64": reflect.ValueOf(rand.NormFloat64), + "Perm": reflect.ValueOf(rand.Perm), + "Read": reflect.ValueOf(rand.Read), + "Seed": reflect.ValueOf(rand.Seed), + "Shuffle": reflect.ValueOf(rand.Shuffle), + "Uint32": reflect.ValueOf(rand.Uint32), + "Uint64": reflect.ValueOf(rand.Uint64), + + // type definitions + "Rand": reflect.ValueOf((*rand.Rand)(nil)), + "Source": reflect.ValueOf((*rand.Source)(nil)), + "Source64": reflect.ValueOf((*rand.Source64)(nil)), + "Zipf": reflect.ValueOf((*rand.Zipf)(nil)), + + // interface wrapper definitions + "_Source": reflect.ValueOf((*_math_rand_Source)(nil)), + "_Source64": reflect.ValueOf((*_math_rand_Source64)(nil)), + } +} + +// _math_rand_Source is an interface wrapper for Source type +type _math_rand_Source struct { + IValue interface{} + WInt63 func() int64 + WSeed func(seed int64) +} + +func (W _math_rand_Source) Int63() int64 { + return W.WInt63() +} +func (W _math_rand_Source) Seed(seed int64) { + W.WSeed(seed) +} + +// _math_rand_Source64 is an interface wrapper for Source64 type +type _math_rand_Source64 struct { + IValue interface{} + WInt63 func() int64 + WSeed func(seed int64) + WUint64 func() uint64 +} + +func (W _math_rand_Source64) Int63() int64 { + return W.WInt63() +} +func (W _math_rand_Source64) Seed(seed int64) { + W.WSeed(seed) +} +func (W _math_rand_Source64) Uint64() uint64 { + return W.WUint64() +} diff --git a/stdlib/go1_18_mime.go b/stdlib/go1_18_mime.go new file mode 100644 index 000000000..70b456d19 --- /dev/null +++ b/stdlib/go1_18_mime.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract mime'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "mime" + "reflect" +) + +func init() { + Symbols["mime/mime"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AddExtensionType": reflect.ValueOf(mime.AddExtensionType), + "BEncoding": reflect.ValueOf(mime.BEncoding), + "ErrInvalidMediaParameter": reflect.ValueOf(&mime.ErrInvalidMediaParameter).Elem(), + "ExtensionsByType": reflect.ValueOf(mime.ExtensionsByType), + "FormatMediaType": reflect.ValueOf(mime.FormatMediaType), + "ParseMediaType": reflect.ValueOf(mime.ParseMediaType), + "QEncoding": reflect.ValueOf(mime.QEncoding), + "TypeByExtension": reflect.ValueOf(mime.TypeByExtension), + + // type definitions + "WordDecoder": reflect.ValueOf((*mime.WordDecoder)(nil)), + "WordEncoder": reflect.ValueOf((*mime.WordEncoder)(nil)), + } +} diff --git a/stdlib/go1_18_mime_multipart.go b/stdlib/go1_18_mime_multipart.go new file mode 100644 index 000000000..88148775b --- /dev/null +++ b/stdlib/go1_18_mime_multipart.go @@ -0,0 +1,53 @@ +// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "mime/multipart" + "reflect" +) + +func init() { + Symbols["mime/multipart/multipart"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrMessageTooLarge": reflect.ValueOf(&multipart.ErrMessageTooLarge).Elem(), + "NewReader": reflect.ValueOf(multipart.NewReader), + "NewWriter": reflect.ValueOf(multipart.NewWriter), + + // type definitions + "File": reflect.ValueOf((*multipart.File)(nil)), + "FileHeader": reflect.ValueOf((*multipart.FileHeader)(nil)), + "Form": reflect.ValueOf((*multipart.Form)(nil)), + "Part": reflect.ValueOf((*multipart.Part)(nil)), + "Reader": reflect.ValueOf((*multipart.Reader)(nil)), + "Writer": reflect.ValueOf((*multipart.Writer)(nil)), + + // interface wrapper definitions + "_File": reflect.ValueOf((*_mime_multipart_File)(nil)), + } +} + +// _mime_multipart_File is an interface wrapper for File type +type _mime_multipart_File struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WReadAt func(p []byte, off int64) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _mime_multipart_File) Close() error { + return W.WClose() +} +func (W _mime_multipart_File) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _mime_multipart_File) ReadAt(p []byte, off int64) (n int, err error) { + return W.WReadAt(p, off) +} +func (W _mime_multipart_File) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} diff --git a/stdlib/go1_18_mime_quotedprintable.go b/stdlib/go1_18_mime_quotedprintable.go new file mode 100644 index 000000000..264a3723b --- /dev/null +++ b/stdlib/go1_18_mime_quotedprintable.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "mime/quotedprintable" + "reflect" +) + +func init() { + Symbols["mime/quotedprintable/quotedprintable"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewReader": reflect.ValueOf(quotedprintable.NewReader), + "NewWriter": reflect.ValueOf(quotedprintable.NewWriter), + + // type definitions + "Reader": reflect.ValueOf((*quotedprintable.Reader)(nil)), + "Writer": reflect.ValueOf((*quotedprintable.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_net.go b/stdlib/go1_18_net.go new file mode 100644 index 000000000..b40ddb3e7 --- /dev/null +++ b/stdlib/go1_18_net.go @@ -0,0 +1,254 @@ +// Code generated by 'yaegi extract net'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "net" + "reflect" + "time" +) + +func init() { + Symbols["net/net"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CIDRMask": reflect.ValueOf(net.CIDRMask), + "DefaultResolver": reflect.ValueOf(&net.DefaultResolver).Elem(), + "Dial": reflect.ValueOf(net.Dial), + "DialIP": reflect.ValueOf(net.DialIP), + "DialTCP": reflect.ValueOf(net.DialTCP), + "DialTimeout": reflect.ValueOf(net.DialTimeout), + "DialUDP": reflect.ValueOf(net.DialUDP), + "DialUnix": reflect.ValueOf(net.DialUnix), + "ErrClosed": reflect.ValueOf(&net.ErrClosed).Elem(), + "ErrWriteToConnected": reflect.ValueOf(&net.ErrWriteToConnected).Elem(), + "FileConn": reflect.ValueOf(net.FileConn), + "FileListener": reflect.ValueOf(net.FileListener), + "FilePacketConn": reflect.ValueOf(net.FilePacketConn), + "FlagBroadcast": reflect.ValueOf(net.FlagBroadcast), + "FlagLoopback": reflect.ValueOf(net.FlagLoopback), + "FlagMulticast": reflect.ValueOf(net.FlagMulticast), + "FlagPointToPoint": reflect.ValueOf(net.FlagPointToPoint), + "FlagUp": reflect.ValueOf(net.FlagUp), + "IPv4": reflect.ValueOf(net.IPv4), + "IPv4Mask": reflect.ValueOf(net.IPv4Mask), + "IPv4allrouter": reflect.ValueOf(&net.IPv4allrouter).Elem(), + "IPv4allsys": reflect.ValueOf(&net.IPv4allsys).Elem(), + "IPv4bcast": reflect.ValueOf(&net.IPv4bcast).Elem(), + "IPv4len": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPv4zero": reflect.ValueOf(&net.IPv4zero).Elem(), + "IPv6interfacelocalallnodes": reflect.ValueOf(&net.IPv6interfacelocalallnodes).Elem(), + "IPv6len": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPv6linklocalallnodes": reflect.ValueOf(&net.IPv6linklocalallnodes).Elem(), + "IPv6linklocalallrouters": reflect.ValueOf(&net.IPv6linklocalallrouters).Elem(), + "IPv6loopback": reflect.ValueOf(&net.IPv6loopback).Elem(), + "IPv6unspecified": reflect.ValueOf(&net.IPv6unspecified).Elem(), + "IPv6zero": reflect.ValueOf(&net.IPv6zero).Elem(), + "InterfaceAddrs": reflect.ValueOf(net.InterfaceAddrs), + "InterfaceByIndex": reflect.ValueOf(net.InterfaceByIndex), + "InterfaceByName": reflect.ValueOf(net.InterfaceByName), + "Interfaces": reflect.ValueOf(net.Interfaces), + "JoinHostPort": reflect.ValueOf(net.JoinHostPort), + "Listen": reflect.ValueOf(net.Listen), + "ListenIP": reflect.ValueOf(net.ListenIP), + "ListenMulticastUDP": reflect.ValueOf(net.ListenMulticastUDP), + "ListenPacket": reflect.ValueOf(net.ListenPacket), + "ListenTCP": reflect.ValueOf(net.ListenTCP), + "ListenUDP": reflect.ValueOf(net.ListenUDP), + "ListenUnix": reflect.ValueOf(net.ListenUnix), + "ListenUnixgram": reflect.ValueOf(net.ListenUnixgram), + "LookupAddr": reflect.ValueOf(net.LookupAddr), + "LookupCNAME": reflect.ValueOf(net.LookupCNAME), + "LookupHost": reflect.ValueOf(net.LookupHost), + "LookupIP": reflect.ValueOf(net.LookupIP), + "LookupMX": reflect.ValueOf(net.LookupMX), + "LookupNS": reflect.ValueOf(net.LookupNS), + "LookupPort": reflect.ValueOf(net.LookupPort), + "LookupSRV": reflect.ValueOf(net.LookupSRV), + "LookupTXT": reflect.ValueOf(net.LookupTXT), + "ParseCIDR": reflect.ValueOf(net.ParseCIDR), + "ParseIP": reflect.ValueOf(net.ParseIP), + "ParseMAC": reflect.ValueOf(net.ParseMAC), + "Pipe": reflect.ValueOf(net.Pipe), + "ResolveIPAddr": reflect.ValueOf(net.ResolveIPAddr), + "ResolveTCPAddr": reflect.ValueOf(net.ResolveTCPAddr), + "ResolveUDPAddr": reflect.ValueOf(net.ResolveUDPAddr), + "ResolveUnixAddr": reflect.ValueOf(net.ResolveUnixAddr), + "SplitHostPort": reflect.ValueOf(net.SplitHostPort), + "TCPAddrFromAddrPort": reflect.ValueOf(net.TCPAddrFromAddrPort), + "UDPAddrFromAddrPort": reflect.ValueOf(net.UDPAddrFromAddrPort), + + // type definitions + "Addr": reflect.ValueOf((*net.Addr)(nil)), + "AddrError": reflect.ValueOf((*net.AddrError)(nil)), + "Buffers": reflect.ValueOf((*net.Buffers)(nil)), + "Conn": reflect.ValueOf((*net.Conn)(nil)), + "DNSConfigError": reflect.ValueOf((*net.DNSConfigError)(nil)), + "DNSError": reflect.ValueOf((*net.DNSError)(nil)), + "Dialer": reflect.ValueOf((*net.Dialer)(nil)), + "Error": reflect.ValueOf((*net.Error)(nil)), + "Flags": reflect.ValueOf((*net.Flags)(nil)), + "HardwareAddr": reflect.ValueOf((*net.HardwareAddr)(nil)), + "IP": reflect.ValueOf((*net.IP)(nil)), + "IPAddr": reflect.ValueOf((*net.IPAddr)(nil)), + "IPConn": reflect.ValueOf((*net.IPConn)(nil)), + "IPMask": reflect.ValueOf((*net.IPMask)(nil)), + "IPNet": reflect.ValueOf((*net.IPNet)(nil)), + "Interface": reflect.ValueOf((*net.Interface)(nil)), + "InvalidAddrError": reflect.ValueOf((*net.InvalidAddrError)(nil)), + "ListenConfig": reflect.ValueOf((*net.ListenConfig)(nil)), + "Listener": reflect.ValueOf((*net.Listener)(nil)), + "MX": reflect.ValueOf((*net.MX)(nil)), + "NS": reflect.ValueOf((*net.NS)(nil)), + "OpError": reflect.ValueOf((*net.OpError)(nil)), + "PacketConn": reflect.ValueOf((*net.PacketConn)(nil)), + "ParseError": reflect.ValueOf((*net.ParseError)(nil)), + "Resolver": reflect.ValueOf((*net.Resolver)(nil)), + "SRV": reflect.ValueOf((*net.SRV)(nil)), + "TCPAddr": reflect.ValueOf((*net.TCPAddr)(nil)), + "TCPConn": reflect.ValueOf((*net.TCPConn)(nil)), + "TCPListener": reflect.ValueOf((*net.TCPListener)(nil)), + "UDPAddr": reflect.ValueOf((*net.UDPAddr)(nil)), + "UDPConn": reflect.ValueOf((*net.UDPConn)(nil)), + "UnixAddr": reflect.ValueOf((*net.UnixAddr)(nil)), + "UnixConn": reflect.ValueOf((*net.UnixConn)(nil)), + "UnixListener": reflect.ValueOf((*net.UnixListener)(nil)), + "UnknownNetworkError": reflect.ValueOf((*net.UnknownNetworkError)(nil)), + + // interface wrapper definitions + "_Addr": reflect.ValueOf((*_net_Addr)(nil)), + "_Conn": reflect.ValueOf((*_net_Conn)(nil)), + "_Error": reflect.ValueOf((*_net_Error)(nil)), + "_Listener": reflect.ValueOf((*_net_Listener)(nil)), + "_PacketConn": reflect.ValueOf((*_net_PacketConn)(nil)), + } +} + +// _net_Addr is an interface wrapper for Addr type +type _net_Addr struct { + IValue interface{} + WNetwork func() string + WString func() string +} + +func (W _net_Addr) Network() string { + return W.WNetwork() +} +func (W _net_Addr) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} + +// _net_Conn is an interface wrapper for Conn type +type _net_Conn struct { + IValue interface{} + WClose func() error + WLocalAddr func() net.Addr + WRead func(b []byte) (n int, err error) + WRemoteAddr func() net.Addr + WSetDeadline func(t time.Time) error + WSetReadDeadline func(t time.Time) error + WSetWriteDeadline func(t time.Time) error + WWrite func(b []byte) (n int, err error) +} + +func (W _net_Conn) Close() error { + return W.WClose() +} +func (W _net_Conn) LocalAddr() net.Addr { + return W.WLocalAddr() +} +func (W _net_Conn) Read(b []byte) (n int, err error) { + return W.WRead(b) +} +func (W _net_Conn) RemoteAddr() net.Addr { + return W.WRemoteAddr() +} +func (W _net_Conn) SetDeadline(t time.Time) error { + return W.WSetDeadline(t) +} +func (W _net_Conn) SetReadDeadline(t time.Time) error { + return W.WSetReadDeadline(t) +} +func (W _net_Conn) SetWriteDeadline(t time.Time) error { + return W.WSetWriteDeadline(t) +} +func (W _net_Conn) Write(b []byte) (n int, err error) { + return W.WWrite(b) +} + +// _net_Error is an interface wrapper for Error type +type _net_Error struct { + IValue interface{} + WError func() string + WTemporary func() bool + WTimeout func() bool +} + +func (W _net_Error) Error() string { + return W.WError() +} +func (W _net_Error) Temporary() bool { + return W.WTemporary() +} +func (W _net_Error) Timeout() bool { + return W.WTimeout() +} + +// _net_Listener is an interface wrapper for Listener type +type _net_Listener struct { + IValue interface{} + WAccept func() (net.Conn, error) + WAddr func() net.Addr + WClose func() error +} + +func (W _net_Listener) Accept() (net.Conn, error) { + return W.WAccept() +} +func (W _net_Listener) Addr() net.Addr { + return W.WAddr() +} +func (W _net_Listener) Close() error { + return W.WClose() +} + +// _net_PacketConn is an interface wrapper for PacketConn type +type _net_PacketConn struct { + IValue interface{} + WClose func() error + WLocalAddr func() net.Addr + WReadFrom func(p []byte) (n int, addr net.Addr, err error) + WSetDeadline func(t time.Time) error + WSetReadDeadline func(t time.Time) error + WSetWriteDeadline func(t time.Time) error + WWriteTo func(p []byte, addr net.Addr) (n int, err error) +} + +func (W _net_PacketConn) Close() error { + return W.WClose() +} +func (W _net_PacketConn) LocalAddr() net.Addr { + return W.WLocalAddr() +} +func (W _net_PacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { + return W.WReadFrom(p) +} +func (W _net_PacketConn) SetDeadline(t time.Time) error { + return W.WSetDeadline(t) +} +func (W _net_PacketConn) SetReadDeadline(t time.Time) error { + return W.WSetReadDeadline(t) +} +func (W _net_PacketConn) SetWriteDeadline(t time.Time) error { + return W.WSetWriteDeadline(t) +} +func (W _net_PacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) { + return W.WWriteTo(p, addr) +} diff --git a/stdlib/go1_18_net_http.go b/stdlib/go1_18_net_http.go new file mode 100644 index 000000000..eee808ac5 --- /dev/null +++ b/stdlib/go1_18_net_http.go @@ -0,0 +1,338 @@ +// Code generated by 'yaegi extract net/http'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "bufio" + "go/constant" + "go/token" + "io/fs" + "net" + "net/http" + "net/url" + "reflect" +) + +func init() { + Symbols["net/http/http"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllowQuerySemicolons": reflect.ValueOf(http.AllowQuerySemicolons), + "CanonicalHeaderKey": reflect.ValueOf(http.CanonicalHeaderKey), + "DefaultClient": reflect.ValueOf(&http.DefaultClient).Elem(), + "DefaultMaxHeaderBytes": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "DefaultMaxIdleConnsPerHost": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DefaultServeMux": reflect.ValueOf(&http.DefaultServeMux).Elem(), + "DefaultTransport": reflect.ValueOf(&http.DefaultTransport).Elem(), + "DetectContentType": reflect.ValueOf(http.DetectContentType), + "ErrAbortHandler": reflect.ValueOf(&http.ErrAbortHandler).Elem(), + "ErrBodyNotAllowed": reflect.ValueOf(&http.ErrBodyNotAllowed).Elem(), + "ErrBodyReadAfterClose": reflect.ValueOf(&http.ErrBodyReadAfterClose).Elem(), + "ErrContentLength": reflect.ValueOf(&http.ErrContentLength).Elem(), + "ErrHandlerTimeout": reflect.ValueOf(&http.ErrHandlerTimeout).Elem(), + "ErrHeaderTooLong": reflect.ValueOf(&http.ErrHeaderTooLong).Elem(), + "ErrHijacked": reflect.ValueOf(&http.ErrHijacked).Elem(), + "ErrLineTooLong": reflect.ValueOf(&http.ErrLineTooLong).Elem(), + "ErrMissingBoundary": reflect.ValueOf(&http.ErrMissingBoundary).Elem(), + "ErrMissingContentLength": reflect.ValueOf(&http.ErrMissingContentLength).Elem(), + "ErrMissingFile": reflect.ValueOf(&http.ErrMissingFile).Elem(), + "ErrNoCookie": reflect.ValueOf(&http.ErrNoCookie).Elem(), + "ErrNoLocation": reflect.ValueOf(&http.ErrNoLocation).Elem(), + "ErrNotMultipart": reflect.ValueOf(&http.ErrNotMultipart).Elem(), + "ErrNotSupported": reflect.ValueOf(&http.ErrNotSupported).Elem(), + "ErrServerClosed": reflect.ValueOf(&http.ErrServerClosed).Elem(), + "ErrShortBody": reflect.ValueOf(&http.ErrShortBody).Elem(), + "ErrSkipAltProtocol": reflect.ValueOf(&http.ErrSkipAltProtocol).Elem(), + "ErrUnexpectedTrailer": reflect.ValueOf(&http.ErrUnexpectedTrailer).Elem(), + "ErrUseLastResponse": reflect.ValueOf(&http.ErrUseLastResponse).Elem(), + "ErrWriteAfterFlush": reflect.ValueOf(&http.ErrWriteAfterFlush).Elem(), + "Error": reflect.ValueOf(http.Error), + "FS": reflect.ValueOf(http.FS), + "FileServer": reflect.ValueOf(http.FileServer), + "Get": reflect.ValueOf(http.Get), + "Handle": reflect.ValueOf(http.Handle), + "HandleFunc": reflect.ValueOf(http.HandleFunc), + "Head": reflect.ValueOf(http.Head), + "ListenAndServe": reflect.ValueOf(http.ListenAndServe), + "ListenAndServeTLS": reflect.ValueOf(http.ListenAndServeTLS), + "LocalAddrContextKey": reflect.ValueOf(&http.LocalAddrContextKey).Elem(), + "MaxBytesHandler": reflect.ValueOf(http.MaxBytesHandler), + "MaxBytesReader": reflect.ValueOf(http.MaxBytesReader), + "MethodConnect": reflect.ValueOf(constant.MakeFromLiteral("\"CONNECT\"", token.STRING, 0)), + "MethodDelete": reflect.ValueOf(constant.MakeFromLiteral("\"DELETE\"", token.STRING, 0)), + "MethodGet": reflect.ValueOf(constant.MakeFromLiteral("\"GET\"", token.STRING, 0)), + "MethodHead": reflect.ValueOf(constant.MakeFromLiteral("\"HEAD\"", token.STRING, 0)), + "MethodOptions": reflect.ValueOf(constant.MakeFromLiteral("\"OPTIONS\"", token.STRING, 0)), + "MethodPatch": reflect.ValueOf(constant.MakeFromLiteral("\"PATCH\"", token.STRING, 0)), + "MethodPost": reflect.ValueOf(constant.MakeFromLiteral("\"POST\"", token.STRING, 0)), + "MethodPut": reflect.ValueOf(constant.MakeFromLiteral("\"PUT\"", token.STRING, 0)), + "MethodTrace": reflect.ValueOf(constant.MakeFromLiteral("\"TRACE\"", token.STRING, 0)), + "NewFileTransport": reflect.ValueOf(http.NewFileTransport), + "NewRequest": reflect.ValueOf(http.NewRequest), + "NewRequestWithContext": reflect.ValueOf(http.NewRequestWithContext), + "NewServeMux": reflect.ValueOf(http.NewServeMux), + "NoBody": reflect.ValueOf(&http.NoBody).Elem(), + "NotFound": reflect.ValueOf(http.NotFound), + "NotFoundHandler": reflect.ValueOf(http.NotFoundHandler), + "ParseHTTPVersion": reflect.ValueOf(http.ParseHTTPVersion), + "ParseTime": reflect.ValueOf(http.ParseTime), + "Post": reflect.ValueOf(http.Post), + "PostForm": reflect.ValueOf(http.PostForm), + "ProxyFromEnvironment": reflect.ValueOf(http.ProxyFromEnvironment), + "ProxyURL": reflect.ValueOf(http.ProxyURL), + "ReadRequest": reflect.ValueOf(http.ReadRequest), + "ReadResponse": reflect.ValueOf(http.ReadResponse), + "Redirect": reflect.ValueOf(http.Redirect), + "RedirectHandler": reflect.ValueOf(http.RedirectHandler), + "SameSiteDefaultMode": reflect.ValueOf(http.SameSiteDefaultMode), + "SameSiteLaxMode": reflect.ValueOf(http.SameSiteLaxMode), + "SameSiteNoneMode": reflect.ValueOf(http.SameSiteNoneMode), + "SameSiteStrictMode": reflect.ValueOf(http.SameSiteStrictMode), + "Serve": reflect.ValueOf(http.Serve), + "ServeContent": reflect.ValueOf(http.ServeContent), + "ServeFile": reflect.ValueOf(http.ServeFile), + "ServeTLS": reflect.ValueOf(http.ServeTLS), + "ServerContextKey": reflect.ValueOf(&http.ServerContextKey).Elem(), + "SetCookie": reflect.ValueOf(http.SetCookie), + "StateActive": reflect.ValueOf(http.StateActive), + "StateClosed": reflect.ValueOf(http.StateClosed), + "StateHijacked": reflect.ValueOf(http.StateHijacked), + "StateIdle": reflect.ValueOf(http.StateIdle), + "StateNew": reflect.ValueOf(http.StateNew), + "StatusAccepted": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "StatusAlreadyReported": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "StatusBadGateway": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "StatusBadRequest": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "StatusConflict": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "StatusContinue": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "StatusCreated": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "StatusEarlyHints": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "StatusExpectationFailed": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "StatusFailedDependency": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "StatusForbidden": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "StatusFound": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "StatusGatewayTimeout": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "StatusGone": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "StatusHTTPVersionNotSupported": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), + "StatusIMUsed": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "StatusInsufficientStorage": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "StatusInternalServerError": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "StatusLengthRequired": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "StatusLocked": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "StatusLoopDetected": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "StatusMethodNotAllowed": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "StatusMisdirectedRequest": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "StatusMovedPermanently": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "StatusMultiStatus": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "StatusMultipleChoices": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "StatusNetworkAuthenticationRequired": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "StatusNoContent": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "StatusNonAuthoritativeInfo": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "StatusNotAcceptable": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "StatusNotExtended": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), + "StatusNotFound": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "StatusNotImplemented": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "StatusNotModified": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "StatusOK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "StatusPartialContent": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "StatusPaymentRequired": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "StatusPermanentRedirect": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "StatusPreconditionFailed": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "StatusPreconditionRequired": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "StatusProcessing": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "StatusProxyAuthRequired": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "StatusRequestEntityTooLarge": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "StatusRequestHeaderFieldsTooLarge": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "StatusRequestTimeout": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "StatusRequestURITooLong": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "StatusRequestedRangeNotSatisfiable": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "StatusResetContent": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "StatusSeeOther": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "StatusServiceUnavailable": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "StatusSwitchingProtocols": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "StatusTeapot": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "StatusTemporaryRedirect": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "StatusText": reflect.ValueOf(http.StatusText), + "StatusTooEarly": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "StatusTooManyRequests": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "StatusUnauthorized": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "StatusUnavailableForLegalReasons": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "StatusUnprocessableEntity": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "StatusUnsupportedMediaType": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "StatusUpgradeRequired": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "StatusUseProxy": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "StatusVariantAlsoNegotiates": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "StripPrefix": reflect.ValueOf(http.StripPrefix), + "TimeFormat": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 GMT\"", token.STRING, 0)), + "TimeoutHandler": reflect.ValueOf(http.TimeoutHandler), + "TrailerPrefix": reflect.ValueOf(constant.MakeFromLiteral("\"Trailer:\"", token.STRING, 0)), + + // type definitions + "Client": reflect.ValueOf((*http.Client)(nil)), + "CloseNotifier": reflect.ValueOf((*http.CloseNotifier)(nil)), + "ConnState": reflect.ValueOf((*http.ConnState)(nil)), + "Cookie": reflect.ValueOf((*http.Cookie)(nil)), + "CookieJar": reflect.ValueOf((*http.CookieJar)(nil)), + "Dir": reflect.ValueOf((*http.Dir)(nil)), + "File": reflect.ValueOf((*http.File)(nil)), + "FileSystem": reflect.ValueOf((*http.FileSystem)(nil)), + "Flusher": reflect.ValueOf((*http.Flusher)(nil)), + "Handler": reflect.ValueOf((*http.Handler)(nil)), + "HandlerFunc": reflect.ValueOf((*http.HandlerFunc)(nil)), + "Header": reflect.ValueOf((*http.Header)(nil)), + "Hijacker": reflect.ValueOf((*http.Hijacker)(nil)), + "ProtocolError": reflect.ValueOf((*http.ProtocolError)(nil)), + "PushOptions": reflect.ValueOf((*http.PushOptions)(nil)), + "Pusher": reflect.ValueOf((*http.Pusher)(nil)), + "Request": reflect.ValueOf((*http.Request)(nil)), + "Response": reflect.ValueOf((*http.Response)(nil)), + "ResponseWriter": reflect.ValueOf((*http.ResponseWriter)(nil)), + "RoundTripper": reflect.ValueOf((*http.RoundTripper)(nil)), + "SameSite": reflect.ValueOf((*http.SameSite)(nil)), + "ServeMux": reflect.ValueOf((*http.ServeMux)(nil)), + "Server": reflect.ValueOf((*http.Server)(nil)), + "Transport": reflect.ValueOf((*http.Transport)(nil)), + + // interface wrapper definitions + "_CloseNotifier": reflect.ValueOf((*_net_http_CloseNotifier)(nil)), + "_CookieJar": reflect.ValueOf((*_net_http_CookieJar)(nil)), + "_File": reflect.ValueOf((*_net_http_File)(nil)), + "_FileSystem": reflect.ValueOf((*_net_http_FileSystem)(nil)), + "_Flusher": reflect.ValueOf((*_net_http_Flusher)(nil)), + "_Handler": reflect.ValueOf((*_net_http_Handler)(nil)), + "_Hijacker": reflect.ValueOf((*_net_http_Hijacker)(nil)), + "_Pusher": reflect.ValueOf((*_net_http_Pusher)(nil)), + "_ResponseWriter": reflect.ValueOf((*_net_http_ResponseWriter)(nil)), + "_RoundTripper": reflect.ValueOf((*_net_http_RoundTripper)(nil)), + } +} + +// _net_http_CloseNotifier is an interface wrapper for CloseNotifier type +type _net_http_CloseNotifier struct { + IValue interface{} + WCloseNotify func() <-chan bool +} + +func (W _net_http_CloseNotifier) CloseNotify() <-chan bool { + return W.WCloseNotify() +} + +// _net_http_CookieJar is an interface wrapper for CookieJar type +type _net_http_CookieJar struct { + IValue interface{} + WCookies func(u *url.URL) []*http.Cookie + WSetCookies func(u *url.URL, cookies []*http.Cookie) +} + +func (W _net_http_CookieJar) Cookies(u *url.URL) []*http.Cookie { + return W.WCookies(u) +} +func (W _net_http_CookieJar) SetCookies(u *url.URL, cookies []*http.Cookie) { + W.WSetCookies(u, cookies) +} + +// _net_http_File is an interface wrapper for File type +type _net_http_File struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WReaddir func(count int) ([]fs.FileInfo, error) + WSeek func(offset int64, whence int) (int64, error) + WStat func() (fs.FileInfo, error) +} + +func (W _net_http_File) Close() error { + return W.WClose() +} +func (W _net_http_File) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _net_http_File) Readdir(count int) ([]fs.FileInfo, error) { + return W.WReaddir(count) +} +func (W _net_http_File) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} +func (W _net_http_File) Stat() (fs.FileInfo, error) { + return W.WStat() +} + +// _net_http_FileSystem is an interface wrapper for FileSystem type +type _net_http_FileSystem struct { + IValue interface{} + WOpen func(name string) (http.File, error) +} + +func (W _net_http_FileSystem) Open(name string) (http.File, error) { + return W.WOpen(name) +} + +// _net_http_Flusher is an interface wrapper for Flusher type +type _net_http_Flusher struct { + IValue interface{} + WFlush func() +} + +func (W _net_http_Flusher) Flush() { + W.WFlush() +} + +// _net_http_Handler is an interface wrapper for Handler type +type _net_http_Handler struct { + IValue interface{} + WServeHTTP func(a0 http.ResponseWriter, a1 *http.Request) +} + +func (W _net_http_Handler) ServeHTTP(a0 http.ResponseWriter, a1 *http.Request) { + W.WServeHTTP(a0, a1) +} + +// _net_http_Hijacker is an interface wrapper for Hijacker type +type _net_http_Hijacker struct { + IValue interface{} + WHijack func() (net.Conn, *bufio.ReadWriter, error) +} + +func (W _net_http_Hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { + return W.WHijack() +} + +// _net_http_Pusher is an interface wrapper for Pusher type +type _net_http_Pusher struct { + IValue interface{} + WPush func(target string, opts *http.PushOptions) error +} + +func (W _net_http_Pusher) Push(target string, opts *http.PushOptions) error { + return W.WPush(target, opts) +} + +// _net_http_ResponseWriter is an interface wrapper for ResponseWriter type +type _net_http_ResponseWriter struct { + IValue interface{} + WHeader func() http.Header + WWrite func(a0 []byte) (int, error) + WWriteHeader func(statusCode int) +} + +func (W _net_http_ResponseWriter) Header() http.Header { + return W.WHeader() +} +func (W _net_http_ResponseWriter) Write(a0 []byte) (int, error) { + return W.WWrite(a0) +} +func (W _net_http_ResponseWriter) WriteHeader(statusCode int) { + W.WWriteHeader(statusCode) +} + +// _net_http_RoundTripper is an interface wrapper for RoundTripper type +type _net_http_RoundTripper struct { + IValue interface{} + WRoundTrip func(a0 *http.Request) (*http.Response, error) +} + +func (W _net_http_RoundTripper) RoundTrip(a0 *http.Request) (*http.Response, error) { + return W.WRoundTrip(a0) +} diff --git a/stdlib/go1_18_net_http_cgi.go b/stdlib/go1_18_net_http_cgi.go new file mode 100644 index 000000000..87dbf7ddc --- /dev/null +++ b/stdlib/go1_18_net_http_cgi.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/http/cgi" + "reflect" +) + +func init() { + Symbols["net/http/cgi/cgi"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Request": reflect.ValueOf(cgi.Request), + "RequestFromMap": reflect.ValueOf(cgi.RequestFromMap), + "Serve": reflect.ValueOf(cgi.Serve), + + // type definitions + "Handler": reflect.ValueOf((*cgi.Handler)(nil)), + } +} diff --git a/stdlib/go1_18_net_http_cookiejar.go b/stdlib/go1_18_net_http_cookiejar.go new file mode 100644 index 000000000..553c3aeb1 --- /dev/null +++ b/stdlib/go1_18_net_http_cookiejar.go @@ -0,0 +1,43 @@ +// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/http/cookiejar" + "reflect" +) + +func init() { + Symbols["net/http/cookiejar/cookiejar"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(cookiejar.New), + + // type definitions + "Jar": reflect.ValueOf((*cookiejar.Jar)(nil)), + "Options": reflect.ValueOf((*cookiejar.Options)(nil)), + "PublicSuffixList": reflect.ValueOf((*cookiejar.PublicSuffixList)(nil)), + + // interface wrapper definitions + "_PublicSuffixList": reflect.ValueOf((*_net_http_cookiejar_PublicSuffixList)(nil)), + } +} + +// _net_http_cookiejar_PublicSuffixList is an interface wrapper for PublicSuffixList type +type _net_http_cookiejar_PublicSuffixList struct { + IValue interface{} + WPublicSuffix func(domain string) string + WString func() string +} + +func (W _net_http_cookiejar_PublicSuffixList) PublicSuffix(domain string) string { + return W.WPublicSuffix(domain) +} +func (W _net_http_cookiejar_PublicSuffixList) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_net_http_fcgi.go b/stdlib/go1_18_net_http_fcgi.go new file mode 100644 index 000000000..c5670deec --- /dev/null +++ b/stdlib/go1_18_net_http_fcgi.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/http/fcgi" + "reflect" +) + +func init() { + Symbols["net/http/fcgi/fcgi"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrConnClosed": reflect.ValueOf(&fcgi.ErrConnClosed).Elem(), + "ErrRequestAborted": reflect.ValueOf(&fcgi.ErrRequestAborted).Elem(), + "ProcessEnv": reflect.ValueOf(fcgi.ProcessEnv), + "Serve": reflect.ValueOf(fcgi.Serve), + } +} diff --git a/stdlib/go1_18_net_http_httptest.go b/stdlib/go1_18_net_http_httptest.go new file mode 100644 index 000000000..522854ad3 --- /dev/null +++ b/stdlib/go1_18_net_http_httptest.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "net/http/httptest" + "reflect" +) + +func init() { + Symbols["net/http/httptest/httptest"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DefaultRemoteAddr": reflect.ValueOf(constant.MakeFromLiteral("\"1.2.3.4\"", token.STRING, 0)), + "NewRecorder": reflect.ValueOf(httptest.NewRecorder), + "NewRequest": reflect.ValueOf(httptest.NewRequest), + "NewServer": reflect.ValueOf(httptest.NewServer), + "NewTLSServer": reflect.ValueOf(httptest.NewTLSServer), + "NewUnstartedServer": reflect.ValueOf(httptest.NewUnstartedServer), + + // type definitions + "ResponseRecorder": reflect.ValueOf((*httptest.ResponseRecorder)(nil)), + "Server": reflect.ValueOf((*httptest.Server)(nil)), + } +} diff --git a/stdlib/go1_18_net_http_httptrace.go b/stdlib/go1_18_net_http_httptrace.go new file mode 100644 index 000000000..464660c0f --- /dev/null +++ b/stdlib/go1_18_net_http_httptrace.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/http/httptrace" + "reflect" +) + +func init() { + Symbols["net/http/httptrace/httptrace"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ContextClientTrace": reflect.ValueOf(httptrace.ContextClientTrace), + "WithClientTrace": reflect.ValueOf(httptrace.WithClientTrace), + + // type definitions + "ClientTrace": reflect.ValueOf((*httptrace.ClientTrace)(nil)), + "DNSDoneInfo": reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)), + "DNSStartInfo": reflect.ValueOf((*httptrace.DNSStartInfo)(nil)), + "GotConnInfo": reflect.ValueOf((*httptrace.GotConnInfo)(nil)), + "WroteRequestInfo": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)), + } +} diff --git a/stdlib/go1_18_net_http_httputil.go b/stdlib/go1_18_net_http_httputil.go new file mode 100644 index 000000000..0a4bfac65 --- /dev/null +++ b/stdlib/go1_18_net_http_httputil.go @@ -0,0 +1,53 @@ +// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/http/httputil" + "reflect" +) + +func init() { + Symbols["net/http/httputil/httputil"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DumpRequest": reflect.ValueOf(httputil.DumpRequest), + "DumpRequestOut": reflect.ValueOf(httputil.DumpRequestOut), + "DumpResponse": reflect.ValueOf(httputil.DumpResponse), + "ErrClosed": reflect.ValueOf(&httputil.ErrClosed).Elem(), + "ErrLineTooLong": reflect.ValueOf(&httputil.ErrLineTooLong).Elem(), + "ErrPersistEOF": reflect.ValueOf(&httputil.ErrPersistEOF).Elem(), + "ErrPipeline": reflect.ValueOf(&httputil.ErrPipeline).Elem(), + "NewChunkedReader": reflect.ValueOf(httputil.NewChunkedReader), + "NewChunkedWriter": reflect.ValueOf(httputil.NewChunkedWriter), + "NewClientConn": reflect.ValueOf(httputil.NewClientConn), + "NewProxyClientConn": reflect.ValueOf(httputil.NewProxyClientConn), + "NewServerConn": reflect.ValueOf(httputil.NewServerConn), + "NewSingleHostReverseProxy": reflect.ValueOf(httputil.NewSingleHostReverseProxy), + + // type definitions + "BufferPool": reflect.ValueOf((*httputil.BufferPool)(nil)), + "ClientConn": reflect.ValueOf((*httputil.ClientConn)(nil)), + "ReverseProxy": reflect.ValueOf((*httputil.ReverseProxy)(nil)), + "ServerConn": reflect.ValueOf((*httputil.ServerConn)(nil)), + + // interface wrapper definitions + "_BufferPool": reflect.ValueOf((*_net_http_httputil_BufferPool)(nil)), + } +} + +// _net_http_httputil_BufferPool is an interface wrapper for BufferPool type +type _net_http_httputil_BufferPool struct { + IValue interface{} + WGet func() []byte + WPut func(a0 []byte) +} + +func (W _net_http_httputil_BufferPool) Get() []byte { + return W.WGet() +} +func (W _net_http_httputil_BufferPool) Put(a0 []byte) { + W.WPut(a0) +} diff --git a/stdlib/go1_18_net_http_pprof.go b/stdlib/go1_18_net_http_pprof.go new file mode 100644 index 000000000..cf3b836cc --- /dev/null +++ b/stdlib/go1_18_net_http_pprof.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/http/pprof" + "reflect" +) + +func init() { + Symbols["net/http/pprof/pprof"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Cmdline": reflect.ValueOf(pprof.Cmdline), + "Handler": reflect.ValueOf(pprof.Handler), + "Index": reflect.ValueOf(pprof.Index), + "Profile": reflect.ValueOf(pprof.Profile), + "Symbol": reflect.ValueOf(pprof.Symbol), + "Trace": reflect.ValueOf(pprof.Trace), + } +} diff --git a/stdlib/go1_18_net_mail.go b/stdlib/go1_18_net_mail.go new file mode 100644 index 000000000..77ba53d6f --- /dev/null +++ b/stdlib/go1_18_net_mail.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract net/mail'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/mail" + "reflect" +) + +func init() { + Symbols["net/mail/mail"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrHeaderNotPresent": reflect.ValueOf(&mail.ErrHeaderNotPresent).Elem(), + "ParseAddress": reflect.ValueOf(mail.ParseAddress), + "ParseAddressList": reflect.ValueOf(mail.ParseAddressList), + "ParseDate": reflect.ValueOf(mail.ParseDate), + "ReadMessage": reflect.ValueOf(mail.ReadMessage), + + // type definitions + "Address": reflect.ValueOf((*mail.Address)(nil)), + "AddressParser": reflect.ValueOf((*mail.AddressParser)(nil)), + "Header": reflect.ValueOf((*mail.Header)(nil)), + "Message": reflect.ValueOf((*mail.Message)(nil)), + } +} diff --git a/stdlib/go1_18_net_netip.go b/stdlib/go1_18_net_netip.go new file mode 100644 index 000000000..7448f9b46 --- /dev/null +++ b/stdlib/go1_18_net_netip.go @@ -0,0 +1,36 @@ +// Code generated by 'yaegi extract net/netip'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/netip" + "reflect" +) + +func init() { + Symbols["net/netip/netip"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AddrFrom16": reflect.ValueOf(netip.AddrFrom16), + "AddrFrom4": reflect.ValueOf(netip.AddrFrom4), + "AddrFromSlice": reflect.ValueOf(netip.AddrFromSlice), + "AddrPortFrom": reflect.ValueOf(netip.AddrPortFrom), + "IPv4Unspecified": reflect.ValueOf(netip.IPv4Unspecified), + "IPv6LinkLocalAllNodes": reflect.ValueOf(netip.IPv6LinkLocalAllNodes), + "IPv6Unspecified": reflect.ValueOf(netip.IPv6Unspecified), + "MustParseAddr": reflect.ValueOf(netip.MustParseAddr), + "MustParseAddrPort": reflect.ValueOf(netip.MustParseAddrPort), + "MustParsePrefix": reflect.ValueOf(netip.MustParsePrefix), + "ParseAddr": reflect.ValueOf(netip.ParseAddr), + "ParseAddrPort": reflect.ValueOf(netip.ParseAddrPort), + "ParsePrefix": reflect.ValueOf(netip.ParsePrefix), + "PrefixFrom": reflect.ValueOf(netip.PrefixFrom), + + // type definitions + "Addr": reflect.ValueOf((*netip.Addr)(nil)), + "AddrPort": reflect.ValueOf((*netip.AddrPort)(nil)), + "Prefix": reflect.ValueOf((*netip.Prefix)(nil)), + } +} diff --git a/stdlib/go1_18_net_rpc.go b/stdlib/go1_18_net_rpc.go new file mode 100644 index 000000000..4b26917e3 --- /dev/null +++ b/stdlib/go1_18_net_rpc.go @@ -0,0 +1,94 @@ +// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "net/rpc" + "reflect" +) + +func init() { + Symbols["net/rpc/rpc"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Accept": reflect.ValueOf(rpc.Accept), + "DefaultDebugPath": reflect.ValueOf(constant.MakeFromLiteral("\"/debug/rpc\"", token.STRING, 0)), + "DefaultRPCPath": reflect.ValueOf(constant.MakeFromLiteral("\"/_goRPC_\"", token.STRING, 0)), + "DefaultServer": reflect.ValueOf(&rpc.DefaultServer).Elem(), + "Dial": reflect.ValueOf(rpc.Dial), + "DialHTTP": reflect.ValueOf(rpc.DialHTTP), + "DialHTTPPath": reflect.ValueOf(rpc.DialHTTPPath), + "ErrShutdown": reflect.ValueOf(&rpc.ErrShutdown).Elem(), + "HandleHTTP": reflect.ValueOf(rpc.HandleHTTP), + "NewClient": reflect.ValueOf(rpc.NewClient), + "NewClientWithCodec": reflect.ValueOf(rpc.NewClientWithCodec), + "NewServer": reflect.ValueOf(rpc.NewServer), + "Register": reflect.ValueOf(rpc.Register), + "RegisterName": reflect.ValueOf(rpc.RegisterName), + "ServeCodec": reflect.ValueOf(rpc.ServeCodec), + "ServeConn": reflect.ValueOf(rpc.ServeConn), + "ServeRequest": reflect.ValueOf(rpc.ServeRequest), + + // type definitions + "Call": reflect.ValueOf((*rpc.Call)(nil)), + "Client": reflect.ValueOf((*rpc.Client)(nil)), + "ClientCodec": reflect.ValueOf((*rpc.ClientCodec)(nil)), + "Request": reflect.ValueOf((*rpc.Request)(nil)), + "Response": reflect.ValueOf((*rpc.Response)(nil)), + "Server": reflect.ValueOf((*rpc.Server)(nil)), + "ServerCodec": reflect.ValueOf((*rpc.ServerCodec)(nil)), + "ServerError": reflect.ValueOf((*rpc.ServerError)(nil)), + + // interface wrapper definitions + "_ClientCodec": reflect.ValueOf((*_net_rpc_ClientCodec)(nil)), + "_ServerCodec": reflect.ValueOf((*_net_rpc_ServerCodec)(nil)), + } +} + +// _net_rpc_ClientCodec is an interface wrapper for ClientCodec type +type _net_rpc_ClientCodec struct { + IValue interface{} + WClose func() error + WReadResponseBody func(a0 any) error + WReadResponseHeader func(a0 *rpc.Response) error + WWriteRequest func(a0 *rpc.Request, a1 any) error +} + +func (W _net_rpc_ClientCodec) Close() error { + return W.WClose() +} +func (W _net_rpc_ClientCodec) ReadResponseBody(a0 any) error { + return W.WReadResponseBody(a0) +} +func (W _net_rpc_ClientCodec) ReadResponseHeader(a0 *rpc.Response) error { + return W.WReadResponseHeader(a0) +} +func (W _net_rpc_ClientCodec) WriteRequest(a0 *rpc.Request, a1 any) error { + return W.WWriteRequest(a0, a1) +} + +// _net_rpc_ServerCodec is an interface wrapper for ServerCodec type +type _net_rpc_ServerCodec struct { + IValue interface{} + WClose func() error + WReadRequestBody func(a0 any) error + WReadRequestHeader func(a0 *rpc.Request) error + WWriteResponse func(a0 *rpc.Response, a1 any) error +} + +func (W _net_rpc_ServerCodec) Close() error { + return W.WClose() +} +func (W _net_rpc_ServerCodec) ReadRequestBody(a0 any) error { + return W.WReadRequestBody(a0) +} +func (W _net_rpc_ServerCodec) ReadRequestHeader(a0 *rpc.Request) error { + return W.WReadRequestHeader(a0) +} +func (W _net_rpc_ServerCodec) WriteResponse(a0 *rpc.Response, a1 any) error { + return W.WWriteResponse(a0, a1) +} diff --git a/stdlib/go1_18_net_rpc_jsonrpc.go b/stdlib/go1_18_net_rpc_jsonrpc.go new file mode 100644 index 000000000..93cd11bdb --- /dev/null +++ b/stdlib/go1_18_net_rpc_jsonrpc.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/rpc/jsonrpc" + "reflect" +) + +func init() { + Symbols["net/rpc/jsonrpc/jsonrpc"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Dial": reflect.ValueOf(jsonrpc.Dial), + "NewClient": reflect.ValueOf(jsonrpc.NewClient), + "NewClientCodec": reflect.ValueOf(jsonrpc.NewClientCodec), + "NewServerCodec": reflect.ValueOf(jsonrpc.NewServerCodec), + "ServeConn": reflect.ValueOf(jsonrpc.ServeConn), + } +} diff --git a/stdlib/go1_18_net_smtp.go b/stdlib/go1_18_net_smtp.go new file mode 100644 index 000000000..19e25134f --- /dev/null +++ b/stdlib/go1_18_net_smtp.go @@ -0,0 +1,44 @@ +// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/smtp" + "reflect" +) + +func init() { + Symbols["net/smtp/smtp"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CRAMMD5Auth": reflect.ValueOf(smtp.CRAMMD5Auth), + "Dial": reflect.ValueOf(smtp.Dial), + "NewClient": reflect.ValueOf(smtp.NewClient), + "PlainAuth": reflect.ValueOf(smtp.PlainAuth), + "SendMail": reflect.ValueOf(smtp.SendMail), + + // type definitions + "Auth": reflect.ValueOf((*smtp.Auth)(nil)), + "Client": reflect.ValueOf((*smtp.Client)(nil)), + "ServerInfo": reflect.ValueOf((*smtp.ServerInfo)(nil)), + + // interface wrapper definitions + "_Auth": reflect.ValueOf((*_net_smtp_Auth)(nil)), + } +} + +// _net_smtp_Auth is an interface wrapper for Auth type +type _net_smtp_Auth struct { + IValue interface{} + WNext func(fromServer []byte, more bool) (toServer []byte, err error) + WStart func(server *smtp.ServerInfo) (proto string, toServer []byte, err error) +} + +func (W _net_smtp_Auth) Next(fromServer []byte, more bool) (toServer []byte, err error) { + return W.WNext(fromServer, more) +} +func (W _net_smtp_Auth) Start(server *smtp.ServerInfo) (proto string, toServer []byte, err error) { + return W.WStart(server) +} diff --git a/stdlib/go1_18_net_textproto.go b/stdlib/go1_18_net_textproto.go new file mode 100644 index 000000000..e7b9478cb --- /dev/null +++ b/stdlib/go1_18_net_textproto.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/textproto" + "reflect" +) + +func init() { + Symbols["net/textproto/textproto"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CanonicalMIMEHeaderKey": reflect.ValueOf(textproto.CanonicalMIMEHeaderKey), + "Dial": reflect.ValueOf(textproto.Dial), + "NewConn": reflect.ValueOf(textproto.NewConn), + "NewReader": reflect.ValueOf(textproto.NewReader), + "NewWriter": reflect.ValueOf(textproto.NewWriter), + "TrimBytes": reflect.ValueOf(textproto.TrimBytes), + "TrimString": reflect.ValueOf(textproto.TrimString), + + // type definitions + "Conn": reflect.ValueOf((*textproto.Conn)(nil)), + "Error": reflect.ValueOf((*textproto.Error)(nil)), + "MIMEHeader": reflect.ValueOf((*textproto.MIMEHeader)(nil)), + "Pipeline": reflect.ValueOf((*textproto.Pipeline)(nil)), + "ProtocolError": reflect.ValueOf((*textproto.ProtocolError)(nil)), + "Reader": reflect.ValueOf((*textproto.Reader)(nil)), + "Writer": reflect.ValueOf((*textproto.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_net_url.go b/stdlib/go1_18_net_url.go new file mode 100644 index 000000000..b0ca2318c --- /dev/null +++ b/stdlib/go1_18_net_url.go @@ -0,0 +1,34 @@ +// Code generated by 'yaegi extract net/url'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "net/url" + "reflect" +) + +func init() { + Symbols["net/url/url"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Parse": reflect.ValueOf(url.Parse), + "ParseQuery": reflect.ValueOf(url.ParseQuery), + "ParseRequestURI": reflect.ValueOf(url.ParseRequestURI), + "PathEscape": reflect.ValueOf(url.PathEscape), + "PathUnescape": reflect.ValueOf(url.PathUnescape), + "QueryEscape": reflect.ValueOf(url.QueryEscape), + "QueryUnescape": reflect.ValueOf(url.QueryUnescape), + "User": reflect.ValueOf(url.User), + "UserPassword": reflect.ValueOf(url.UserPassword), + + // type definitions + "Error": reflect.ValueOf((*url.Error)(nil)), + "EscapeError": reflect.ValueOf((*url.EscapeError)(nil)), + "InvalidHostError": reflect.ValueOf((*url.InvalidHostError)(nil)), + "URL": reflect.ValueOf((*url.URL)(nil)), + "Userinfo": reflect.ValueOf((*url.Userinfo)(nil)), + "Values": reflect.ValueOf((*url.Values)(nil)), + } +} diff --git a/stdlib/go1_18_os.go b/stdlib/go1_18_os.go new file mode 100644 index 000000000..17db6cd89 --- /dev/null +++ b/stdlib/go1_18_os.go @@ -0,0 +1,211 @@ +// Code generated by 'yaegi extract os'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "io/fs" + "os" + "reflect" + "time" +) + +func init() { + Symbols["os/os"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Args": reflect.ValueOf(&os.Args).Elem(), + "Chdir": reflect.ValueOf(os.Chdir), + "Chmod": reflect.ValueOf(os.Chmod), + "Chown": reflect.ValueOf(os.Chown), + "Chtimes": reflect.ValueOf(os.Chtimes), + "Clearenv": reflect.ValueOf(os.Clearenv), + "Create": reflect.ValueOf(os.Create), + "CreateTemp": reflect.ValueOf(os.CreateTemp), + "DevNull": reflect.ValueOf(constant.MakeFromLiteral("\"/dev/null\"", token.STRING, 0)), + "DirFS": reflect.ValueOf(os.DirFS), + "Environ": reflect.ValueOf(os.Environ), + "ErrClosed": reflect.ValueOf(&os.ErrClosed).Elem(), + "ErrDeadlineExceeded": reflect.ValueOf(&os.ErrDeadlineExceeded).Elem(), + "ErrExist": reflect.ValueOf(&os.ErrExist).Elem(), + "ErrInvalid": reflect.ValueOf(&os.ErrInvalid).Elem(), + "ErrNoDeadline": reflect.ValueOf(&os.ErrNoDeadline).Elem(), + "ErrNotExist": reflect.ValueOf(&os.ErrNotExist).Elem(), + "ErrPermission": reflect.ValueOf(&os.ErrPermission).Elem(), + "ErrProcessDone": reflect.ValueOf(&os.ErrProcessDone).Elem(), + "Executable": reflect.ValueOf(os.Executable), + "Exit": reflect.ValueOf(osExit), + "Expand": reflect.ValueOf(os.Expand), + "ExpandEnv": reflect.ValueOf(os.ExpandEnv), + "FindProcess": reflect.ValueOf(osFindProcess), + "Getegid": reflect.ValueOf(os.Getegid), + "Getenv": reflect.ValueOf(os.Getenv), + "Geteuid": reflect.ValueOf(os.Geteuid), + "Getgid": reflect.ValueOf(os.Getgid), + "Getgroups": reflect.ValueOf(os.Getgroups), + "Getpagesize": reflect.ValueOf(os.Getpagesize), + "Getpid": reflect.ValueOf(os.Getpid), + "Getppid": reflect.ValueOf(os.Getppid), + "Getuid": reflect.ValueOf(os.Getuid), + "Getwd": reflect.ValueOf(os.Getwd), + "Hostname": reflect.ValueOf(os.Hostname), + "Interrupt": reflect.ValueOf(&os.Interrupt).Elem(), + "IsExist": reflect.ValueOf(os.IsExist), + "IsNotExist": reflect.ValueOf(os.IsNotExist), + "IsPathSeparator": reflect.ValueOf(os.IsPathSeparator), + "IsPermission": reflect.ValueOf(os.IsPermission), + "IsTimeout": reflect.ValueOf(os.IsTimeout), + "Kill": reflect.ValueOf(&os.Kill).Elem(), + "Lchown": reflect.ValueOf(os.Lchown), + "Link": reflect.ValueOf(os.Link), + "LookupEnv": reflect.ValueOf(os.LookupEnv), + "Lstat": reflect.ValueOf(os.Lstat), + "Mkdir": reflect.ValueOf(os.Mkdir), + "MkdirAll": reflect.ValueOf(os.MkdirAll), + "MkdirTemp": reflect.ValueOf(os.MkdirTemp), + "ModeAppend": reflect.ValueOf(os.ModeAppend), + "ModeCharDevice": reflect.ValueOf(os.ModeCharDevice), + "ModeDevice": reflect.ValueOf(os.ModeDevice), + "ModeDir": reflect.ValueOf(os.ModeDir), + "ModeExclusive": reflect.ValueOf(os.ModeExclusive), + "ModeIrregular": reflect.ValueOf(os.ModeIrregular), + "ModeNamedPipe": reflect.ValueOf(os.ModeNamedPipe), + "ModePerm": reflect.ValueOf(os.ModePerm), + "ModeSetgid": reflect.ValueOf(os.ModeSetgid), + "ModeSetuid": reflect.ValueOf(os.ModeSetuid), + "ModeSocket": reflect.ValueOf(os.ModeSocket), + "ModeSticky": reflect.ValueOf(os.ModeSticky), + "ModeSymlink": reflect.ValueOf(os.ModeSymlink), + "ModeTemporary": reflect.ValueOf(os.ModeTemporary), + "ModeType": reflect.ValueOf(os.ModeType), + "NewFile": reflect.ValueOf(os.NewFile), + "NewSyscallError": reflect.ValueOf(os.NewSyscallError), + "O_APPEND": reflect.ValueOf(os.O_APPEND), + "O_CREATE": reflect.ValueOf(os.O_CREATE), + "O_EXCL": reflect.ValueOf(os.O_EXCL), + "O_RDONLY": reflect.ValueOf(os.O_RDONLY), + "O_RDWR": reflect.ValueOf(os.O_RDWR), + "O_SYNC": reflect.ValueOf(os.O_SYNC), + "O_TRUNC": reflect.ValueOf(os.O_TRUNC), + "O_WRONLY": reflect.ValueOf(os.O_WRONLY), + "Open": reflect.ValueOf(os.Open), + "OpenFile": reflect.ValueOf(os.OpenFile), + "PathListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "PathSeparator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "Pipe": reflect.ValueOf(os.Pipe), + "ReadDir": reflect.ValueOf(os.ReadDir), + "ReadFile": reflect.ValueOf(os.ReadFile), + "Readlink": reflect.ValueOf(os.Readlink), + "Remove": reflect.ValueOf(os.Remove), + "RemoveAll": reflect.ValueOf(os.RemoveAll), + "Rename": reflect.ValueOf(os.Rename), + "SEEK_CUR": reflect.ValueOf(os.SEEK_CUR), + "SEEK_END": reflect.ValueOf(os.SEEK_END), + "SEEK_SET": reflect.ValueOf(os.SEEK_SET), + "SameFile": reflect.ValueOf(os.SameFile), + "Setenv": reflect.ValueOf(os.Setenv), + "StartProcess": reflect.ValueOf(os.StartProcess), + "Stat": reflect.ValueOf(os.Stat), + "Stderr": reflect.ValueOf(&os.Stderr).Elem(), + "Stdin": reflect.ValueOf(&os.Stdin).Elem(), + "Stdout": reflect.ValueOf(&os.Stdout).Elem(), + "Symlink": reflect.ValueOf(os.Symlink), + "TempDir": reflect.ValueOf(os.TempDir), + "Truncate": reflect.ValueOf(os.Truncate), + "Unsetenv": reflect.ValueOf(os.Unsetenv), + "UserCacheDir": reflect.ValueOf(os.UserCacheDir), + "UserConfigDir": reflect.ValueOf(os.UserConfigDir), + "UserHomeDir": reflect.ValueOf(os.UserHomeDir), + "WriteFile": reflect.ValueOf(os.WriteFile), + + // type definitions + "DirEntry": reflect.ValueOf((*os.DirEntry)(nil)), + "File": reflect.ValueOf((*os.File)(nil)), + "FileInfo": reflect.ValueOf((*os.FileInfo)(nil)), + "FileMode": reflect.ValueOf((*os.FileMode)(nil)), + "LinkError": reflect.ValueOf((*os.LinkError)(nil)), + "PathError": reflect.ValueOf((*os.PathError)(nil)), + "ProcAttr": reflect.ValueOf((*os.ProcAttr)(nil)), + "Process": reflect.ValueOf((*os.Process)(nil)), + "ProcessState": reflect.ValueOf((*os.ProcessState)(nil)), + "Signal": reflect.ValueOf((*os.Signal)(nil)), + "SyscallError": reflect.ValueOf((*os.SyscallError)(nil)), + + // interface wrapper definitions + "_DirEntry": reflect.ValueOf((*_os_DirEntry)(nil)), + "_FileInfo": reflect.ValueOf((*_os_FileInfo)(nil)), + "_Signal": reflect.ValueOf((*_os_Signal)(nil)), + } +} + +// _os_DirEntry is an interface wrapper for DirEntry type +type _os_DirEntry struct { + IValue interface{} + WInfo func() (fs.FileInfo, error) + WIsDir func() bool + WName func() string + WType func() fs.FileMode +} + +func (W _os_DirEntry) Info() (fs.FileInfo, error) { + return W.WInfo() +} +func (W _os_DirEntry) IsDir() bool { + return W.WIsDir() +} +func (W _os_DirEntry) Name() string { + return W.WName() +} +func (W _os_DirEntry) Type() fs.FileMode { + return W.WType() +} + +// _os_FileInfo is an interface wrapper for FileInfo type +type _os_FileInfo struct { + IValue interface{} + WIsDir func() bool + WModTime func() time.Time + WMode func() fs.FileMode + WName func() string + WSize func() int64 + WSys func() any +} + +func (W _os_FileInfo) IsDir() bool { + return W.WIsDir() +} +func (W _os_FileInfo) ModTime() time.Time { + return W.WModTime() +} +func (W _os_FileInfo) Mode() fs.FileMode { + return W.WMode() +} +func (W _os_FileInfo) Name() string { + return W.WName() +} +func (W _os_FileInfo) Size() int64 { + return W.WSize() +} +func (W _os_FileInfo) Sys() any { + return W.WSys() +} + +// _os_Signal is an interface wrapper for Signal type +type _os_Signal struct { + IValue interface{} + WSignal func() + WString func() string +} + +func (W _os_Signal) Signal() { + W.WSignal() +} +func (W _os_Signal) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_os_signal.go b/stdlib/go1_18_os_signal.go new file mode 100644 index 000000000..5da231875 --- /dev/null +++ b/stdlib/go1_18_os_signal.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract os/signal'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "os/signal" + "reflect" +) + +func init() { + Symbols["os/signal/signal"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Ignore": reflect.ValueOf(signal.Ignore), + "Ignored": reflect.ValueOf(signal.Ignored), + "Notify": reflect.ValueOf(signal.Notify), + "NotifyContext": reflect.ValueOf(signal.NotifyContext), + "Reset": reflect.ValueOf(signal.Reset), + "Stop": reflect.ValueOf(signal.Stop), + } +} diff --git a/stdlib/go1_18_os_user.go b/stdlib/go1_18_os_user.go new file mode 100644 index 000000000..751d8bf45 --- /dev/null +++ b/stdlib/go1_18_os_user.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract os/user'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "os/user" + "reflect" +) + +func init() { + Symbols["os/user/user"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Current": reflect.ValueOf(user.Current), + "Lookup": reflect.ValueOf(user.Lookup), + "LookupGroup": reflect.ValueOf(user.LookupGroup), + "LookupGroupId": reflect.ValueOf(user.LookupGroupId), + "LookupId": reflect.ValueOf(user.LookupId), + + // type definitions + "Group": reflect.ValueOf((*user.Group)(nil)), + "UnknownGroupError": reflect.ValueOf((*user.UnknownGroupError)(nil)), + "UnknownGroupIdError": reflect.ValueOf((*user.UnknownGroupIdError)(nil)), + "UnknownUserError": reflect.ValueOf((*user.UnknownUserError)(nil)), + "UnknownUserIdError": reflect.ValueOf((*user.UnknownUserIdError)(nil)), + "User": reflect.ValueOf((*user.User)(nil)), + } +} diff --git a/stdlib/go1_18_path.go b/stdlib/go1_18_path.go new file mode 100644 index 000000000..cb9aa8aca --- /dev/null +++ b/stdlib/go1_18_path.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract path'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "path" + "reflect" +) + +func init() { + Symbols["path/path"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Base": reflect.ValueOf(path.Base), + "Clean": reflect.ValueOf(path.Clean), + "Dir": reflect.ValueOf(path.Dir), + "ErrBadPattern": reflect.ValueOf(&path.ErrBadPattern).Elem(), + "Ext": reflect.ValueOf(path.Ext), + "IsAbs": reflect.ValueOf(path.IsAbs), + "Join": reflect.ValueOf(path.Join), + "Match": reflect.ValueOf(path.Match), + "Split": reflect.ValueOf(path.Split), + } +} diff --git a/stdlib/go1_18_path_filepath.go b/stdlib/go1_18_path_filepath.go new file mode 100644 index 000000000..c2cda828e --- /dev/null +++ b/stdlib/go1_18_path_filepath.go @@ -0,0 +1,45 @@ +// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "path/filepath" + "reflect" +) + +func init() { + Symbols["path/filepath/filepath"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Abs": reflect.ValueOf(filepath.Abs), + "Base": reflect.ValueOf(filepath.Base), + "Clean": reflect.ValueOf(filepath.Clean), + "Dir": reflect.ValueOf(filepath.Dir), + "ErrBadPattern": reflect.ValueOf(&filepath.ErrBadPattern).Elem(), + "EvalSymlinks": reflect.ValueOf(filepath.EvalSymlinks), + "Ext": reflect.ValueOf(filepath.Ext), + "FromSlash": reflect.ValueOf(filepath.FromSlash), + "Glob": reflect.ValueOf(filepath.Glob), + "HasPrefix": reflect.ValueOf(filepath.HasPrefix), + "IsAbs": reflect.ValueOf(filepath.IsAbs), + "Join": reflect.ValueOf(filepath.Join), + "ListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "Match": reflect.ValueOf(filepath.Match), + "Rel": reflect.ValueOf(filepath.Rel), + "Separator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SkipDir": reflect.ValueOf(&filepath.SkipDir).Elem(), + "Split": reflect.ValueOf(filepath.Split), + "SplitList": reflect.ValueOf(filepath.SplitList), + "ToSlash": reflect.ValueOf(filepath.ToSlash), + "VolumeName": reflect.ValueOf(filepath.VolumeName), + "Walk": reflect.ValueOf(filepath.Walk), + "WalkDir": reflect.ValueOf(filepath.WalkDir), + + // type definitions + "WalkFunc": reflect.ValueOf((*filepath.WalkFunc)(nil)), + } +} diff --git a/stdlib/go1_18_reflect.go b/stdlib/go1_18_reflect.go new file mode 100644 index 000000000..6b86fe57f --- /dev/null +++ b/stdlib/go1_18_reflect.go @@ -0,0 +1,219 @@ +// Code generated by 'yaegi extract reflect'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" +) + +func init() { + Symbols["reflect/reflect"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Append": reflect.ValueOf(reflect.Append), + "AppendSlice": reflect.ValueOf(reflect.AppendSlice), + "Array": reflect.ValueOf(reflect.Array), + "ArrayOf": reflect.ValueOf(reflect.ArrayOf), + "Bool": reflect.ValueOf(reflect.Bool), + "BothDir": reflect.ValueOf(reflect.BothDir), + "Chan": reflect.ValueOf(reflect.Chan), + "ChanOf": reflect.ValueOf(reflect.ChanOf), + "Complex128": reflect.ValueOf(reflect.Complex128), + "Complex64": reflect.ValueOf(reflect.Complex64), + "Copy": reflect.ValueOf(reflect.Copy), + "DeepEqual": reflect.ValueOf(reflect.DeepEqual), + "Float32": reflect.ValueOf(reflect.Float32), + "Float64": reflect.ValueOf(reflect.Float64), + "Func": reflect.ValueOf(reflect.Func), + "FuncOf": reflect.ValueOf(reflect.FuncOf), + "Indirect": reflect.ValueOf(reflect.Indirect), + "Int": reflect.ValueOf(reflect.Int), + "Int16": reflect.ValueOf(reflect.Int16), + "Int32": reflect.ValueOf(reflect.Int32), + "Int64": reflect.ValueOf(reflect.Int64), + "Int8": reflect.ValueOf(reflect.Int8), + "Interface": reflect.ValueOf(reflect.Interface), + "Invalid": reflect.ValueOf(reflect.Invalid), + "MakeChan": reflect.ValueOf(reflect.MakeChan), + "MakeFunc": reflect.ValueOf(reflect.MakeFunc), + "MakeMap": reflect.ValueOf(reflect.MakeMap), + "MakeMapWithSize": reflect.ValueOf(reflect.MakeMapWithSize), + "MakeSlice": reflect.ValueOf(reflect.MakeSlice), + "Map": reflect.ValueOf(reflect.Map), + "MapOf": reflect.ValueOf(reflect.MapOf), + "New": reflect.ValueOf(reflect.New), + "NewAt": reflect.ValueOf(reflect.NewAt), + "Pointer": reflect.ValueOf(reflect.Pointer), + "PointerTo": reflect.ValueOf(reflect.PointerTo), + "Ptr": reflect.ValueOf(reflect.Ptr), + "PtrTo": reflect.ValueOf(reflect.PtrTo), + "RecvDir": reflect.ValueOf(reflect.RecvDir), + "Select": reflect.ValueOf(reflect.Select), + "SelectDefault": reflect.ValueOf(reflect.SelectDefault), + "SelectRecv": reflect.ValueOf(reflect.SelectRecv), + "SelectSend": reflect.ValueOf(reflect.SelectSend), + "SendDir": reflect.ValueOf(reflect.SendDir), + "Slice": reflect.ValueOf(reflect.Slice), + "SliceOf": reflect.ValueOf(reflect.SliceOf), + "String": reflect.ValueOf(reflect.String), + "Struct": reflect.ValueOf(reflect.Struct), + "StructOf": reflect.ValueOf(reflect.StructOf), + "Swapper": reflect.ValueOf(reflect.Swapper), + "TypeOf": reflect.ValueOf(reflect.TypeOf), + "Uint": reflect.ValueOf(reflect.Uint), + "Uint16": reflect.ValueOf(reflect.Uint16), + "Uint32": reflect.ValueOf(reflect.Uint32), + "Uint64": reflect.ValueOf(reflect.Uint64), + "Uint8": reflect.ValueOf(reflect.Uint8), + "Uintptr": reflect.ValueOf(reflect.Uintptr), + "UnsafePointer": reflect.ValueOf(reflect.UnsafePointer), + "ValueOf": reflect.ValueOf(reflect.ValueOf), + "VisibleFields": reflect.ValueOf(reflect.VisibleFields), + "Zero": reflect.ValueOf(reflect.Zero), + + // type definitions + "ChanDir": reflect.ValueOf((*reflect.ChanDir)(nil)), + "Kind": reflect.ValueOf((*reflect.Kind)(nil)), + "MapIter": reflect.ValueOf((*reflect.MapIter)(nil)), + "Method": reflect.ValueOf((*reflect.Method)(nil)), + "SelectCase": reflect.ValueOf((*reflect.SelectCase)(nil)), + "SelectDir": reflect.ValueOf((*reflect.SelectDir)(nil)), + "SliceHeader": reflect.ValueOf((*reflect.SliceHeader)(nil)), + "StringHeader": reflect.ValueOf((*reflect.StringHeader)(nil)), + "StructField": reflect.ValueOf((*reflect.StructField)(nil)), + "StructTag": reflect.ValueOf((*reflect.StructTag)(nil)), + "Type": reflect.ValueOf((*reflect.Type)(nil)), + "Value": reflect.ValueOf((*reflect.Value)(nil)), + "ValueError": reflect.ValueOf((*reflect.ValueError)(nil)), + + // interface wrapper definitions + "_Type": reflect.ValueOf((*_reflect_Type)(nil)), + } +} + +// _reflect_Type is an interface wrapper for Type type +type _reflect_Type struct { + IValue interface{} + WAlign func() int + WAssignableTo func(u reflect.Type) bool + WBits func() int + WChanDir func() reflect.ChanDir + WComparable func() bool + WConvertibleTo func(u reflect.Type) bool + WElem func() reflect.Type + WField func(i int) reflect.StructField + WFieldAlign func() int + WFieldByIndex func(index []int) reflect.StructField + WFieldByName func(name string) (reflect.StructField, bool) + WFieldByNameFunc func(match func(string) bool) (reflect.StructField, bool) + WImplements func(u reflect.Type) bool + WIn func(i int) reflect.Type + WIsVariadic func() bool + WKey func() reflect.Type + WKind func() reflect.Kind + WLen func() int + WMethod func(a0 int) reflect.Method + WMethodByName func(a0 string) (reflect.Method, bool) + WName func() string + WNumField func() int + WNumIn func() int + WNumMethod func() int + WNumOut func() int + WOut func(i int) reflect.Type + WPkgPath func() string + WSize func() uintptr + WString func() string +} + +func (W _reflect_Type) Align() int { + return W.WAlign() +} +func (W _reflect_Type) AssignableTo(u reflect.Type) bool { + return W.WAssignableTo(u) +} +func (W _reflect_Type) Bits() int { + return W.WBits() +} +func (W _reflect_Type) ChanDir() reflect.ChanDir { + return W.WChanDir() +} +func (W _reflect_Type) Comparable() bool { + return W.WComparable() +} +func (W _reflect_Type) ConvertibleTo(u reflect.Type) bool { + return W.WConvertibleTo(u) +} +func (W _reflect_Type) Elem() reflect.Type { + return W.WElem() +} +func (W _reflect_Type) Field(i int) reflect.StructField { + return W.WField(i) +} +func (W _reflect_Type) FieldAlign() int { + return W.WFieldAlign() +} +func (W _reflect_Type) FieldByIndex(index []int) reflect.StructField { + return W.WFieldByIndex(index) +} +func (W _reflect_Type) FieldByName(name string) (reflect.StructField, bool) { + return W.WFieldByName(name) +} +func (W _reflect_Type) FieldByNameFunc(match func(string) bool) (reflect.StructField, bool) { + return W.WFieldByNameFunc(match) +} +func (W _reflect_Type) Implements(u reflect.Type) bool { + return W.WImplements(u) +} +func (W _reflect_Type) In(i int) reflect.Type { + return W.WIn(i) +} +func (W _reflect_Type) IsVariadic() bool { + return W.WIsVariadic() +} +func (W _reflect_Type) Key() reflect.Type { + return W.WKey() +} +func (W _reflect_Type) Kind() reflect.Kind { + return W.WKind() +} +func (W _reflect_Type) Len() int { + return W.WLen() +} +func (W _reflect_Type) Method(a0 int) reflect.Method { + return W.WMethod(a0) +} +func (W _reflect_Type) MethodByName(a0 string) (reflect.Method, bool) { + return W.WMethodByName(a0) +} +func (W _reflect_Type) Name() string { + return W.WName() +} +func (W _reflect_Type) NumField() int { + return W.WNumField() +} +func (W _reflect_Type) NumIn() int { + return W.WNumIn() +} +func (W _reflect_Type) NumMethod() int { + return W.WNumMethod() +} +func (W _reflect_Type) NumOut() int { + return W.WNumOut() +} +func (W _reflect_Type) Out(i int) reflect.Type { + return W.WOut(i) +} +func (W _reflect_Type) PkgPath() string { + return W.WPkgPath() +} +func (W _reflect_Type) Size() uintptr { + return W.WSize() +} +func (W _reflect_Type) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_18_regexp.go b/stdlib/go1_18_regexp.go new file mode 100644 index 000000000..4bed631ad --- /dev/null +++ b/stdlib/go1_18_regexp.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract regexp'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "regexp" +) + +func init() { + Symbols["regexp/regexp"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Compile": reflect.ValueOf(regexp.Compile), + "CompilePOSIX": reflect.ValueOf(regexp.CompilePOSIX), + "Match": reflect.ValueOf(regexp.Match), + "MatchReader": reflect.ValueOf(regexp.MatchReader), + "MatchString": reflect.ValueOf(regexp.MatchString), + "MustCompile": reflect.ValueOf(regexp.MustCompile), + "MustCompilePOSIX": reflect.ValueOf(regexp.MustCompilePOSIX), + "QuoteMeta": reflect.ValueOf(regexp.QuoteMeta), + + // type definitions + "Regexp": reflect.ValueOf((*regexp.Regexp)(nil)), + } +} diff --git a/stdlib/go1_18_regexp_syntax.go b/stdlib/go1_18_regexp_syntax.go new file mode 100644 index 000000000..1c3a3cb9f --- /dev/null +++ b/stdlib/go1_18_regexp_syntax.go @@ -0,0 +1,95 @@ +// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "regexp/syntax" +) + +func init() { + Symbols["regexp/syntax/syntax"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ClassNL": reflect.ValueOf(syntax.ClassNL), + "Compile": reflect.ValueOf(syntax.Compile), + "DotNL": reflect.ValueOf(syntax.DotNL), + "EmptyBeginLine": reflect.ValueOf(syntax.EmptyBeginLine), + "EmptyBeginText": reflect.ValueOf(syntax.EmptyBeginText), + "EmptyEndLine": reflect.ValueOf(syntax.EmptyEndLine), + "EmptyEndText": reflect.ValueOf(syntax.EmptyEndText), + "EmptyNoWordBoundary": reflect.ValueOf(syntax.EmptyNoWordBoundary), + "EmptyOpContext": reflect.ValueOf(syntax.EmptyOpContext), + "EmptyWordBoundary": reflect.ValueOf(syntax.EmptyWordBoundary), + "ErrInternalError": reflect.ValueOf(syntax.ErrInternalError), + "ErrInvalidCharClass": reflect.ValueOf(syntax.ErrInvalidCharClass), + "ErrInvalidCharRange": reflect.ValueOf(syntax.ErrInvalidCharRange), + "ErrInvalidEscape": reflect.ValueOf(syntax.ErrInvalidEscape), + "ErrInvalidNamedCapture": reflect.ValueOf(syntax.ErrInvalidNamedCapture), + "ErrInvalidPerlOp": reflect.ValueOf(syntax.ErrInvalidPerlOp), + "ErrInvalidRepeatOp": reflect.ValueOf(syntax.ErrInvalidRepeatOp), + "ErrInvalidRepeatSize": reflect.ValueOf(syntax.ErrInvalidRepeatSize), + "ErrInvalidUTF8": reflect.ValueOf(syntax.ErrInvalidUTF8), + "ErrMissingBracket": reflect.ValueOf(syntax.ErrMissingBracket), + "ErrMissingParen": reflect.ValueOf(syntax.ErrMissingParen), + "ErrMissingRepeatArgument": reflect.ValueOf(syntax.ErrMissingRepeatArgument), + "ErrTrailingBackslash": reflect.ValueOf(syntax.ErrTrailingBackslash), + "ErrUnexpectedParen": reflect.ValueOf(syntax.ErrUnexpectedParen), + "FoldCase": reflect.ValueOf(syntax.FoldCase), + "InstAlt": reflect.ValueOf(syntax.InstAlt), + "InstAltMatch": reflect.ValueOf(syntax.InstAltMatch), + "InstCapture": reflect.ValueOf(syntax.InstCapture), + "InstEmptyWidth": reflect.ValueOf(syntax.InstEmptyWidth), + "InstFail": reflect.ValueOf(syntax.InstFail), + "InstMatch": reflect.ValueOf(syntax.InstMatch), + "InstNop": reflect.ValueOf(syntax.InstNop), + "InstRune": reflect.ValueOf(syntax.InstRune), + "InstRune1": reflect.ValueOf(syntax.InstRune1), + "InstRuneAny": reflect.ValueOf(syntax.InstRuneAny), + "InstRuneAnyNotNL": reflect.ValueOf(syntax.InstRuneAnyNotNL), + "IsWordChar": reflect.ValueOf(syntax.IsWordChar), + "Literal": reflect.ValueOf(syntax.Literal), + "MatchNL": reflect.ValueOf(syntax.MatchNL), + "NonGreedy": reflect.ValueOf(syntax.NonGreedy), + "OneLine": reflect.ValueOf(syntax.OneLine), + "OpAlternate": reflect.ValueOf(syntax.OpAlternate), + "OpAnyChar": reflect.ValueOf(syntax.OpAnyChar), + "OpAnyCharNotNL": reflect.ValueOf(syntax.OpAnyCharNotNL), + "OpBeginLine": reflect.ValueOf(syntax.OpBeginLine), + "OpBeginText": reflect.ValueOf(syntax.OpBeginText), + "OpCapture": reflect.ValueOf(syntax.OpCapture), + "OpCharClass": reflect.ValueOf(syntax.OpCharClass), + "OpConcat": reflect.ValueOf(syntax.OpConcat), + "OpEmptyMatch": reflect.ValueOf(syntax.OpEmptyMatch), + "OpEndLine": reflect.ValueOf(syntax.OpEndLine), + "OpEndText": reflect.ValueOf(syntax.OpEndText), + "OpLiteral": reflect.ValueOf(syntax.OpLiteral), + "OpNoMatch": reflect.ValueOf(syntax.OpNoMatch), + "OpNoWordBoundary": reflect.ValueOf(syntax.OpNoWordBoundary), + "OpPlus": reflect.ValueOf(syntax.OpPlus), + "OpQuest": reflect.ValueOf(syntax.OpQuest), + "OpRepeat": reflect.ValueOf(syntax.OpRepeat), + "OpStar": reflect.ValueOf(syntax.OpStar), + "OpWordBoundary": reflect.ValueOf(syntax.OpWordBoundary), + "POSIX": reflect.ValueOf(syntax.POSIX), + "Parse": reflect.ValueOf(syntax.Parse), + "Perl": reflect.ValueOf(syntax.Perl), + "PerlX": reflect.ValueOf(syntax.PerlX), + "Simple": reflect.ValueOf(syntax.Simple), + "UnicodeGroups": reflect.ValueOf(syntax.UnicodeGroups), + "WasDollar": reflect.ValueOf(syntax.WasDollar), + + // type definitions + "EmptyOp": reflect.ValueOf((*syntax.EmptyOp)(nil)), + "Error": reflect.ValueOf((*syntax.Error)(nil)), + "ErrorCode": reflect.ValueOf((*syntax.ErrorCode)(nil)), + "Flags": reflect.ValueOf((*syntax.Flags)(nil)), + "Inst": reflect.ValueOf((*syntax.Inst)(nil)), + "InstOp": reflect.ValueOf((*syntax.InstOp)(nil)), + "Op": reflect.ValueOf((*syntax.Op)(nil)), + "Prog": reflect.ValueOf((*syntax.Prog)(nil)), + "Regexp": reflect.ValueOf((*syntax.Regexp)(nil)), + } +} diff --git a/stdlib/go1_18_runtime.go b/stdlib/go1_18_runtime.go new file mode 100644 index 000000000..41b04aec2 --- /dev/null +++ b/stdlib/go1_18_runtime.go @@ -0,0 +1,84 @@ +// Code generated by 'yaegi extract runtime'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "runtime" +) + +func init() { + Symbols["runtime/runtime"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockProfile": reflect.ValueOf(runtime.BlockProfile), + "Breakpoint": reflect.ValueOf(runtime.Breakpoint), + "CPUProfile": reflect.ValueOf(runtime.CPUProfile), + "Caller": reflect.ValueOf(runtime.Caller), + "Callers": reflect.ValueOf(runtime.Callers), + "CallersFrames": reflect.ValueOf(runtime.CallersFrames), + "Compiler": reflect.ValueOf(constant.MakeFromLiteral("\"gc\"", token.STRING, 0)), + "FuncForPC": reflect.ValueOf(runtime.FuncForPC), + "GC": reflect.ValueOf(runtime.GC), + "GOARCH": reflect.ValueOf(runtime.GOARCH), + "GOMAXPROCS": reflect.ValueOf(runtime.GOMAXPROCS), + "GOOS": reflect.ValueOf(runtime.GOOS), + "GOROOT": reflect.ValueOf(runtime.GOROOT), + "Goexit": reflect.ValueOf(runtime.Goexit), + "GoroutineProfile": reflect.ValueOf(runtime.GoroutineProfile), + "Gosched": reflect.ValueOf(runtime.Gosched), + "KeepAlive": reflect.ValueOf(runtime.KeepAlive), + "LockOSThread": reflect.ValueOf(runtime.LockOSThread), + "MemProfile": reflect.ValueOf(runtime.MemProfile), + "MemProfileRate": reflect.ValueOf(&runtime.MemProfileRate).Elem(), + "MutexProfile": reflect.ValueOf(runtime.MutexProfile), + "NumCPU": reflect.ValueOf(runtime.NumCPU), + "NumCgoCall": reflect.ValueOf(runtime.NumCgoCall), + "NumGoroutine": reflect.ValueOf(runtime.NumGoroutine), + "ReadMemStats": reflect.ValueOf(runtime.ReadMemStats), + "ReadTrace": reflect.ValueOf(runtime.ReadTrace), + "SetBlockProfileRate": reflect.ValueOf(runtime.SetBlockProfileRate), + "SetCPUProfileRate": reflect.ValueOf(runtime.SetCPUProfileRate), + "SetCgoTraceback": reflect.ValueOf(runtime.SetCgoTraceback), + "SetFinalizer": reflect.ValueOf(runtime.SetFinalizer), + "SetMutexProfileFraction": reflect.ValueOf(runtime.SetMutexProfileFraction), + "Stack": reflect.ValueOf(runtime.Stack), + "StartTrace": reflect.ValueOf(runtime.StartTrace), + "StopTrace": reflect.ValueOf(runtime.StopTrace), + "ThreadCreateProfile": reflect.ValueOf(runtime.ThreadCreateProfile), + "UnlockOSThread": reflect.ValueOf(runtime.UnlockOSThread), + "Version": reflect.ValueOf(runtime.Version), + + // type definitions + "BlockProfileRecord": reflect.ValueOf((*runtime.BlockProfileRecord)(nil)), + "Error": reflect.ValueOf((*runtime.Error)(nil)), + "Frame": reflect.ValueOf((*runtime.Frame)(nil)), + "Frames": reflect.ValueOf((*runtime.Frames)(nil)), + "Func": reflect.ValueOf((*runtime.Func)(nil)), + "MemProfileRecord": reflect.ValueOf((*runtime.MemProfileRecord)(nil)), + "MemStats": reflect.ValueOf((*runtime.MemStats)(nil)), + "StackRecord": reflect.ValueOf((*runtime.StackRecord)(nil)), + "TypeAssertionError": reflect.ValueOf((*runtime.TypeAssertionError)(nil)), + + // interface wrapper definitions + "_Error": reflect.ValueOf((*_runtime_Error)(nil)), + } +} + +// _runtime_Error is an interface wrapper for Error type +type _runtime_Error struct { + IValue interface{} + WError func() string + WRuntimeError func() +} + +func (W _runtime_Error) Error() string { + return W.WError() +} +func (W _runtime_Error) RuntimeError() { + W.WRuntimeError() +} diff --git a/stdlib/go1_18_runtime_debug.go b/stdlib/go1_18_runtime_debug.go new file mode 100644 index 000000000..61c9c3b6c --- /dev/null +++ b/stdlib/go1_18_runtime_debug.go @@ -0,0 +1,35 @@ +// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "runtime/debug" +) + +func init() { + Symbols["runtime/debug/debug"] = map[string]reflect.Value{ + // function, constant and variable definitions + "FreeOSMemory": reflect.ValueOf(debug.FreeOSMemory), + "ParseBuildInfo": reflect.ValueOf(debug.ParseBuildInfo), + "PrintStack": reflect.ValueOf(debug.PrintStack), + "ReadBuildInfo": reflect.ValueOf(debug.ReadBuildInfo), + "ReadGCStats": reflect.ValueOf(debug.ReadGCStats), + "SetGCPercent": reflect.ValueOf(debug.SetGCPercent), + "SetMaxStack": reflect.ValueOf(debug.SetMaxStack), + "SetMaxThreads": reflect.ValueOf(debug.SetMaxThreads), + "SetPanicOnFault": reflect.ValueOf(debug.SetPanicOnFault), + "SetTraceback": reflect.ValueOf(debug.SetTraceback), + "Stack": reflect.ValueOf(debug.Stack), + "WriteHeapDump": reflect.ValueOf(debug.WriteHeapDump), + + // type definitions + "BuildInfo": reflect.ValueOf((*debug.BuildInfo)(nil)), + "BuildSetting": reflect.ValueOf((*debug.BuildSetting)(nil)), + "GCStats": reflect.ValueOf((*debug.GCStats)(nil)), + "Module": reflect.ValueOf((*debug.Module)(nil)), + } +} diff --git a/stdlib/go1_18_runtime_metrics.go b/stdlib/go1_18_runtime_metrics.go new file mode 100644 index 000000000..a51cab3f9 --- /dev/null +++ b/stdlib/go1_18_runtime_metrics.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "runtime/metrics" +) + +func init() { + Symbols["runtime/metrics/metrics"] = map[string]reflect.Value{ + // function, constant and variable definitions + "All": reflect.ValueOf(metrics.All), + "KindBad": reflect.ValueOf(metrics.KindBad), + "KindFloat64": reflect.ValueOf(metrics.KindFloat64), + "KindFloat64Histogram": reflect.ValueOf(metrics.KindFloat64Histogram), + "KindUint64": reflect.ValueOf(metrics.KindUint64), + "Read": reflect.ValueOf(metrics.Read), + + // type definitions + "Description": reflect.ValueOf((*metrics.Description)(nil)), + "Float64Histogram": reflect.ValueOf((*metrics.Float64Histogram)(nil)), + "Sample": reflect.ValueOf((*metrics.Sample)(nil)), + "Value": reflect.ValueOf((*metrics.Value)(nil)), + "ValueKind": reflect.ValueOf((*metrics.ValueKind)(nil)), + } +} diff --git a/stdlib/go1_18_runtime_pprof.go b/stdlib/go1_18_runtime_pprof.go new file mode 100644 index 000000000..f214f6ef8 --- /dev/null +++ b/stdlib/go1_18_runtime_pprof.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "runtime/pprof" +) + +func init() { + Symbols["runtime/pprof/pprof"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Do": reflect.ValueOf(pprof.Do), + "ForLabels": reflect.ValueOf(pprof.ForLabels), + "Label": reflect.ValueOf(pprof.Label), + "Labels": reflect.ValueOf(pprof.Labels), + "Lookup": reflect.ValueOf(pprof.Lookup), + "NewProfile": reflect.ValueOf(pprof.NewProfile), + "Profiles": reflect.ValueOf(pprof.Profiles), + "SetGoroutineLabels": reflect.ValueOf(pprof.SetGoroutineLabels), + "StartCPUProfile": reflect.ValueOf(pprof.StartCPUProfile), + "StopCPUProfile": reflect.ValueOf(pprof.StopCPUProfile), + "WithLabels": reflect.ValueOf(pprof.WithLabels), + "WriteHeapProfile": reflect.ValueOf(pprof.WriteHeapProfile), + + // type definitions + "LabelSet": reflect.ValueOf((*pprof.LabelSet)(nil)), + "Profile": reflect.ValueOf((*pprof.Profile)(nil)), + } +} diff --git a/stdlib/go1_18_runtime_trace.go b/stdlib/go1_18_runtime_trace.go new file mode 100644 index 000000000..812fcefa9 --- /dev/null +++ b/stdlib/go1_18_runtime_trace.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "runtime/trace" +) + +func init() { + Symbols["runtime/trace/trace"] = map[string]reflect.Value{ + // function, constant and variable definitions + "IsEnabled": reflect.ValueOf(trace.IsEnabled), + "Log": reflect.ValueOf(trace.Log), + "Logf": reflect.ValueOf(trace.Logf), + "NewTask": reflect.ValueOf(trace.NewTask), + "Start": reflect.ValueOf(trace.Start), + "StartRegion": reflect.ValueOf(trace.StartRegion), + "Stop": reflect.ValueOf(trace.Stop), + "WithRegion": reflect.ValueOf(trace.WithRegion), + + // type definitions + "Region": reflect.ValueOf((*trace.Region)(nil)), + "Task": reflect.ValueOf((*trace.Task)(nil)), + } +} diff --git a/stdlib/go1_18_sort.go b/stdlib/go1_18_sort.go new file mode 100644 index 000000000..97d257c63 --- /dev/null +++ b/stdlib/go1_18_sort.go @@ -0,0 +1,61 @@ +// Code generated by 'yaegi extract sort'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "sort" +) + +func init() { + Symbols["sort/sort"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Float64s": reflect.ValueOf(sort.Float64s), + "Float64sAreSorted": reflect.ValueOf(sort.Float64sAreSorted), + "Ints": reflect.ValueOf(sort.Ints), + "IntsAreSorted": reflect.ValueOf(sort.IntsAreSorted), + "IsSorted": reflect.ValueOf(sort.IsSorted), + "Reverse": reflect.ValueOf(sort.Reverse), + "Search": reflect.ValueOf(sort.Search), + "SearchFloat64s": reflect.ValueOf(sort.SearchFloat64s), + "SearchInts": reflect.ValueOf(sort.SearchInts), + "SearchStrings": reflect.ValueOf(sort.SearchStrings), + "Slice": reflect.ValueOf(sort.Slice), + "SliceIsSorted": reflect.ValueOf(sort.SliceIsSorted), + "SliceStable": reflect.ValueOf(sort.SliceStable), + "Sort": reflect.ValueOf(sort.Sort), + "Stable": reflect.ValueOf(sort.Stable), + "Strings": reflect.ValueOf(sort.Strings), + "StringsAreSorted": reflect.ValueOf(sort.StringsAreSorted), + + // type definitions + "Float64Slice": reflect.ValueOf((*sort.Float64Slice)(nil)), + "IntSlice": reflect.ValueOf((*sort.IntSlice)(nil)), + "Interface": reflect.ValueOf((*sort.Interface)(nil)), + "StringSlice": reflect.ValueOf((*sort.StringSlice)(nil)), + + // interface wrapper definitions + "_Interface": reflect.ValueOf((*_sort_Interface)(nil)), + } +} + +// _sort_Interface is an interface wrapper for Interface type +type _sort_Interface struct { + IValue interface{} + WLen func() int + WLess func(i int, j int) bool + WSwap func(i int, j int) +} + +func (W _sort_Interface) Len() int { + return W.WLen() +} +func (W _sort_Interface) Less(i int, j int) bool { + return W.WLess(i, j) +} +func (W _sort_Interface) Swap(i int, j int) { + W.WSwap(i, j) +} diff --git a/stdlib/go1_18_strconv.go b/stdlib/go1_18_strconv.go new file mode 100644 index 000000000..94aa21d57 --- /dev/null +++ b/stdlib/go1_18_strconv.go @@ -0,0 +1,59 @@ +// Code generated by 'yaegi extract strconv'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "strconv" +) + +func init() { + Symbols["strconv/strconv"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AppendBool": reflect.ValueOf(strconv.AppendBool), + "AppendFloat": reflect.ValueOf(strconv.AppendFloat), + "AppendInt": reflect.ValueOf(strconv.AppendInt), + "AppendQuote": reflect.ValueOf(strconv.AppendQuote), + "AppendQuoteRune": reflect.ValueOf(strconv.AppendQuoteRune), + "AppendQuoteRuneToASCII": reflect.ValueOf(strconv.AppendQuoteRuneToASCII), + "AppendQuoteRuneToGraphic": reflect.ValueOf(strconv.AppendQuoteRuneToGraphic), + "AppendQuoteToASCII": reflect.ValueOf(strconv.AppendQuoteToASCII), + "AppendQuoteToGraphic": reflect.ValueOf(strconv.AppendQuoteToGraphic), + "AppendUint": reflect.ValueOf(strconv.AppendUint), + "Atoi": reflect.ValueOf(strconv.Atoi), + "CanBackquote": reflect.ValueOf(strconv.CanBackquote), + "ErrRange": reflect.ValueOf(&strconv.ErrRange).Elem(), + "ErrSyntax": reflect.ValueOf(&strconv.ErrSyntax).Elem(), + "FormatBool": reflect.ValueOf(strconv.FormatBool), + "FormatComplex": reflect.ValueOf(strconv.FormatComplex), + "FormatFloat": reflect.ValueOf(strconv.FormatFloat), + "FormatInt": reflect.ValueOf(strconv.FormatInt), + "FormatUint": reflect.ValueOf(strconv.FormatUint), + "IntSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IsGraphic": reflect.ValueOf(strconv.IsGraphic), + "IsPrint": reflect.ValueOf(strconv.IsPrint), + "Itoa": reflect.ValueOf(strconv.Itoa), + "ParseBool": reflect.ValueOf(strconv.ParseBool), + "ParseComplex": reflect.ValueOf(strconv.ParseComplex), + "ParseFloat": reflect.ValueOf(strconv.ParseFloat), + "ParseInt": reflect.ValueOf(strconv.ParseInt), + "ParseUint": reflect.ValueOf(strconv.ParseUint), + "Quote": reflect.ValueOf(strconv.Quote), + "QuoteRune": reflect.ValueOf(strconv.QuoteRune), + "QuoteRuneToASCII": reflect.ValueOf(strconv.QuoteRuneToASCII), + "QuoteRuneToGraphic": reflect.ValueOf(strconv.QuoteRuneToGraphic), + "QuoteToASCII": reflect.ValueOf(strconv.QuoteToASCII), + "QuoteToGraphic": reflect.ValueOf(strconv.QuoteToGraphic), + "QuotedPrefix": reflect.ValueOf(strconv.QuotedPrefix), + "Unquote": reflect.ValueOf(strconv.Unquote), + "UnquoteChar": reflect.ValueOf(strconv.UnquoteChar), + + // type definitions + "NumError": reflect.ValueOf((*strconv.NumError)(nil)), + } +} diff --git a/stdlib/go1_18_strings.go b/stdlib/go1_18_strings.go new file mode 100644 index 000000000..05b8f3c9a --- /dev/null +++ b/stdlib/go1_18_strings.go @@ -0,0 +1,71 @@ +// Code generated by 'yaegi extract strings'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "strings" +) + +func init() { + Symbols["strings/strings"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Clone": reflect.ValueOf(strings.Clone), + "Compare": reflect.ValueOf(strings.Compare), + "Contains": reflect.ValueOf(strings.Contains), + "ContainsAny": reflect.ValueOf(strings.ContainsAny), + "ContainsRune": reflect.ValueOf(strings.ContainsRune), + "Count": reflect.ValueOf(strings.Count), + "Cut": reflect.ValueOf(strings.Cut), + "EqualFold": reflect.ValueOf(strings.EqualFold), + "Fields": reflect.ValueOf(strings.Fields), + "FieldsFunc": reflect.ValueOf(strings.FieldsFunc), + "HasPrefix": reflect.ValueOf(strings.HasPrefix), + "HasSuffix": reflect.ValueOf(strings.HasSuffix), + "Index": reflect.ValueOf(strings.Index), + "IndexAny": reflect.ValueOf(strings.IndexAny), + "IndexByte": reflect.ValueOf(strings.IndexByte), + "IndexFunc": reflect.ValueOf(strings.IndexFunc), + "IndexRune": reflect.ValueOf(strings.IndexRune), + "Join": reflect.ValueOf(strings.Join), + "LastIndex": reflect.ValueOf(strings.LastIndex), + "LastIndexAny": reflect.ValueOf(strings.LastIndexAny), + "LastIndexByte": reflect.ValueOf(strings.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(strings.LastIndexFunc), + "Map": reflect.ValueOf(strings.Map), + "NewReader": reflect.ValueOf(strings.NewReader), + "NewReplacer": reflect.ValueOf(strings.NewReplacer), + "Repeat": reflect.ValueOf(strings.Repeat), + "Replace": reflect.ValueOf(strings.Replace), + "ReplaceAll": reflect.ValueOf(strings.ReplaceAll), + "Split": reflect.ValueOf(strings.Split), + "SplitAfter": reflect.ValueOf(strings.SplitAfter), + "SplitAfterN": reflect.ValueOf(strings.SplitAfterN), + "SplitN": reflect.ValueOf(strings.SplitN), + "Title": reflect.ValueOf(strings.Title), + "ToLower": reflect.ValueOf(strings.ToLower), + "ToLowerSpecial": reflect.ValueOf(strings.ToLowerSpecial), + "ToTitle": reflect.ValueOf(strings.ToTitle), + "ToTitleSpecial": reflect.ValueOf(strings.ToTitleSpecial), + "ToUpper": reflect.ValueOf(strings.ToUpper), + "ToUpperSpecial": reflect.ValueOf(strings.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(strings.ToValidUTF8), + "Trim": reflect.ValueOf(strings.Trim), + "TrimFunc": reflect.ValueOf(strings.TrimFunc), + "TrimLeft": reflect.ValueOf(strings.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(strings.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(strings.TrimPrefix), + "TrimRight": reflect.ValueOf(strings.TrimRight), + "TrimRightFunc": reflect.ValueOf(strings.TrimRightFunc), + "TrimSpace": reflect.ValueOf(strings.TrimSpace), + "TrimSuffix": reflect.ValueOf(strings.TrimSuffix), + + // type definitions + "Builder": reflect.ValueOf((*strings.Builder)(nil)), + "Reader": reflect.ValueOf((*strings.Reader)(nil)), + "Replacer": reflect.ValueOf((*strings.Replacer)(nil)), + } +} diff --git a/stdlib/go1_18_sync.go b/stdlib/go1_18_sync.go new file mode 100644 index 000000000..589d3b9e1 --- /dev/null +++ b/stdlib/go1_18_sync.go @@ -0,0 +1,45 @@ +// Code generated by 'yaegi extract sync'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "sync" +) + +func init() { + Symbols["sync/sync"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewCond": reflect.ValueOf(sync.NewCond), + + // type definitions + "Cond": reflect.ValueOf((*sync.Cond)(nil)), + "Locker": reflect.ValueOf((*sync.Locker)(nil)), + "Map": reflect.ValueOf((*sync.Map)(nil)), + "Mutex": reflect.ValueOf((*sync.Mutex)(nil)), + "Once": reflect.ValueOf((*sync.Once)(nil)), + "Pool": reflect.ValueOf((*sync.Pool)(nil)), + "RWMutex": reflect.ValueOf((*sync.RWMutex)(nil)), + "WaitGroup": reflect.ValueOf((*sync.WaitGroup)(nil)), + + // interface wrapper definitions + "_Locker": reflect.ValueOf((*_sync_Locker)(nil)), + } +} + +// _sync_Locker is an interface wrapper for Locker type +type _sync_Locker struct { + IValue interface{} + WLock func() + WUnlock func() +} + +func (W _sync_Locker) Lock() { + W.WLock() +} +func (W _sync_Locker) Unlock() { + W.WUnlock() +} diff --git a/stdlib/go1_18_sync_atomic.go b/stdlib/go1_18_sync_atomic.go new file mode 100644 index 000000000..43931e58b --- /dev/null +++ b/stdlib/go1_18_sync_atomic.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "sync/atomic" +) + +func init() { + Symbols["sync/atomic/atomic"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AddInt32": reflect.ValueOf(atomic.AddInt32), + "AddInt64": reflect.ValueOf(atomic.AddInt64), + "AddUint32": reflect.ValueOf(atomic.AddUint32), + "AddUint64": reflect.ValueOf(atomic.AddUint64), + "AddUintptr": reflect.ValueOf(atomic.AddUintptr), + "CompareAndSwapInt32": reflect.ValueOf(atomic.CompareAndSwapInt32), + "CompareAndSwapInt64": reflect.ValueOf(atomic.CompareAndSwapInt64), + "CompareAndSwapPointer": reflect.ValueOf(atomic.CompareAndSwapPointer), + "CompareAndSwapUint32": reflect.ValueOf(atomic.CompareAndSwapUint32), + "CompareAndSwapUint64": reflect.ValueOf(atomic.CompareAndSwapUint64), + "CompareAndSwapUintptr": reflect.ValueOf(atomic.CompareAndSwapUintptr), + "LoadInt32": reflect.ValueOf(atomic.LoadInt32), + "LoadInt64": reflect.ValueOf(atomic.LoadInt64), + "LoadPointer": reflect.ValueOf(atomic.LoadPointer), + "LoadUint32": reflect.ValueOf(atomic.LoadUint32), + "LoadUint64": reflect.ValueOf(atomic.LoadUint64), + "LoadUintptr": reflect.ValueOf(atomic.LoadUintptr), + "StoreInt32": reflect.ValueOf(atomic.StoreInt32), + "StoreInt64": reflect.ValueOf(atomic.StoreInt64), + "StorePointer": reflect.ValueOf(atomic.StorePointer), + "StoreUint32": reflect.ValueOf(atomic.StoreUint32), + "StoreUint64": reflect.ValueOf(atomic.StoreUint64), + "StoreUintptr": reflect.ValueOf(atomic.StoreUintptr), + "SwapInt32": reflect.ValueOf(atomic.SwapInt32), + "SwapInt64": reflect.ValueOf(atomic.SwapInt64), + "SwapPointer": reflect.ValueOf(atomic.SwapPointer), + "SwapUint32": reflect.ValueOf(atomic.SwapUint32), + "SwapUint64": reflect.ValueOf(atomic.SwapUint64), + "SwapUintptr": reflect.ValueOf(atomic.SwapUintptr), + + // type definitions + "Value": reflect.ValueOf((*atomic.Value)(nil)), + } +} diff --git a/stdlib/go1_18_testing.go b/stdlib/go1_18_testing.go new file mode 100644 index 000000000..7d107146b --- /dev/null +++ b/stdlib/go1_18_testing.go @@ -0,0 +1,126 @@ +// Code generated by 'yaegi extract testing'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "testing" +) + +func init() { + Symbols["testing/testing"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllocsPerRun": reflect.ValueOf(testing.AllocsPerRun), + "Benchmark": reflect.ValueOf(testing.Benchmark), + "CoverMode": reflect.ValueOf(testing.CoverMode), + "Coverage": reflect.ValueOf(testing.Coverage), + "Init": reflect.ValueOf(testing.Init), + "Main": reflect.ValueOf(testing.Main), + "MainStart": reflect.ValueOf(testing.MainStart), + "RegisterCover": reflect.ValueOf(testing.RegisterCover), + "RunBenchmarks": reflect.ValueOf(testing.RunBenchmarks), + "RunExamples": reflect.ValueOf(testing.RunExamples), + "RunTests": reflect.ValueOf(testing.RunTests), + "Short": reflect.ValueOf(testing.Short), + "Verbose": reflect.ValueOf(testing.Verbose), + + // type definitions + "B": reflect.ValueOf((*testing.B)(nil)), + "BenchmarkResult": reflect.ValueOf((*testing.BenchmarkResult)(nil)), + "Cover": reflect.ValueOf((*testing.Cover)(nil)), + "CoverBlock": reflect.ValueOf((*testing.CoverBlock)(nil)), + "F": reflect.ValueOf((*testing.F)(nil)), + "InternalBenchmark": reflect.ValueOf((*testing.InternalBenchmark)(nil)), + "InternalExample": reflect.ValueOf((*testing.InternalExample)(nil)), + "InternalFuzzTarget": reflect.ValueOf((*testing.InternalFuzzTarget)(nil)), + "InternalTest": reflect.ValueOf((*testing.InternalTest)(nil)), + "M": reflect.ValueOf((*testing.M)(nil)), + "PB": reflect.ValueOf((*testing.PB)(nil)), + "T": reflect.ValueOf((*testing.T)(nil)), + "TB": reflect.ValueOf((*testing.TB)(nil)), + + // interface wrapper definitions + "_TB": reflect.ValueOf((*_testing_TB)(nil)), + } +} + +// _testing_TB is an interface wrapper for TB type +type _testing_TB struct { + IValue interface{} + WCleanup func(a0 func()) + WError func(args ...any) + WErrorf func(format string, args ...any) + WFail func() + WFailNow func() + WFailed func() bool + WFatal func(args ...any) + WFatalf func(format string, args ...any) + WHelper func() + WLog func(args ...any) + WLogf func(format string, args ...any) + WName func() string + WSetenv func(key string, value string) + WSkip func(args ...any) + WSkipNow func() + WSkipf func(format string, args ...any) + WSkipped func() bool + WTempDir func() string +} + +func (W _testing_TB) Cleanup(a0 func()) { + W.WCleanup(a0) +} +func (W _testing_TB) Error(args ...any) { + W.WError(args...) +} +func (W _testing_TB) Errorf(format string, args ...any) { + W.WErrorf(format, args...) +} +func (W _testing_TB) Fail() { + W.WFail() +} +func (W _testing_TB) FailNow() { + W.WFailNow() +} +func (W _testing_TB) Failed() bool { + return W.WFailed() +} +func (W _testing_TB) Fatal(args ...any) { + W.WFatal(args...) +} +func (W _testing_TB) Fatalf(format string, args ...any) { + W.WFatalf(format, args...) +} +func (W _testing_TB) Helper() { + W.WHelper() +} +func (W _testing_TB) Log(args ...any) { + W.WLog(args...) +} +func (W _testing_TB) Logf(format string, args ...any) { + W.WLogf(format, args...) +} +func (W _testing_TB) Name() string { + return W.WName() +} +func (W _testing_TB) Setenv(key string, value string) { + W.WSetenv(key, value) +} +func (W _testing_TB) Skip(args ...any) { + W.WSkip(args...) +} +func (W _testing_TB) SkipNow() { + W.WSkipNow() +} +func (W _testing_TB) Skipf(format string, args ...any) { + W.WSkipf(format, args...) +} +func (W _testing_TB) Skipped() bool { + return W.WSkipped() +} +func (W _testing_TB) TempDir() string { + return W.WTempDir() +} diff --git a/stdlib/go1_18_testing_fstest.go b/stdlib/go1_18_testing_fstest.go new file mode 100644 index 000000000..6733a272f --- /dev/null +++ b/stdlib/go1_18_testing_fstest.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "testing/fstest" +) + +func init() { + Symbols["testing/fstest/fstest"] = map[string]reflect.Value{ + // function, constant and variable definitions + "TestFS": reflect.ValueOf(fstest.TestFS), + + // type definitions + "MapFS": reflect.ValueOf((*fstest.MapFS)(nil)), + "MapFile": reflect.ValueOf((*fstest.MapFile)(nil)), + } +} diff --git a/stdlib/go1_18_testing_iotest.go b/stdlib/go1_18_testing_iotest.go new file mode 100644 index 000000000..e8be5e27e --- /dev/null +++ b/stdlib/go1_18_testing_iotest.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "testing/iotest" +) + +func init() { + Symbols["testing/iotest/iotest"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DataErrReader": reflect.ValueOf(iotest.DataErrReader), + "ErrReader": reflect.ValueOf(iotest.ErrReader), + "ErrTimeout": reflect.ValueOf(&iotest.ErrTimeout).Elem(), + "HalfReader": reflect.ValueOf(iotest.HalfReader), + "NewReadLogger": reflect.ValueOf(iotest.NewReadLogger), + "NewWriteLogger": reflect.ValueOf(iotest.NewWriteLogger), + "OneByteReader": reflect.ValueOf(iotest.OneByteReader), + "TestReader": reflect.ValueOf(iotest.TestReader), + "TimeoutReader": reflect.ValueOf(iotest.TimeoutReader), + "TruncateWriter": reflect.ValueOf(iotest.TruncateWriter), + } +} diff --git a/stdlib/go1_18_testing_quick.go b/stdlib/go1_18_testing_quick.go new file mode 100644 index 000000000..f3bdc868a --- /dev/null +++ b/stdlib/go1_18_testing_quick.go @@ -0,0 +1,41 @@ +// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "math/rand" + "reflect" + "testing/quick" +) + +func init() { + Symbols["testing/quick/quick"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Check": reflect.ValueOf(quick.Check), + "CheckEqual": reflect.ValueOf(quick.CheckEqual), + "Value": reflect.ValueOf(quick.Value), + + // type definitions + "CheckEqualError": reflect.ValueOf((*quick.CheckEqualError)(nil)), + "CheckError": reflect.ValueOf((*quick.CheckError)(nil)), + "Config": reflect.ValueOf((*quick.Config)(nil)), + "Generator": reflect.ValueOf((*quick.Generator)(nil)), + "SetupError": reflect.ValueOf((*quick.SetupError)(nil)), + + // interface wrapper definitions + "_Generator": reflect.ValueOf((*_testing_quick_Generator)(nil)), + } +} + +// _testing_quick_Generator is an interface wrapper for Generator type +type _testing_quick_Generator struct { + IValue interface{} + WGenerate func(rand *rand.Rand, size int) reflect.Value +} + +func (W _testing_quick_Generator) Generate(rand *rand.Rand, size int) reflect.Value { + return W.WGenerate(rand, size) +} diff --git a/stdlib/go1_18_text_scanner.go b/stdlib/go1_18_text_scanner.go new file mode 100644 index 000000000..166f63f8c --- /dev/null +++ b/stdlib/go1_18_text_scanner.go @@ -0,0 +1,42 @@ +// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "text/scanner" +) + +func init() { + Symbols["text/scanner/scanner"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Char": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "Comment": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EOF": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "Float": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "GoTokens": reflect.ValueOf(constant.MakeFromLiteral("1012", token.INT, 0)), + "GoWhitespace": reflect.ValueOf(constant.MakeFromLiteral("4294977024", token.INT, 0)), + "Ident": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Int": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "RawString": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "ScanChars": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ScanComments": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ScanFloats": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ScanIdents": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ScanInts": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ScanRawStrings": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ScanStrings": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SkipComments": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "String": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "TokenString": reflect.ValueOf(scanner.TokenString), + + // type definitions + "Position": reflect.ValueOf((*scanner.Position)(nil)), + "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), + } +} diff --git a/stdlib/go1_18_text_tabwriter.go b/stdlib/go1_18_text_tabwriter.go new file mode 100644 index 000000000..fcd401205 --- /dev/null +++ b/stdlib/go1_18_text_tabwriter.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "text/tabwriter" +) + +func init() { + Symbols["text/tabwriter/tabwriter"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AlignRight": reflect.ValueOf(tabwriter.AlignRight), + "Debug": reflect.ValueOf(tabwriter.Debug), + "DiscardEmptyColumns": reflect.ValueOf(tabwriter.DiscardEmptyColumns), + "Escape": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FilterHTML": reflect.ValueOf(tabwriter.FilterHTML), + "NewWriter": reflect.ValueOf(tabwriter.NewWriter), + "StripEscape": reflect.ValueOf(tabwriter.StripEscape), + "TabIndent": reflect.ValueOf(tabwriter.TabIndent), + + // type definitions + "Writer": reflect.ValueOf((*tabwriter.Writer)(nil)), + } +} diff --git a/stdlib/go1_18_text_template.go b/stdlib/go1_18_text_template.go new file mode 100644 index 000000000..d4fbf11a5 --- /dev/null +++ b/stdlib/go1_18_text_template.go @@ -0,0 +1,35 @@ +// Code generated by 'yaegi extract text/template'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "text/template" +) + +func init() { + Symbols["text/template/template"] = map[string]reflect.Value{ + // function, constant and variable definitions + "HTMLEscape": reflect.ValueOf(template.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), + "IsTrue": reflect.ValueOf(template.IsTrue), + "JSEscape": reflect.ValueOf(template.JSEscape), + "JSEscapeString": reflect.ValueOf(template.JSEscapeString), + "JSEscaper": reflect.ValueOf(template.JSEscaper), + "Must": reflect.ValueOf(template.Must), + "New": reflect.ValueOf(template.New), + "ParseFS": reflect.ValueOf(template.ParseFS), + "ParseFiles": reflect.ValueOf(template.ParseFiles), + "ParseGlob": reflect.ValueOf(template.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), + + // type definitions + "ExecError": reflect.ValueOf((*template.ExecError)(nil)), + "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), + "Template": reflect.ValueOf((*template.Template)(nil)), + } +} diff --git a/stdlib/go1_18_text_template_parse.go b/stdlib/go1_18_text_template_parse.go new file mode 100644 index 000000000..6bb71d788 --- /dev/null +++ b/stdlib/go1_18_text_template_parse.go @@ -0,0 +1,101 @@ +// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "text/template/parse" +) + +func init() { + Symbols["text/template/parse/parse"] = map[string]reflect.Value{ + // function, constant and variable definitions + "IsEmptyTree": reflect.ValueOf(parse.IsEmptyTree), + "New": reflect.ValueOf(parse.New), + "NewIdentifier": reflect.ValueOf(parse.NewIdentifier), + "NodeAction": reflect.ValueOf(parse.NodeAction), + "NodeBool": reflect.ValueOf(parse.NodeBool), + "NodeBreak": reflect.ValueOf(parse.NodeBreak), + "NodeChain": reflect.ValueOf(parse.NodeChain), + "NodeCommand": reflect.ValueOf(parse.NodeCommand), + "NodeComment": reflect.ValueOf(parse.NodeComment), + "NodeContinue": reflect.ValueOf(parse.NodeContinue), + "NodeDot": reflect.ValueOf(parse.NodeDot), + "NodeField": reflect.ValueOf(parse.NodeField), + "NodeIdentifier": reflect.ValueOf(parse.NodeIdentifier), + "NodeIf": reflect.ValueOf(parse.NodeIf), + "NodeList": reflect.ValueOf(parse.NodeList), + "NodeNil": reflect.ValueOf(parse.NodeNil), + "NodeNumber": reflect.ValueOf(parse.NodeNumber), + "NodePipe": reflect.ValueOf(parse.NodePipe), + "NodeRange": reflect.ValueOf(parse.NodeRange), + "NodeString": reflect.ValueOf(parse.NodeString), + "NodeTemplate": reflect.ValueOf(parse.NodeTemplate), + "NodeText": reflect.ValueOf(parse.NodeText), + "NodeVariable": reflect.ValueOf(parse.NodeVariable), + "NodeWith": reflect.ValueOf(parse.NodeWith), + "Parse": reflect.ValueOf(parse.Parse), + "ParseComments": reflect.ValueOf(parse.ParseComments), + "SkipFuncCheck": reflect.ValueOf(parse.SkipFuncCheck), + + // type definitions + "ActionNode": reflect.ValueOf((*parse.ActionNode)(nil)), + "BoolNode": reflect.ValueOf((*parse.BoolNode)(nil)), + "BranchNode": reflect.ValueOf((*parse.BranchNode)(nil)), + "BreakNode": reflect.ValueOf((*parse.BreakNode)(nil)), + "ChainNode": reflect.ValueOf((*parse.ChainNode)(nil)), + "CommandNode": reflect.ValueOf((*parse.CommandNode)(nil)), + "CommentNode": reflect.ValueOf((*parse.CommentNode)(nil)), + "ContinueNode": reflect.ValueOf((*parse.ContinueNode)(nil)), + "DotNode": reflect.ValueOf((*parse.DotNode)(nil)), + "FieldNode": reflect.ValueOf((*parse.FieldNode)(nil)), + "IdentifierNode": reflect.ValueOf((*parse.IdentifierNode)(nil)), + "IfNode": reflect.ValueOf((*parse.IfNode)(nil)), + "ListNode": reflect.ValueOf((*parse.ListNode)(nil)), + "Mode": reflect.ValueOf((*parse.Mode)(nil)), + "NilNode": reflect.ValueOf((*parse.NilNode)(nil)), + "Node": reflect.ValueOf((*parse.Node)(nil)), + "NodeType": reflect.ValueOf((*parse.NodeType)(nil)), + "NumberNode": reflect.ValueOf((*parse.NumberNode)(nil)), + "PipeNode": reflect.ValueOf((*parse.PipeNode)(nil)), + "Pos": reflect.ValueOf((*parse.Pos)(nil)), + "RangeNode": reflect.ValueOf((*parse.RangeNode)(nil)), + "StringNode": reflect.ValueOf((*parse.StringNode)(nil)), + "TemplateNode": reflect.ValueOf((*parse.TemplateNode)(nil)), + "TextNode": reflect.ValueOf((*parse.TextNode)(nil)), + "Tree": reflect.ValueOf((*parse.Tree)(nil)), + "VariableNode": reflect.ValueOf((*parse.VariableNode)(nil)), + "WithNode": reflect.ValueOf((*parse.WithNode)(nil)), + + // interface wrapper definitions + "_Node": reflect.ValueOf((*_text_template_parse_Node)(nil)), + } +} + +// _text_template_parse_Node is an interface wrapper for Node type +type _text_template_parse_Node struct { + IValue interface{} + WCopy func() parse.Node + WPosition func() parse.Pos + WString func() string + WType func() parse.NodeType +} + +func (W _text_template_parse_Node) Copy() parse.Node { + return W.WCopy() +} +func (W _text_template_parse_Node) Position() parse.Pos { + return W.WPosition() +} +func (W _text_template_parse_Node) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _text_template_parse_Node) Type() parse.NodeType { + return W.WType() +} diff --git a/stdlib/go1_18_time.go b/stdlib/go1_18_time.go new file mode 100644 index 000000000..5b1cfc2c6 --- /dev/null +++ b/stdlib/go1_18_time.go @@ -0,0 +1,91 @@ +// Code generated by 'yaegi extract time'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "time" +) + +func init() { + Symbols["time/time"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ANSIC": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 2006\"", token.STRING, 0)), + "After": reflect.ValueOf(time.After), + "AfterFunc": reflect.ValueOf(time.AfterFunc), + "April": reflect.ValueOf(time.April), + "August": reflect.ValueOf(time.August), + "Date": reflect.ValueOf(time.Date), + "December": reflect.ValueOf(time.December), + "February": reflect.ValueOf(time.February), + "FixedZone": reflect.ValueOf(time.FixedZone), + "Friday": reflect.ValueOf(time.Friday), + "Hour": reflect.ValueOf(time.Hour), + "January": reflect.ValueOf(time.January), + "July": reflect.ValueOf(time.July), + "June": reflect.ValueOf(time.June), + "Kitchen": reflect.ValueOf(constant.MakeFromLiteral("\"3:04PM\"", token.STRING, 0)), + "Layout": reflect.ValueOf(constant.MakeFromLiteral("\"01/02 03:04:05PM '06 -0700\"", token.STRING, 0)), + "LoadLocation": reflect.ValueOf(time.LoadLocation), + "LoadLocationFromTZData": reflect.ValueOf(time.LoadLocationFromTZData), + "Local": reflect.ValueOf(&time.Local).Elem(), + "March": reflect.ValueOf(time.March), + "May": reflect.ValueOf(time.May), + "Microsecond": reflect.ValueOf(time.Microsecond), + "Millisecond": reflect.ValueOf(time.Millisecond), + "Minute": reflect.ValueOf(time.Minute), + "Monday": reflect.ValueOf(time.Monday), + "Nanosecond": reflect.ValueOf(time.Nanosecond), + "NewTicker": reflect.ValueOf(time.NewTicker), + "NewTimer": reflect.ValueOf(time.NewTimer), + "November": reflect.ValueOf(time.November), + "Now": reflect.ValueOf(time.Now), + "October": reflect.ValueOf(time.October), + "Parse": reflect.ValueOf(time.Parse), + "ParseDuration": reflect.ValueOf(time.ParseDuration), + "ParseInLocation": reflect.ValueOf(time.ParseInLocation), + "RFC1123": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 MST\"", token.STRING, 0)), + "RFC1123Z": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 -0700\"", token.STRING, 0)), + "RFC3339": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05Z07:00\"", token.STRING, 0)), + "RFC3339Nano": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05.999999999Z07:00\"", token.STRING, 0)), + "RFC822": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 MST\"", token.STRING, 0)), + "RFC822Z": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 -0700\"", token.STRING, 0)), + "RFC850": reflect.ValueOf(constant.MakeFromLiteral("\"Monday, 02-Jan-06 15:04:05 MST\"", token.STRING, 0)), + "RubyDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan 02 15:04:05 -0700 2006\"", token.STRING, 0)), + "Saturday": reflect.ValueOf(time.Saturday), + "Second": reflect.ValueOf(time.Second), + "September": reflect.ValueOf(time.September), + "Since": reflect.ValueOf(time.Since), + "Sleep": reflect.ValueOf(time.Sleep), + "Stamp": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05\"", token.STRING, 0)), + "StampMicro": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000\"", token.STRING, 0)), + "StampMilli": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000\"", token.STRING, 0)), + "StampNano": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000000\"", token.STRING, 0)), + "Sunday": reflect.ValueOf(time.Sunday), + "Thursday": reflect.ValueOf(time.Thursday), + "Tick": reflect.ValueOf(time.Tick), + "Tuesday": reflect.ValueOf(time.Tuesday), + "UTC": reflect.ValueOf(&time.UTC).Elem(), + "Unix": reflect.ValueOf(time.Unix), + "UnixDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 MST 2006\"", token.STRING, 0)), + "UnixMicro": reflect.ValueOf(time.UnixMicro), + "UnixMilli": reflect.ValueOf(time.UnixMilli), + "Until": reflect.ValueOf(time.Until), + "Wednesday": reflect.ValueOf(time.Wednesday), + + // type definitions + "Duration": reflect.ValueOf((*time.Duration)(nil)), + "Location": reflect.ValueOf((*time.Location)(nil)), + "Month": reflect.ValueOf((*time.Month)(nil)), + "ParseError": reflect.ValueOf((*time.ParseError)(nil)), + "Ticker": reflect.ValueOf((*time.Ticker)(nil)), + "Time": reflect.ValueOf((*time.Time)(nil)), + "Timer": reflect.ValueOf((*time.Timer)(nil)), + "Weekday": reflect.ValueOf((*time.Weekday)(nil)), + } +} diff --git a/stdlib/go1_18_unicode.go b/stdlib/go1_18_unicode.go new file mode 100644 index 000000000..ca5d2aeca --- /dev/null +++ b/stdlib/go1_18_unicode.go @@ -0,0 +1,305 @@ +// Code generated by 'yaegi extract unicode'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "unicode" +) + +func init() { + Symbols["unicode/unicode"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ASCII_Hex_Digit": reflect.ValueOf(&unicode.ASCII_Hex_Digit).Elem(), + "Adlam": reflect.ValueOf(&unicode.Adlam).Elem(), + "Ahom": reflect.ValueOf(&unicode.Ahom).Elem(), + "Anatolian_Hieroglyphs": reflect.ValueOf(&unicode.Anatolian_Hieroglyphs).Elem(), + "Arabic": reflect.ValueOf(&unicode.Arabic).Elem(), + "Armenian": reflect.ValueOf(&unicode.Armenian).Elem(), + "Avestan": reflect.ValueOf(&unicode.Avestan).Elem(), + "AzeriCase": reflect.ValueOf(&unicode.AzeriCase).Elem(), + "Balinese": reflect.ValueOf(&unicode.Balinese).Elem(), + "Bamum": reflect.ValueOf(&unicode.Bamum).Elem(), + "Bassa_Vah": reflect.ValueOf(&unicode.Bassa_Vah).Elem(), + "Batak": reflect.ValueOf(&unicode.Batak).Elem(), + "Bengali": reflect.ValueOf(&unicode.Bengali).Elem(), + "Bhaiksuki": reflect.ValueOf(&unicode.Bhaiksuki).Elem(), + "Bidi_Control": reflect.ValueOf(&unicode.Bidi_Control).Elem(), + "Bopomofo": reflect.ValueOf(&unicode.Bopomofo).Elem(), + "Brahmi": reflect.ValueOf(&unicode.Brahmi).Elem(), + "Braille": reflect.ValueOf(&unicode.Braille).Elem(), + "Buginese": reflect.ValueOf(&unicode.Buginese).Elem(), + "Buhid": reflect.ValueOf(&unicode.Buhid).Elem(), + "C": reflect.ValueOf(&unicode.C).Elem(), + "Canadian_Aboriginal": reflect.ValueOf(&unicode.Canadian_Aboriginal).Elem(), + "Carian": reflect.ValueOf(&unicode.Carian).Elem(), + "CaseRanges": reflect.ValueOf(&unicode.CaseRanges).Elem(), + "Categories": reflect.ValueOf(&unicode.Categories).Elem(), + "Caucasian_Albanian": reflect.ValueOf(&unicode.Caucasian_Albanian).Elem(), + "Cc": reflect.ValueOf(&unicode.Cc).Elem(), + "Cf": reflect.ValueOf(&unicode.Cf).Elem(), + "Chakma": reflect.ValueOf(&unicode.Chakma).Elem(), + "Cham": reflect.ValueOf(&unicode.Cham).Elem(), + "Cherokee": reflect.ValueOf(&unicode.Cherokee).Elem(), + "Chorasmian": reflect.ValueOf(&unicode.Chorasmian).Elem(), + "Co": reflect.ValueOf(&unicode.Co).Elem(), + "Common": reflect.ValueOf(&unicode.Common).Elem(), + "Coptic": reflect.ValueOf(&unicode.Coptic).Elem(), + "Cs": reflect.ValueOf(&unicode.Cs).Elem(), + "Cuneiform": reflect.ValueOf(&unicode.Cuneiform).Elem(), + "Cypriot": reflect.ValueOf(&unicode.Cypriot).Elem(), + "Cyrillic": reflect.ValueOf(&unicode.Cyrillic).Elem(), + "Dash": reflect.ValueOf(&unicode.Dash).Elem(), + "Deprecated": reflect.ValueOf(&unicode.Deprecated).Elem(), + "Deseret": reflect.ValueOf(&unicode.Deseret).Elem(), + "Devanagari": reflect.ValueOf(&unicode.Devanagari).Elem(), + "Diacritic": reflect.ValueOf(&unicode.Diacritic).Elem(), + "Digit": reflect.ValueOf(&unicode.Digit).Elem(), + "Dives_Akuru": reflect.ValueOf(&unicode.Dives_Akuru).Elem(), + "Dogra": reflect.ValueOf(&unicode.Dogra).Elem(), + "Duployan": reflect.ValueOf(&unicode.Duployan).Elem(), + "Egyptian_Hieroglyphs": reflect.ValueOf(&unicode.Egyptian_Hieroglyphs).Elem(), + "Elbasan": reflect.ValueOf(&unicode.Elbasan).Elem(), + "Elymaic": reflect.ValueOf(&unicode.Elymaic).Elem(), + "Ethiopic": reflect.ValueOf(&unicode.Ethiopic).Elem(), + "Extender": reflect.ValueOf(&unicode.Extender).Elem(), + "FoldCategory": reflect.ValueOf(&unicode.FoldCategory).Elem(), + "FoldScript": reflect.ValueOf(&unicode.FoldScript).Elem(), + "Georgian": reflect.ValueOf(&unicode.Georgian).Elem(), + "Glagolitic": reflect.ValueOf(&unicode.Glagolitic).Elem(), + "Gothic": reflect.ValueOf(&unicode.Gothic).Elem(), + "Grantha": reflect.ValueOf(&unicode.Grantha).Elem(), + "GraphicRanges": reflect.ValueOf(&unicode.GraphicRanges).Elem(), + "Greek": reflect.ValueOf(&unicode.Greek).Elem(), + "Gujarati": reflect.ValueOf(&unicode.Gujarati).Elem(), + "Gunjala_Gondi": reflect.ValueOf(&unicode.Gunjala_Gondi).Elem(), + "Gurmukhi": reflect.ValueOf(&unicode.Gurmukhi).Elem(), + "Han": reflect.ValueOf(&unicode.Han).Elem(), + "Hangul": reflect.ValueOf(&unicode.Hangul).Elem(), + "Hanifi_Rohingya": reflect.ValueOf(&unicode.Hanifi_Rohingya).Elem(), + "Hanunoo": reflect.ValueOf(&unicode.Hanunoo).Elem(), + "Hatran": reflect.ValueOf(&unicode.Hatran).Elem(), + "Hebrew": reflect.ValueOf(&unicode.Hebrew).Elem(), + "Hex_Digit": reflect.ValueOf(&unicode.Hex_Digit).Elem(), + "Hiragana": reflect.ValueOf(&unicode.Hiragana).Elem(), + "Hyphen": reflect.ValueOf(&unicode.Hyphen).Elem(), + "IDS_Binary_Operator": reflect.ValueOf(&unicode.IDS_Binary_Operator).Elem(), + "IDS_Trinary_Operator": reflect.ValueOf(&unicode.IDS_Trinary_Operator).Elem(), + "Ideographic": reflect.ValueOf(&unicode.Ideographic).Elem(), + "Imperial_Aramaic": reflect.ValueOf(&unicode.Imperial_Aramaic).Elem(), + "In": reflect.ValueOf(unicode.In), + "Inherited": reflect.ValueOf(&unicode.Inherited).Elem(), + "Inscriptional_Pahlavi": reflect.ValueOf(&unicode.Inscriptional_Pahlavi).Elem(), + "Inscriptional_Parthian": reflect.ValueOf(&unicode.Inscriptional_Parthian).Elem(), + "Is": reflect.ValueOf(unicode.Is), + "IsControl": reflect.ValueOf(unicode.IsControl), + "IsDigit": reflect.ValueOf(unicode.IsDigit), + "IsGraphic": reflect.ValueOf(unicode.IsGraphic), + "IsLetter": reflect.ValueOf(unicode.IsLetter), + "IsLower": reflect.ValueOf(unicode.IsLower), + "IsMark": reflect.ValueOf(unicode.IsMark), + "IsNumber": reflect.ValueOf(unicode.IsNumber), + "IsOneOf": reflect.ValueOf(unicode.IsOneOf), + "IsPrint": reflect.ValueOf(unicode.IsPrint), + "IsPunct": reflect.ValueOf(unicode.IsPunct), + "IsSpace": reflect.ValueOf(unicode.IsSpace), + "IsSymbol": reflect.ValueOf(unicode.IsSymbol), + "IsTitle": reflect.ValueOf(unicode.IsTitle), + "IsUpper": reflect.ValueOf(unicode.IsUpper), + "Javanese": reflect.ValueOf(&unicode.Javanese).Elem(), + "Join_Control": reflect.ValueOf(&unicode.Join_Control).Elem(), + "Kaithi": reflect.ValueOf(&unicode.Kaithi).Elem(), + "Kannada": reflect.ValueOf(&unicode.Kannada).Elem(), + "Katakana": reflect.ValueOf(&unicode.Katakana).Elem(), + "Kayah_Li": reflect.ValueOf(&unicode.Kayah_Li).Elem(), + "Kharoshthi": reflect.ValueOf(&unicode.Kharoshthi).Elem(), + "Khitan_Small_Script": reflect.ValueOf(&unicode.Khitan_Small_Script).Elem(), + "Khmer": reflect.ValueOf(&unicode.Khmer).Elem(), + "Khojki": reflect.ValueOf(&unicode.Khojki).Elem(), + "Khudawadi": reflect.ValueOf(&unicode.Khudawadi).Elem(), + "L": reflect.ValueOf(&unicode.L).Elem(), + "Lao": reflect.ValueOf(&unicode.Lao).Elem(), + "Latin": reflect.ValueOf(&unicode.Latin).Elem(), + "Lepcha": reflect.ValueOf(&unicode.Lepcha).Elem(), + "Letter": reflect.ValueOf(&unicode.Letter).Elem(), + "Limbu": reflect.ValueOf(&unicode.Limbu).Elem(), + "Linear_A": reflect.ValueOf(&unicode.Linear_A).Elem(), + "Linear_B": reflect.ValueOf(&unicode.Linear_B).Elem(), + "Lisu": reflect.ValueOf(&unicode.Lisu).Elem(), + "Ll": reflect.ValueOf(&unicode.Ll).Elem(), + "Lm": reflect.ValueOf(&unicode.Lm).Elem(), + "Lo": reflect.ValueOf(&unicode.Lo).Elem(), + "Logical_Order_Exception": reflect.ValueOf(&unicode.Logical_Order_Exception).Elem(), + "Lower": reflect.ValueOf(&unicode.Lower).Elem(), + "LowerCase": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Lt": reflect.ValueOf(&unicode.Lt).Elem(), + "Lu": reflect.ValueOf(&unicode.Lu).Elem(), + "Lycian": reflect.ValueOf(&unicode.Lycian).Elem(), + "Lydian": reflect.ValueOf(&unicode.Lydian).Elem(), + "M": reflect.ValueOf(&unicode.M).Elem(), + "Mahajani": reflect.ValueOf(&unicode.Mahajani).Elem(), + "Makasar": reflect.ValueOf(&unicode.Makasar).Elem(), + "Malayalam": reflect.ValueOf(&unicode.Malayalam).Elem(), + "Mandaic": reflect.ValueOf(&unicode.Mandaic).Elem(), + "Manichaean": reflect.ValueOf(&unicode.Manichaean).Elem(), + "Marchen": reflect.ValueOf(&unicode.Marchen).Elem(), + "Mark": reflect.ValueOf(&unicode.Mark).Elem(), + "Masaram_Gondi": reflect.ValueOf(&unicode.Masaram_Gondi).Elem(), + "MaxASCII": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "MaxCase": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MaxLatin1": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), + "Mc": reflect.ValueOf(&unicode.Mc).Elem(), + "Me": reflect.ValueOf(&unicode.Me).Elem(), + "Medefaidrin": reflect.ValueOf(&unicode.Medefaidrin).Elem(), + "Meetei_Mayek": reflect.ValueOf(&unicode.Meetei_Mayek).Elem(), + "Mende_Kikakui": reflect.ValueOf(&unicode.Mende_Kikakui).Elem(), + "Meroitic_Cursive": reflect.ValueOf(&unicode.Meroitic_Cursive).Elem(), + "Meroitic_Hieroglyphs": reflect.ValueOf(&unicode.Meroitic_Hieroglyphs).Elem(), + "Miao": reflect.ValueOf(&unicode.Miao).Elem(), + "Mn": reflect.ValueOf(&unicode.Mn).Elem(), + "Modi": reflect.ValueOf(&unicode.Modi).Elem(), + "Mongolian": reflect.ValueOf(&unicode.Mongolian).Elem(), + "Mro": reflect.ValueOf(&unicode.Mro).Elem(), + "Multani": reflect.ValueOf(&unicode.Multani).Elem(), + "Myanmar": reflect.ValueOf(&unicode.Myanmar).Elem(), + "N": reflect.ValueOf(&unicode.N).Elem(), + "Nabataean": reflect.ValueOf(&unicode.Nabataean).Elem(), + "Nandinagari": reflect.ValueOf(&unicode.Nandinagari).Elem(), + "Nd": reflect.ValueOf(&unicode.Nd).Elem(), + "New_Tai_Lue": reflect.ValueOf(&unicode.New_Tai_Lue).Elem(), + "Newa": reflect.ValueOf(&unicode.Newa).Elem(), + "Nko": reflect.ValueOf(&unicode.Nko).Elem(), + "Nl": reflect.ValueOf(&unicode.Nl).Elem(), + "No": reflect.ValueOf(&unicode.No).Elem(), + "Noncharacter_Code_Point": reflect.ValueOf(&unicode.Noncharacter_Code_Point).Elem(), + "Number": reflect.ValueOf(&unicode.Number).Elem(), + "Nushu": reflect.ValueOf(&unicode.Nushu).Elem(), + "Nyiakeng_Puachue_Hmong": reflect.ValueOf(&unicode.Nyiakeng_Puachue_Hmong).Elem(), + "Ogham": reflect.ValueOf(&unicode.Ogham).Elem(), + "Ol_Chiki": reflect.ValueOf(&unicode.Ol_Chiki).Elem(), + "Old_Hungarian": reflect.ValueOf(&unicode.Old_Hungarian).Elem(), + "Old_Italic": reflect.ValueOf(&unicode.Old_Italic).Elem(), + "Old_North_Arabian": reflect.ValueOf(&unicode.Old_North_Arabian).Elem(), + "Old_Permic": reflect.ValueOf(&unicode.Old_Permic).Elem(), + "Old_Persian": reflect.ValueOf(&unicode.Old_Persian).Elem(), + "Old_Sogdian": reflect.ValueOf(&unicode.Old_Sogdian).Elem(), + "Old_South_Arabian": reflect.ValueOf(&unicode.Old_South_Arabian).Elem(), + "Old_Turkic": reflect.ValueOf(&unicode.Old_Turkic).Elem(), + "Oriya": reflect.ValueOf(&unicode.Oriya).Elem(), + "Osage": reflect.ValueOf(&unicode.Osage).Elem(), + "Osmanya": reflect.ValueOf(&unicode.Osmanya).Elem(), + "Other": reflect.ValueOf(&unicode.Other).Elem(), + "Other_Alphabetic": reflect.ValueOf(&unicode.Other_Alphabetic).Elem(), + "Other_Default_Ignorable_Code_Point": reflect.ValueOf(&unicode.Other_Default_Ignorable_Code_Point).Elem(), + "Other_Grapheme_Extend": reflect.ValueOf(&unicode.Other_Grapheme_Extend).Elem(), + "Other_ID_Continue": reflect.ValueOf(&unicode.Other_ID_Continue).Elem(), + "Other_ID_Start": reflect.ValueOf(&unicode.Other_ID_Start).Elem(), + "Other_Lowercase": reflect.ValueOf(&unicode.Other_Lowercase).Elem(), + "Other_Math": reflect.ValueOf(&unicode.Other_Math).Elem(), + "Other_Uppercase": reflect.ValueOf(&unicode.Other_Uppercase).Elem(), + "P": reflect.ValueOf(&unicode.P).Elem(), + "Pahawh_Hmong": reflect.ValueOf(&unicode.Pahawh_Hmong).Elem(), + "Palmyrene": reflect.ValueOf(&unicode.Palmyrene).Elem(), + "Pattern_Syntax": reflect.ValueOf(&unicode.Pattern_Syntax).Elem(), + "Pattern_White_Space": reflect.ValueOf(&unicode.Pattern_White_Space).Elem(), + "Pau_Cin_Hau": reflect.ValueOf(&unicode.Pau_Cin_Hau).Elem(), + "Pc": reflect.ValueOf(&unicode.Pc).Elem(), + "Pd": reflect.ValueOf(&unicode.Pd).Elem(), + "Pe": reflect.ValueOf(&unicode.Pe).Elem(), + "Pf": reflect.ValueOf(&unicode.Pf).Elem(), + "Phags_Pa": reflect.ValueOf(&unicode.Phags_Pa).Elem(), + "Phoenician": reflect.ValueOf(&unicode.Phoenician).Elem(), + "Pi": reflect.ValueOf(&unicode.Pi).Elem(), + "Po": reflect.ValueOf(&unicode.Po).Elem(), + "Prepended_Concatenation_Mark": reflect.ValueOf(&unicode.Prepended_Concatenation_Mark).Elem(), + "PrintRanges": reflect.ValueOf(&unicode.PrintRanges).Elem(), + "Properties": reflect.ValueOf(&unicode.Properties).Elem(), + "Ps": reflect.ValueOf(&unicode.Ps).Elem(), + "Psalter_Pahlavi": reflect.ValueOf(&unicode.Psalter_Pahlavi).Elem(), + "Punct": reflect.ValueOf(&unicode.Punct).Elem(), + "Quotation_Mark": reflect.ValueOf(&unicode.Quotation_Mark).Elem(), + "Radical": reflect.ValueOf(&unicode.Radical).Elem(), + "Regional_Indicator": reflect.ValueOf(&unicode.Regional_Indicator).Elem(), + "Rejang": reflect.ValueOf(&unicode.Rejang).Elem(), + "ReplacementChar": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "Runic": reflect.ValueOf(&unicode.Runic).Elem(), + "S": reflect.ValueOf(&unicode.S).Elem(), + "STerm": reflect.ValueOf(&unicode.STerm).Elem(), + "Samaritan": reflect.ValueOf(&unicode.Samaritan).Elem(), + "Saurashtra": reflect.ValueOf(&unicode.Saurashtra).Elem(), + "Sc": reflect.ValueOf(&unicode.Sc).Elem(), + "Scripts": reflect.ValueOf(&unicode.Scripts).Elem(), + "Sentence_Terminal": reflect.ValueOf(&unicode.Sentence_Terminal).Elem(), + "Sharada": reflect.ValueOf(&unicode.Sharada).Elem(), + "Shavian": reflect.ValueOf(&unicode.Shavian).Elem(), + "Siddham": reflect.ValueOf(&unicode.Siddham).Elem(), + "SignWriting": reflect.ValueOf(&unicode.SignWriting).Elem(), + "SimpleFold": reflect.ValueOf(unicode.SimpleFold), + "Sinhala": reflect.ValueOf(&unicode.Sinhala).Elem(), + "Sk": reflect.ValueOf(&unicode.Sk).Elem(), + "Sm": reflect.ValueOf(&unicode.Sm).Elem(), + "So": reflect.ValueOf(&unicode.So).Elem(), + "Soft_Dotted": reflect.ValueOf(&unicode.Soft_Dotted).Elem(), + "Sogdian": reflect.ValueOf(&unicode.Sogdian).Elem(), + "Sora_Sompeng": reflect.ValueOf(&unicode.Sora_Sompeng).Elem(), + "Soyombo": reflect.ValueOf(&unicode.Soyombo).Elem(), + "Space": reflect.ValueOf(&unicode.Space).Elem(), + "Sundanese": reflect.ValueOf(&unicode.Sundanese).Elem(), + "Syloti_Nagri": reflect.ValueOf(&unicode.Syloti_Nagri).Elem(), + "Symbol": reflect.ValueOf(&unicode.Symbol).Elem(), + "Syriac": reflect.ValueOf(&unicode.Syriac).Elem(), + "Tagalog": reflect.ValueOf(&unicode.Tagalog).Elem(), + "Tagbanwa": reflect.ValueOf(&unicode.Tagbanwa).Elem(), + "Tai_Le": reflect.ValueOf(&unicode.Tai_Le).Elem(), + "Tai_Tham": reflect.ValueOf(&unicode.Tai_Tham).Elem(), + "Tai_Viet": reflect.ValueOf(&unicode.Tai_Viet).Elem(), + "Takri": reflect.ValueOf(&unicode.Takri).Elem(), + "Tamil": reflect.ValueOf(&unicode.Tamil).Elem(), + "Tangut": reflect.ValueOf(&unicode.Tangut).Elem(), + "Telugu": reflect.ValueOf(&unicode.Telugu).Elem(), + "Terminal_Punctuation": reflect.ValueOf(&unicode.Terminal_Punctuation).Elem(), + "Thaana": reflect.ValueOf(&unicode.Thaana).Elem(), + "Thai": reflect.ValueOf(&unicode.Thai).Elem(), + "Tibetan": reflect.ValueOf(&unicode.Tibetan).Elem(), + "Tifinagh": reflect.ValueOf(&unicode.Tifinagh).Elem(), + "Tirhuta": reflect.ValueOf(&unicode.Tirhuta).Elem(), + "Title": reflect.ValueOf(&unicode.Title).Elem(), + "TitleCase": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "To": reflect.ValueOf(unicode.To), + "ToLower": reflect.ValueOf(unicode.ToLower), + "ToTitle": reflect.ValueOf(unicode.ToTitle), + "ToUpper": reflect.ValueOf(unicode.ToUpper), + "TurkishCase": reflect.ValueOf(&unicode.TurkishCase).Elem(), + "Ugaritic": reflect.ValueOf(&unicode.Ugaritic).Elem(), + "Unified_Ideograph": reflect.ValueOf(&unicode.Unified_Ideograph).Elem(), + "Upper": reflect.ValueOf(&unicode.Upper).Elem(), + "UpperCase": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "UpperLower": reflect.ValueOf(constant.MakeFromLiteral("1114112", token.INT, 0)), + "Vai": reflect.ValueOf(&unicode.Vai).Elem(), + "Variation_Selector": reflect.ValueOf(&unicode.Variation_Selector).Elem(), + "Version": reflect.ValueOf(constant.MakeFromLiteral("\"13.0.0\"", token.STRING, 0)), + "Wancho": reflect.ValueOf(&unicode.Wancho).Elem(), + "Warang_Citi": reflect.ValueOf(&unicode.Warang_Citi).Elem(), + "White_Space": reflect.ValueOf(&unicode.White_Space).Elem(), + "Yezidi": reflect.ValueOf(&unicode.Yezidi).Elem(), + "Yi": reflect.ValueOf(&unicode.Yi).Elem(), + "Z": reflect.ValueOf(&unicode.Z).Elem(), + "Zanabazar_Square": reflect.ValueOf(&unicode.Zanabazar_Square).Elem(), + "Zl": reflect.ValueOf(&unicode.Zl).Elem(), + "Zp": reflect.ValueOf(&unicode.Zp).Elem(), + "Zs": reflect.ValueOf(&unicode.Zs).Elem(), + + // type definitions + "CaseRange": reflect.ValueOf((*unicode.CaseRange)(nil)), + "Range16": reflect.ValueOf((*unicode.Range16)(nil)), + "Range32": reflect.ValueOf((*unicode.Range32)(nil)), + "RangeTable": reflect.ValueOf((*unicode.RangeTable)(nil)), + "SpecialCase": reflect.ValueOf((*unicode.SpecialCase)(nil)), + } +} diff --git a/stdlib/go1_18_unicode_utf16.go b/stdlib/go1_18_unicode_utf16.go new file mode 100644 index 000000000..977ee4c45 --- /dev/null +++ b/stdlib/go1_18_unicode_utf16.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "reflect" + "unicode/utf16" +) + +func init() { + Symbols["unicode/utf16/utf16"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(utf16.Decode), + "DecodeRune": reflect.ValueOf(utf16.DecodeRune), + "Encode": reflect.ValueOf(utf16.Encode), + "EncodeRune": reflect.ValueOf(utf16.EncodeRune), + "IsSurrogate": reflect.ValueOf(utf16.IsSurrogate), + } +} diff --git a/stdlib/go1_18_unicode_utf8.go b/stdlib/go1_18_unicode_utf8.go new file mode 100644 index 000000000..f8209c2c6 --- /dev/null +++ b/stdlib/go1_18_unicode_utf8.go @@ -0,0 +1,38 @@ +// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "unicode/utf8" +) + +func init() { + Symbols["unicode/utf8/utf8"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AppendRune": reflect.ValueOf(utf8.AppendRune), + "DecodeLastRune": reflect.ValueOf(utf8.DecodeLastRune), + "DecodeLastRuneInString": reflect.ValueOf(utf8.DecodeLastRuneInString), + "DecodeRune": reflect.ValueOf(utf8.DecodeRune), + "DecodeRuneInString": reflect.ValueOf(utf8.DecodeRuneInString), + "EncodeRune": reflect.ValueOf(utf8.EncodeRune), + "FullRune": reflect.ValueOf(utf8.FullRune), + "FullRuneInString": reflect.ValueOf(utf8.FullRuneInString), + "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), + "RuneCount": reflect.ValueOf(utf8.RuneCount), + "RuneCountInString": reflect.ValueOf(utf8.RuneCountInString), + "RuneError": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "RuneLen": reflect.ValueOf(utf8.RuneLen), + "RuneSelf": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RuneStart": reflect.ValueOf(utf8.RuneStart), + "UTFMax": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Valid": reflect.ValueOf(utf8.Valid), + "ValidRune": reflect.ValueOf(utf8.ValidRune), + "ValidString": reflect.ValueOf(utf8.ValidString), + } +} diff --git a/stdlib/go1_19_archive_tar.go b/stdlib/go1_19_archive_tar.go new file mode 100644 index 000000000..14cb077ee --- /dev/null +++ b/stdlib/go1_19_archive_tar.go @@ -0,0 +1,50 @@ +// Code generated by 'yaegi extract archive/tar'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "archive/tar" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["archive/tar/tar"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrFieldTooLong": reflect.ValueOf(&tar.ErrFieldTooLong).Elem(), + "ErrHeader": reflect.ValueOf(&tar.ErrHeader).Elem(), + "ErrWriteAfterClose": reflect.ValueOf(&tar.ErrWriteAfterClose).Elem(), + "ErrWriteTooLong": reflect.ValueOf(&tar.ErrWriteTooLong).Elem(), + "FileInfoHeader": reflect.ValueOf(tar.FileInfoHeader), + "FormatGNU": reflect.ValueOf(tar.FormatGNU), + "FormatPAX": reflect.ValueOf(tar.FormatPAX), + "FormatUSTAR": reflect.ValueOf(tar.FormatUSTAR), + "FormatUnknown": reflect.ValueOf(tar.FormatUnknown), + "NewReader": reflect.ValueOf(tar.NewReader), + "NewWriter": reflect.ValueOf(tar.NewWriter), + "TypeBlock": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "TypeChar": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "TypeCont": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "TypeDir": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "TypeFifo": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "TypeGNULongLink": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "TypeGNULongName": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "TypeGNUSparse": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "TypeLink": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "TypeReg": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "TypeRegA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TypeSymlink": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "TypeXGlobalHeader": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "TypeXHeader": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + + // type definitions + "Format": reflect.ValueOf((*tar.Format)(nil)), + "Header": reflect.ValueOf((*tar.Header)(nil)), + "Reader": reflect.ValueOf((*tar.Reader)(nil)), + "Writer": reflect.ValueOf((*tar.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_archive_zip.go b/stdlib/go1_19_archive_zip.go new file mode 100644 index 000000000..5e904a72f --- /dev/null +++ b/stdlib/go1_19_archive_zip.go @@ -0,0 +1,37 @@ +// Code generated by 'yaegi extract archive/zip'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "archive/zip" + "reflect" +) + +func init() { + Symbols["archive/zip/zip"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Deflate": reflect.ValueOf(zip.Deflate), + "ErrAlgorithm": reflect.ValueOf(&zip.ErrAlgorithm).Elem(), + "ErrChecksum": reflect.ValueOf(&zip.ErrChecksum).Elem(), + "ErrFormat": reflect.ValueOf(&zip.ErrFormat).Elem(), + "FileInfoHeader": reflect.ValueOf(zip.FileInfoHeader), + "NewReader": reflect.ValueOf(zip.NewReader), + "NewWriter": reflect.ValueOf(zip.NewWriter), + "OpenReader": reflect.ValueOf(zip.OpenReader), + "RegisterCompressor": reflect.ValueOf(zip.RegisterCompressor), + "RegisterDecompressor": reflect.ValueOf(zip.RegisterDecompressor), + "Store": reflect.ValueOf(zip.Store), + + // type definitions + "Compressor": reflect.ValueOf((*zip.Compressor)(nil)), + "Decompressor": reflect.ValueOf((*zip.Decompressor)(nil)), + "File": reflect.ValueOf((*zip.File)(nil)), + "FileHeader": reflect.ValueOf((*zip.FileHeader)(nil)), + "ReadCloser": reflect.ValueOf((*zip.ReadCloser)(nil)), + "Reader": reflect.ValueOf((*zip.Reader)(nil)), + "Writer": reflect.ValueOf((*zip.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_bufio.go b/stdlib/go1_19_bufio.go new file mode 100644 index 000000000..26bff86ce --- /dev/null +++ b/stdlib/go1_19_bufio.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract bufio'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "bufio" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["bufio/bufio"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrAdvanceTooFar": reflect.ValueOf(&bufio.ErrAdvanceTooFar).Elem(), + "ErrBadReadCount": reflect.ValueOf(&bufio.ErrBadReadCount).Elem(), + "ErrBufferFull": reflect.ValueOf(&bufio.ErrBufferFull).Elem(), + "ErrFinalToken": reflect.ValueOf(&bufio.ErrFinalToken).Elem(), + "ErrInvalidUnreadByte": reflect.ValueOf(&bufio.ErrInvalidUnreadByte).Elem(), + "ErrInvalidUnreadRune": reflect.ValueOf(&bufio.ErrInvalidUnreadRune).Elem(), + "ErrNegativeAdvance": reflect.ValueOf(&bufio.ErrNegativeAdvance).Elem(), + "ErrNegativeCount": reflect.ValueOf(&bufio.ErrNegativeCount).Elem(), + "ErrTooLong": reflect.ValueOf(&bufio.ErrTooLong).Elem(), + "MaxScanTokenSize": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "NewReadWriter": reflect.ValueOf(bufio.NewReadWriter), + "NewReader": reflect.ValueOf(bufio.NewReader), + "NewReaderSize": reflect.ValueOf(bufio.NewReaderSize), + "NewScanner": reflect.ValueOf(bufio.NewScanner), + "NewWriter": reflect.ValueOf(bufio.NewWriter), + "NewWriterSize": reflect.ValueOf(bufio.NewWriterSize), + "ScanBytes": reflect.ValueOf(bufio.ScanBytes), + "ScanLines": reflect.ValueOf(bufio.ScanLines), + "ScanRunes": reflect.ValueOf(bufio.ScanRunes), + "ScanWords": reflect.ValueOf(bufio.ScanWords), + + // type definitions + "ReadWriter": reflect.ValueOf((*bufio.ReadWriter)(nil)), + "Reader": reflect.ValueOf((*bufio.Reader)(nil)), + "Scanner": reflect.ValueOf((*bufio.Scanner)(nil)), + "SplitFunc": reflect.ValueOf((*bufio.SplitFunc)(nil)), + "Writer": reflect.ValueOf((*bufio.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_bytes.go b/stdlib/go1_19_bytes.go new file mode 100644 index 000000000..11b1d62e2 --- /dev/null +++ b/stdlib/go1_19_bytes.go @@ -0,0 +1,76 @@ +// Code generated by 'yaegi extract bytes'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "bytes" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["bytes/bytes"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Compare": reflect.ValueOf(bytes.Compare), + "Contains": reflect.ValueOf(bytes.Contains), + "ContainsAny": reflect.ValueOf(bytes.ContainsAny), + "ContainsRune": reflect.ValueOf(bytes.ContainsRune), + "Count": reflect.ValueOf(bytes.Count), + "Cut": reflect.ValueOf(bytes.Cut), + "Equal": reflect.ValueOf(bytes.Equal), + "EqualFold": reflect.ValueOf(bytes.EqualFold), + "ErrTooLarge": reflect.ValueOf(&bytes.ErrTooLarge).Elem(), + "Fields": reflect.ValueOf(bytes.Fields), + "FieldsFunc": reflect.ValueOf(bytes.FieldsFunc), + "HasPrefix": reflect.ValueOf(bytes.HasPrefix), + "HasSuffix": reflect.ValueOf(bytes.HasSuffix), + "Index": reflect.ValueOf(bytes.Index), + "IndexAny": reflect.ValueOf(bytes.IndexAny), + "IndexByte": reflect.ValueOf(bytes.IndexByte), + "IndexFunc": reflect.ValueOf(bytes.IndexFunc), + "IndexRune": reflect.ValueOf(bytes.IndexRune), + "Join": reflect.ValueOf(bytes.Join), + "LastIndex": reflect.ValueOf(bytes.LastIndex), + "LastIndexAny": reflect.ValueOf(bytes.LastIndexAny), + "LastIndexByte": reflect.ValueOf(bytes.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(bytes.LastIndexFunc), + "Map": reflect.ValueOf(bytes.Map), + "MinRead": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NewBuffer": reflect.ValueOf(bytes.NewBuffer), + "NewBufferString": reflect.ValueOf(bytes.NewBufferString), + "NewReader": reflect.ValueOf(bytes.NewReader), + "Repeat": reflect.ValueOf(bytes.Repeat), + "Replace": reflect.ValueOf(bytes.Replace), + "ReplaceAll": reflect.ValueOf(bytes.ReplaceAll), + "Runes": reflect.ValueOf(bytes.Runes), + "Split": reflect.ValueOf(bytes.Split), + "SplitAfter": reflect.ValueOf(bytes.SplitAfter), + "SplitAfterN": reflect.ValueOf(bytes.SplitAfterN), + "SplitN": reflect.ValueOf(bytes.SplitN), + "Title": reflect.ValueOf(bytes.Title), + "ToLower": reflect.ValueOf(bytes.ToLower), + "ToLowerSpecial": reflect.ValueOf(bytes.ToLowerSpecial), + "ToTitle": reflect.ValueOf(bytes.ToTitle), + "ToTitleSpecial": reflect.ValueOf(bytes.ToTitleSpecial), + "ToUpper": reflect.ValueOf(bytes.ToUpper), + "ToUpperSpecial": reflect.ValueOf(bytes.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(bytes.ToValidUTF8), + "Trim": reflect.ValueOf(bytes.Trim), + "TrimFunc": reflect.ValueOf(bytes.TrimFunc), + "TrimLeft": reflect.ValueOf(bytes.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(bytes.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(bytes.TrimPrefix), + "TrimRight": reflect.ValueOf(bytes.TrimRight), + "TrimRightFunc": reflect.ValueOf(bytes.TrimRightFunc), + "TrimSpace": reflect.ValueOf(bytes.TrimSpace), + "TrimSuffix": reflect.ValueOf(bytes.TrimSuffix), + + // type definitions + "Buffer": reflect.ValueOf((*bytes.Buffer)(nil)), + "Reader": reflect.ValueOf((*bytes.Reader)(nil)), + } +} diff --git a/stdlib/go1_19_compress_bzip2.go b/stdlib/go1_19_compress_bzip2.go new file mode 100644 index 000000000..2194693a5 --- /dev/null +++ b/stdlib/go1_19_compress_bzip2.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract compress/bzip2'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "compress/bzip2" + "reflect" +) + +func init() { + Symbols["compress/bzip2/bzip2"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewReader": reflect.ValueOf(bzip2.NewReader), + + // type definitions + "StructuralError": reflect.ValueOf((*bzip2.StructuralError)(nil)), + } +} diff --git a/stdlib/go1_19_compress_flate.go b/stdlib/go1_19_compress_flate.go new file mode 100644 index 000000000..4498a40fd --- /dev/null +++ b/stdlib/go1_19_compress_flate.go @@ -0,0 +1,66 @@ +// Code generated by 'yaegi extract compress/flate'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "compress/flate" + "go/constant" + "go/token" + "io" + "reflect" +) + +func init() { + Symbols["compress/flate/flate"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "NewReader": reflect.ValueOf(flate.NewReader), + "NewReaderDict": reflect.ValueOf(flate.NewReaderDict), + "NewWriter": reflect.ValueOf(flate.NewWriter), + "NewWriterDict": reflect.ValueOf(flate.NewWriterDict), + "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + + // type definitions + "CorruptInputError": reflect.ValueOf((*flate.CorruptInputError)(nil)), + "InternalError": reflect.ValueOf((*flate.InternalError)(nil)), + "ReadError": reflect.ValueOf((*flate.ReadError)(nil)), + "Reader": reflect.ValueOf((*flate.Reader)(nil)), + "Resetter": reflect.ValueOf((*flate.Resetter)(nil)), + "WriteError": reflect.ValueOf((*flate.WriteError)(nil)), + "Writer": reflect.ValueOf((*flate.Writer)(nil)), + + // interface wrapper definitions + "_Reader": reflect.ValueOf((*_compress_flate_Reader)(nil)), + "_Resetter": reflect.ValueOf((*_compress_flate_Resetter)(nil)), + } +} + +// _compress_flate_Reader is an interface wrapper for Reader type +type _compress_flate_Reader struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WReadByte func() (byte, error) +} + +func (W _compress_flate_Reader) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _compress_flate_Reader) ReadByte() (byte, error) { + return W.WReadByte() +} + +// _compress_flate_Resetter is an interface wrapper for Resetter type +type _compress_flate_Resetter struct { + IValue interface{} + WReset func(r io.Reader, dict []byte) error +} + +func (W _compress_flate_Resetter) Reset(r io.Reader, dict []byte) error { + return W.WReset(r, dict) +} diff --git a/stdlib/go1_19_compress_gzip.go b/stdlib/go1_19_compress_gzip.go new file mode 100644 index 000000000..29455b8fb --- /dev/null +++ b/stdlib/go1_19_compress_gzip.go @@ -0,0 +1,34 @@ +// Code generated by 'yaegi extract compress/gzip'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "compress/gzip" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["compress/gzip/gzip"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "ErrChecksum": reflect.ValueOf(&gzip.ErrChecksum).Elem(), + "ErrHeader": reflect.ValueOf(&gzip.ErrHeader).Elem(), + "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "NewReader": reflect.ValueOf(gzip.NewReader), + "NewWriter": reflect.ValueOf(gzip.NewWriter), + "NewWriterLevel": reflect.ValueOf(gzip.NewWriterLevel), + "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + + // type definitions + "Header": reflect.ValueOf((*gzip.Header)(nil)), + "Reader": reflect.ValueOf((*gzip.Reader)(nil)), + "Writer": reflect.ValueOf((*gzip.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_compress_lzw.go b/stdlib/go1_19_compress_lzw.go new file mode 100644 index 000000000..0cd6d8c56 --- /dev/null +++ b/stdlib/go1_19_compress_lzw.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract compress/lzw'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "compress/lzw" + "reflect" +) + +func init() { + Symbols["compress/lzw/lzw"] = map[string]reflect.Value{ + // function, constant and variable definitions + "LSB": reflect.ValueOf(lzw.LSB), + "MSB": reflect.ValueOf(lzw.MSB), + "NewReader": reflect.ValueOf(lzw.NewReader), + "NewWriter": reflect.ValueOf(lzw.NewWriter), + + // type definitions + "Order": reflect.ValueOf((*lzw.Order)(nil)), + "Reader": reflect.ValueOf((*lzw.Reader)(nil)), + "Writer": reflect.ValueOf((*lzw.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_compress_zlib.go b/stdlib/go1_19_compress_zlib.go new file mode 100644 index 000000000..667209d62 --- /dev/null +++ b/stdlib/go1_19_compress_zlib.go @@ -0,0 +1,50 @@ +// Code generated by 'yaegi extract compress/zlib'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "compress/zlib" + "go/constant" + "go/token" + "io" + "reflect" +) + +func init() { + Symbols["compress/zlib/zlib"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "BestSpeed": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DefaultCompression": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "ErrChecksum": reflect.ValueOf(&zlib.ErrChecksum).Elem(), + "ErrDictionary": reflect.ValueOf(&zlib.ErrDictionary).Elem(), + "ErrHeader": reflect.ValueOf(&zlib.ErrHeader).Elem(), + "HuffmanOnly": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "NewReader": reflect.ValueOf(zlib.NewReader), + "NewReaderDict": reflect.ValueOf(zlib.NewReaderDict), + "NewWriter": reflect.ValueOf(zlib.NewWriter), + "NewWriterLevel": reflect.ValueOf(zlib.NewWriterLevel), + "NewWriterLevelDict": reflect.ValueOf(zlib.NewWriterLevelDict), + "NoCompression": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + + // type definitions + "Resetter": reflect.ValueOf((*zlib.Resetter)(nil)), + "Writer": reflect.ValueOf((*zlib.Writer)(nil)), + + // interface wrapper definitions + "_Resetter": reflect.ValueOf((*_compress_zlib_Resetter)(nil)), + } +} + +// _compress_zlib_Resetter is an interface wrapper for Resetter type +type _compress_zlib_Resetter struct { + IValue interface{} + WReset func(r io.Reader, dict []byte) error +} + +func (W _compress_zlib_Resetter) Reset(r io.Reader, dict []byte) error { + return W.WReset(r, dict) +} diff --git a/stdlib/go1_19_container_heap.go b/stdlib/go1_19_container_heap.go new file mode 100644 index 000000000..6fa4f093b --- /dev/null +++ b/stdlib/go1_19_container_heap.go @@ -0,0 +1,54 @@ +// Code generated by 'yaegi extract container/heap'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "container/heap" + "reflect" +) + +func init() { + Symbols["container/heap/heap"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Fix": reflect.ValueOf(heap.Fix), + "Init": reflect.ValueOf(heap.Init), + "Pop": reflect.ValueOf(heap.Pop), + "Push": reflect.ValueOf(heap.Push), + "Remove": reflect.ValueOf(heap.Remove), + + // type definitions + "Interface": reflect.ValueOf((*heap.Interface)(nil)), + + // interface wrapper definitions + "_Interface": reflect.ValueOf((*_container_heap_Interface)(nil)), + } +} + +// _container_heap_Interface is an interface wrapper for Interface type +type _container_heap_Interface struct { + IValue interface{} + WLen func() int + WLess func(i int, j int) bool + WPop func() any + WPush func(x any) + WSwap func(i int, j int) +} + +func (W _container_heap_Interface) Len() int { + return W.WLen() +} +func (W _container_heap_Interface) Less(i int, j int) bool { + return W.WLess(i, j) +} +func (W _container_heap_Interface) Pop() any { + return W.WPop() +} +func (W _container_heap_Interface) Push(x any) { + W.WPush(x) +} +func (W _container_heap_Interface) Swap(i int, j int) { + W.WSwap(i, j) +} diff --git a/stdlib/go1_19_container_list.go b/stdlib/go1_19_container_list.go new file mode 100644 index 000000000..091b32688 --- /dev/null +++ b/stdlib/go1_19_container_list.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract container/list'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "container/list" + "reflect" +) + +func init() { + Symbols["container/list/list"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(list.New), + + // type definitions + "Element": reflect.ValueOf((*list.Element)(nil)), + "List": reflect.ValueOf((*list.List)(nil)), + } +} diff --git a/stdlib/go1_19_container_ring.go b/stdlib/go1_19_container_ring.go new file mode 100644 index 000000000..04dde2c50 --- /dev/null +++ b/stdlib/go1_19_container_ring.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract container/ring'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "container/ring" + "reflect" +) + +func init() { + Symbols["container/ring/ring"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(ring.New), + + // type definitions + "Ring": reflect.ValueOf((*ring.Ring)(nil)), + } +} diff --git a/stdlib/go1_19_context.go b/stdlib/go1_19_context.go new file mode 100644 index 000000000..4fb21b6c4 --- /dev/null +++ b/stdlib/go1_19_context.go @@ -0,0 +1,55 @@ +// Code generated by 'yaegi extract context'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "context" + "reflect" + "time" +) + +func init() { + Symbols["context/context"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Background": reflect.ValueOf(context.Background), + "Canceled": reflect.ValueOf(&context.Canceled).Elem(), + "DeadlineExceeded": reflect.ValueOf(&context.DeadlineExceeded).Elem(), + "TODO": reflect.ValueOf(context.TODO), + "WithCancel": reflect.ValueOf(context.WithCancel), + "WithDeadline": reflect.ValueOf(context.WithDeadline), + "WithTimeout": reflect.ValueOf(context.WithTimeout), + "WithValue": reflect.ValueOf(context.WithValue), + + // type definitions + "CancelFunc": reflect.ValueOf((*context.CancelFunc)(nil)), + "Context": reflect.ValueOf((*context.Context)(nil)), + + // interface wrapper definitions + "_Context": reflect.ValueOf((*_context_Context)(nil)), + } +} + +// _context_Context is an interface wrapper for Context type +type _context_Context struct { + IValue interface{} + WDeadline func() (deadline time.Time, ok bool) + WDone func() <-chan struct{} + WErr func() error + WValue func(key any) any +} + +func (W _context_Context) Deadline() (deadline time.Time, ok bool) { + return W.WDeadline() +} +func (W _context_Context) Done() <-chan struct{} { + return W.WDone() +} +func (W _context_Context) Err() error { + return W.WErr() +} +func (W _context_Context) Value(key any) any { + return W.WValue(key) +} diff --git a/stdlib/go1_19_crypto.go b/stdlib/go1_19_crypto.go new file mode 100644 index 000000000..14136ddb2 --- /dev/null +++ b/stdlib/go1_19_crypto.go @@ -0,0 +1,108 @@ +// Code generated by 'yaegi extract crypto'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto" + "io" + "reflect" +) + +func init() { + Symbols["crypto/crypto"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BLAKE2b_256": reflect.ValueOf(crypto.BLAKE2b_256), + "BLAKE2b_384": reflect.ValueOf(crypto.BLAKE2b_384), + "BLAKE2b_512": reflect.ValueOf(crypto.BLAKE2b_512), + "BLAKE2s_256": reflect.ValueOf(crypto.BLAKE2s_256), + "MD4": reflect.ValueOf(crypto.MD4), + "MD5": reflect.ValueOf(crypto.MD5), + "MD5SHA1": reflect.ValueOf(crypto.MD5SHA1), + "RIPEMD160": reflect.ValueOf(crypto.RIPEMD160), + "RegisterHash": reflect.ValueOf(crypto.RegisterHash), + "SHA1": reflect.ValueOf(crypto.SHA1), + "SHA224": reflect.ValueOf(crypto.SHA224), + "SHA256": reflect.ValueOf(crypto.SHA256), + "SHA384": reflect.ValueOf(crypto.SHA384), + "SHA3_224": reflect.ValueOf(crypto.SHA3_224), + "SHA3_256": reflect.ValueOf(crypto.SHA3_256), + "SHA3_384": reflect.ValueOf(crypto.SHA3_384), + "SHA3_512": reflect.ValueOf(crypto.SHA3_512), + "SHA512": reflect.ValueOf(crypto.SHA512), + "SHA512_224": reflect.ValueOf(crypto.SHA512_224), + "SHA512_256": reflect.ValueOf(crypto.SHA512_256), + + // type definitions + "Decrypter": reflect.ValueOf((*crypto.Decrypter)(nil)), + "DecrypterOpts": reflect.ValueOf((*crypto.DecrypterOpts)(nil)), + "Hash": reflect.ValueOf((*crypto.Hash)(nil)), + "PrivateKey": reflect.ValueOf((*crypto.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*crypto.PublicKey)(nil)), + "Signer": reflect.ValueOf((*crypto.Signer)(nil)), + "SignerOpts": reflect.ValueOf((*crypto.SignerOpts)(nil)), + + // interface wrapper definitions + "_Decrypter": reflect.ValueOf((*_crypto_Decrypter)(nil)), + "_DecrypterOpts": reflect.ValueOf((*_crypto_DecrypterOpts)(nil)), + "_PrivateKey": reflect.ValueOf((*_crypto_PrivateKey)(nil)), + "_PublicKey": reflect.ValueOf((*_crypto_PublicKey)(nil)), + "_Signer": reflect.ValueOf((*_crypto_Signer)(nil)), + "_SignerOpts": reflect.ValueOf((*_crypto_SignerOpts)(nil)), + } +} + +// _crypto_Decrypter is an interface wrapper for Decrypter type +type _crypto_Decrypter struct { + IValue interface{} + WDecrypt func(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) + WPublic func() crypto.PublicKey +} + +func (W _crypto_Decrypter) Decrypt(rand io.Reader, msg []byte, opts crypto.DecrypterOpts) (plaintext []byte, err error) { + return W.WDecrypt(rand, msg, opts) +} +func (W _crypto_Decrypter) Public() crypto.PublicKey { + return W.WPublic() +} + +// _crypto_DecrypterOpts is an interface wrapper for DecrypterOpts type +type _crypto_DecrypterOpts struct { + IValue interface{} +} + +// _crypto_PrivateKey is an interface wrapper for PrivateKey type +type _crypto_PrivateKey struct { + IValue interface{} +} + +// _crypto_PublicKey is an interface wrapper for PublicKey type +type _crypto_PublicKey struct { + IValue interface{} +} + +// _crypto_Signer is an interface wrapper for Signer type +type _crypto_Signer struct { + IValue interface{} + WPublic func() crypto.PublicKey + WSign func(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) +} + +func (W _crypto_Signer) Public() crypto.PublicKey { + return W.WPublic() +} +func (W _crypto_Signer) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) { + return W.WSign(rand, digest, opts) +} + +// _crypto_SignerOpts is an interface wrapper for SignerOpts type +type _crypto_SignerOpts struct { + IValue interface{} + WHashFunc func() crypto.Hash +} + +func (W _crypto_SignerOpts) HashFunc() crypto.Hash { + return W.WHashFunc() +} diff --git a/stdlib/go1_19_crypto_aes.go b/stdlib/go1_19_crypto_aes.go new file mode 100644 index 000000000..d8759bb2a --- /dev/null +++ b/stdlib/go1_19_crypto_aes.go @@ -0,0 +1,24 @@ +// Code generated by 'yaegi extract crypto/aes'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/aes" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/aes/aes"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NewCipher": reflect.ValueOf(aes.NewCipher), + + // type definitions + "KeySizeError": reflect.ValueOf((*aes.KeySizeError)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_cipher.go b/stdlib/go1_19_crypto_cipher.go new file mode 100644 index 000000000..0ad18c492 --- /dev/null +++ b/stdlib/go1_19_crypto_cipher.go @@ -0,0 +1,104 @@ +// Code generated by 'yaegi extract crypto/cipher'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/cipher" + "reflect" +) + +func init() { + Symbols["crypto/cipher/cipher"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewCBCDecrypter": reflect.ValueOf(cipher.NewCBCDecrypter), + "NewCBCEncrypter": reflect.ValueOf(cipher.NewCBCEncrypter), + "NewCFBDecrypter": reflect.ValueOf(cipher.NewCFBDecrypter), + "NewCFBEncrypter": reflect.ValueOf(cipher.NewCFBEncrypter), + "NewCTR": reflect.ValueOf(cipher.NewCTR), + "NewGCM": reflect.ValueOf(cipher.NewGCM), + "NewGCMWithNonceSize": reflect.ValueOf(cipher.NewGCMWithNonceSize), + "NewGCMWithTagSize": reflect.ValueOf(cipher.NewGCMWithTagSize), + "NewOFB": reflect.ValueOf(cipher.NewOFB), + + // type definitions + "AEAD": reflect.ValueOf((*cipher.AEAD)(nil)), + "Block": reflect.ValueOf((*cipher.Block)(nil)), + "BlockMode": reflect.ValueOf((*cipher.BlockMode)(nil)), + "Stream": reflect.ValueOf((*cipher.Stream)(nil)), + "StreamReader": reflect.ValueOf((*cipher.StreamReader)(nil)), + "StreamWriter": reflect.ValueOf((*cipher.StreamWriter)(nil)), + + // interface wrapper definitions + "_AEAD": reflect.ValueOf((*_crypto_cipher_AEAD)(nil)), + "_Block": reflect.ValueOf((*_crypto_cipher_Block)(nil)), + "_BlockMode": reflect.ValueOf((*_crypto_cipher_BlockMode)(nil)), + "_Stream": reflect.ValueOf((*_crypto_cipher_Stream)(nil)), + } +} + +// _crypto_cipher_AEAD is an interface wrapper for AEAD type +type _crypto_cipher_AEAD struct { + IValue interface{} + WNonceSize func() int + WOpen func(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) + WOverhead func() int + WSeal func(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte +} + +func (W _crypto_cipher_AEAD) NonceSize() int { + return W.WNonceSize() +} +func (W _crypto_cipher_AEAD) Open(dst []byte, nonce []byte, ciphertext []byte, additionalData []byte) ([]byte, error) { + return W.WOpen(dst, nonce, ciphertext, additionalData) +} +func (W _crypto_cipher_AEAD) Overhead() int { + return W.WOverhead() +} +func (W _crypto_cipher_AEAD) Seal(dst []byte, nonce []byte, plaintext []byte, additionalData []byte) []byte { + return W.WSeal(dst, nonce, plaintext, additionalData) +} + +// _crypto_cipher_Block is an interface wrapper for Block type +type _crypto_cipher_Block struct { + IValue interface{} + WBlockSize func() int + WDecrypt func(dst []byte, src []byte) + WEncrypt func(dst []byte, src []byte) +} + +func (W _crypto_cipher_Block) BlockSize() int { + return W.WBlockSize() +} +func (W _crypto_cipher_Block) Decrypt(dst []byte, src []byte) { + W.WDecrypt(dst, src) +} +func (W _crypto_cipher_Block) Encrypt(dst []byte, src []byte) { + W.WEncrypt(dst, src) +} + +// _crypto_cipher_BlockMode is an interface wrapper for BlockMode type +type _crypto_cipher_BlockMode struct { + IValue interface{} + WBlockSize func() int + WCryptBlocks func(dst []byte, src []byte) +} + +func (W _crypto_cipher_BlockMode) BlockSize() int { + return W.WBlockSize() +} +func (W _crypto_cipher_BlockMode) CryptBlocks(dst []byte, src []byte) { + W.WCryptBlocks(dst, src) +} + +// _crypto_cipher_Stream is an interface wrapper for Stream type +type _crypto_cipher_Stream struct { + IValue interface{} + WXORKeyStream func(dst []byte, src []byte) +} + +func (W _crypto_cipher_Stream) XORKeyStream(dst []byte, src []byte) { + W.WXORKeyStream(dst, src) +} diff --git a/stdlib/go1_19_crypto_des.go b/stdlib/go1_19_crypto_des.go new file mode 100644 index 000000000..9bf7073c8 --- /dev/null +++ b/stdlib/go1_19_crypto_des.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract crypto/des'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/des" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/des/des"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NewCipher": reflect.ValueOf(des.NewCipher), + "NewTripleDESCipher": reflect.ValueOf(des.NewTripleDESCipher), + + // type definitions + "KeySizeError": reflect.ValueOf((*des.KeySizeError)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_dsa.go b/stdlib/go1_19_crypto_dsa.go new file mode 100644 index 000000000..2953baacc --- /dev/null +++ b/stdlib/go1_19_crypto_dsa.go @@ -0,0 +1,32 @@ +// Code generated by 'yaegi extract crypto/dsa'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/dsa" + "reflect" +) + +func init() { + Symbols["crypto/dsa/dsa"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrInvalidPublicKey": reflect.ValueOf(&dsa.ErrInvalidPublicKey).Elem(), + "GenerateKey": reflect.ValueOf(dsa.GenerateKey), + "GenerateParameters": reflect.ValueOf(dsa.GenerateParameters), + "L1024N160": reflect.ValueOf(dsa.L1024N160), + "L2048N224": reflect.ValueOf(dsa.L2048N224), + "L2048N256": reflect.ValueOf(dsa.L2048N256), + "L3072N256": reflect.ValueOf(dsa.L3072N256), + "Sign": reflect.ValueOf(dsa.Sign), + "Verify": reflect.ValueOf(dsa.Verify), + + // type definitions + "ParameterSizes": reflect.ValueOf((*dsa.ParameterSizes)(nil)), + "Parameters": reflect.ValueOf((*dsa.Parameters)(nil)), + "PrivateKey": reflect.ValueOf((*dsa.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*dsa.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_ecdsa.go b/stdlib/go1_19_crypto_ecdsa.go new file mode 100644 index 000000000..63a0cd24a --- /dev/null +++ b/stdlib/go1_19_crypto_ecdsa.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract crypto/ecdsa'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/ecdsa" + "reflect" +) + +func init() { + Symbols["crypto/ecdsa/ecdsa"] = map[string]reflect.Value{ + // function, constant and variable definitions + "GenerateKey": reflect.ValueOf(ecdsa.GenerateKey), + "Sign": reflect.ValueOf(ecdsa.Sign), + "SignASN1": reflect.ValueOf(ecdsa.SignASN1), + "Verify": reflect.ValueOf(ecdsa.Verify), + "VerifyASN1": reflect.ValueOf(ecdsa.VerifyASN1), + + // type definitions + "PrivateKey": reflect.ValueOf((*ecdsa.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*ecdsa.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_ed25519.go b/stdlib/go1_19_crypto_ed25519.go new file mode 100644 index 000000000..6a894a1d9 --- /dev/null +++ b/stdlib/go1_19_crypto_ed25519.go @@ -0,0 +1,31 @@ +// Code generated by 'yaegi extract crypto/ed25519'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/ed25519" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/ed25519/ed25519"] = map[string]reflect.Value{ + // function, constant and variable definitions + "GenerateKey": reflect.ValueOf(ed25519.GenerateKey), + "NewKeyFromSeed": reflect.ValueOf(ed25519.NewKeyFromSeed), + "PrivateKeySize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PublicKeySize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SeedSize": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Sign": reflect.ValueOf(ed25519.Sign), + "SignatureSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Verify": reflect.ValueOf(ed25519.Verify), + + // type definitions + "PrivateKey": reflect.ValueOf((*ed25519.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*ed25519.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_elliptic.go b/stdlib/go1_19_crypto_elliptic.go new file mode 100644 index 000000000..457b79ea7 --- /dev/null +++ b/stdlib/go1_19_crypto_elliptic.go @@ -0,0 +1,64 @@ +// Code generated by 'yaegi extract crypto/elliptic'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/elliptic" + "math/big" + "reflect" +) + +func init() { + Symbols["crypto/elliptic/elliptic"] = map[string]reflect.Value{ + // function, constant and variable definitions + "GenerateKey": reflect.ValueOf(elliptic.GenerateKey), + "Marshal": reflect.ValueOf(elliptic.Marshal), + "MarshalCompressed": reflect.ValueOf(elliptic.MarshalCompressed), + "P224": reflect.ValueOf(elliptic.P224), + "P256": reflect.ValueOf(elliptic.P256), + "P384": reflect.ValueOf(elliptic.P384), + "P521": reflect.ValueOf(elliptic.P521), + "Unmarshal": reflect.ValueOf(elliptic.Unmarshal), + "UnmarshalCompressed": reflect.ValueOf(elliptic.UnmarshalCompressed), + + // type definitions + "Curve": reflect.ValueOf((*elliptic.Curve)(nil)), + "CurveParams": reflect.ValueOf((*elliptic.CurveParams)(nil)), + + // interface wrapper definitions + "_Curve": reflect.ValueOf((*_crypto_elliptic_Curve)(nil)), + } +} + +// _crypto_elliptic_Curve is an interface wrapper for Curve type +type _crypto_elliptic_Curve struct { + IValue interface{} + WAdd func(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) + WDouble func(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) + WIsOnCurve func(x *big.Int, y *big.Int) bool + WParams func() *elliptic.CurveParams + WScalarBaseMult func(k []byte) (x *big.Int, y *big.Int) + WScalarMult func(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) +} + +func (W _crypto_elliptic_Curve) Add(x1 *big.Int, y1 *big.Int, x2 *big.Int, y2 *big.Int) (x *big.Int, y *big.Int) { + return W.WAdd(x1, y1, x2, y2) +} +func (W _crypto_elliptic_Curve) Double(x1 *big.Int, y1 *big.Int) (x *big.Int, y *big.Int) { + return W.WDouble(x1, y1) +} +func (W _crypto_elliptic_Curve) IsOnCurve(x *big.Int, y *big.Int) bool { + return W.WIsOnCurve(x, y) +} +func (W _crypto_elliptic_Curve) Params() *elliptic.CurveParams { + return W.WParams() +} +func (W _crypto_elliptic_Curve) ScalarBaseMult(k []byte) (x *big.Int, y *big.Int) { + return W.WScalarBaseMult(k) +} +func (W _crypto_elliptic_Curve) ScalarMult(x1 *big.Int, y1 *big.Int, k []byte) (x *big.Int, y *big.Int) { + return W.WScalarMult(x1, y1, k) +} diff --git a/stdlib/go1_19_crypto_hmac.go b/stdlib/go1_19_crypto_hmac.go new file mode 100644 index 000000000..4c7cc8c96 --- /dev/null +++ b/stdlib/go1_19_crypto_hmac.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract crypto/hmac'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/hmac" + "reflect" +) + +func init() { + Symbols["crypto/hmac/hmac"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Equal": reflect.ValueOf(hmac.Equal), + "New": reflect.ValueOf(hmac.New), + } +} diff --git a/stdlib/go1_19_crypto_md5.go b/stdlib/go1_19_crypto_md5.go new file mode 100644 index 000000000..65dd55d02 --- /dev/null +++ b/stdlib/go1_19_crypto_md5.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract crypto/md5'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/md5" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/md5/md5"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "New": reflect.ValueOf(md5.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Sum": reflect.ValueOf(md5.Sum), + } +} diff --git a/stdlib/go1_19_crypto_rand.go b/stdlib/go1_19_crypto_rand.go new file mode 100644 index 000000000..738d950fe --- /dev/null +++ b/stdlib/go1_19_crypto_rand.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract crypto/rand'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/rand" + "reflect" +) + +func init() { + Symbols["crypto/rand/rand"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Int": reflect.ValueOf(rand.Int), + "Prime": reflect.ValueOf(rand.Prime), + "Read": reflect.ValueOf(rand.Read), + "Reader": reflect.ValueOf(&rand.Reader).Elem(), + } +} diff --git a/stdlib/go1_19_crypto_rc4.go b/stdlib/go1_19_crypto_rc4.go new file mode 100644 index 000000000..8ad98fbe4 --- /dev/null +++ b/stdlib/go1_19_crypto_rc4.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract crypto/rc4'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/rc4" + "reflect" +) + +func init() { + Symbols["crypto/rc4/rc4"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewCipher": reflect.ValueOf(rc4.NewCipher), + + // type definitions + "Cipher": reflect.ValueOf((*rc4.Cipher)(nil)), + "KeySizeError": reflect.ValueOf((*rc4.KeySizeError)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_rsa.go b/stdlib/go1_19_crypto_rsa.go new file mode 100644 index 000000000..064e0960d --- /dev/null +++ b/stdlib/go1_19_crypto_rsa.go @@ -0,0 +1,44 @@ +// Code generated by 'yaegi extract crypto/rsa'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/rsa" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/rsa/rsa"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DecryptOAEP": reflect.ValueOf(rsa.DecryptOAEP), + "DecryptPKCS1v15": reflect.ValueOf(rsa.DecryptPKCS1v15), + "DecryptPKCS1v15SessionKey": reflect.ValueOf(rsa.DecryptPKCS1v15SessionKey), + "EncryptOAEP": reflect.ValueOf(rsa.EncryptOAEP), + "EncryptPKCS1v15": reflect.ValueOf(rsa.EncryptPKCS1v15), + "ErrDecryption": reflect.ValueOf(&rsa.ErrDecryption).Elem(), + "ErrMessageTooLong": reflect.ValueOf(&rsa.ErrMessageTooLong).Elem(), + "ErrVerification": reflect.ValueOf(&rsa.ErrVerification).Elem(), + "GenerateKey": reflect.ValueOf(rsa.GenerateKey), + "GenerateMultiPrimeKey": reflect.ValueOf(rsa.GenerateMultiPrimeKey), + "PSSSaltLengthAuto": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PSSSaltLengthEqualsHash": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "SignPKCS1v15": reflect.ValueOf(rsa.SignPKCS1v15), + "SignPSS": reflect.ValueOf(rsa.SignPSS), + "VerifyPKCS1v15": reflect.ValueOf(rsa.VerifyPKCS1v15), + "VerifyPSS": reflect.ValueOf(rsa.VerifyPSS), + + // type definitions + "CRTValue": reflect.ValueOf((*rsa.CRTValue)(nil)), + "OAEPOptions": reflect.ValueOf((*rsa.OAEPOptions)(nil)), + "PKCS1v15DecryptOptions": reflect.ValueOf((*rsa.PKCS1v15DecryptOptions)(nil)), + "PSSOptions": reflect.ValueOf((*rsa.PSSOptions)(nil)), + "PrecomputedValues": reflect.ValueOf((*rsa.PrecomputedValues)(nil)), + "PrivateKey": reflect.ValueOf((*rsa.PrivateKey)(nil)), + "PublicKey": reflect.ValueOf((*rsa.PublicKey)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_sha1.go b/stdlib/go1_19_crypto_sha1.go new file mode 100644 index 000000000..3da99411c --- /dev/null +++ b/stdlib/go1_19_crypto_sha1.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract crypto/sha1'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/sha1" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/sha1/sha1"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "New": reflect.ValueOf(sha1.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "Sum": reflect.ValueOf(sha1.Sum), + } +} diff --git a/stdlib/go1_19_crypto_sha256.go b/stdlib/go1_19_crypto_sha256.go new file mode 100644 index 000000000..0e5ce8766 --- /dev/null +++ b/stdlib/go1_19_crypto_sha256.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract crypto/sha256'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/sha256" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/sha256/sha256"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "New": reflect.ValueOf(sha256.New), + "New224": reflect.ValueOf(sha256.New224), + "Size": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "Sum224": reflect.ValueOf(sha256.Sum224), + "Sum256": reflect.ValueOf(sha256.Sum256), + } +} diff --git a/stdlib/go1_19_crypto_sha512.go b/stdlib/go1_19_crypto_sha512.go new file mode 100644 index 000000000..5ac4b0d0b --- /dev/null +++ b/stdlib/go1_19_crypto_sha512.go @@ -0,0 +1,32 @@ +// Code generated by 'yaegi extract crypto/sha512'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/sha512" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/sha512/sha512"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockSize": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "New": reflect.ValueOf(sha512.New), + "New384": reflect.ValueOf(sha512.New384), + "New512_224": reflect.ValueOf(sha512.New512_224), + "New512_256": reflect.ValueOf(sha512.New512_256), + "Size": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Size224": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "Size256": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Size384": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "Sum384": reflect.ValueOf(sha512.Sum384), + "Sum512": reflect.ValueOf(sha512.Sum512), + "Sum512_224": reflect.ValueOf(sha512.Sum512_224), + "Sum512_256": reflect.ValueOf(sha512.Sum512_256), + } +} diff --git a/stdlib/go1_19_crypto_subtle.go b/stdlib/go1_19_crypto_subtle.go new file mode 100644 index 000000000..bc9928c4d --- /dev/null +++ b/stdlib/go1_19_crypto_subtle.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract crypto/subtle'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/subtle" + "reflect" +) + +func init() { + Symbols["crypto/subtle/subtle"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ConstantTimeByteEq": reflect.ValueOf(subtle.ConstantTimeByteEq), + "ConstantTimeCompare": reflect.ValueOf(subtle.ConstantTimeCompare), + "ConstantTimeCopy": reflect.ValueOf(subtle.ConstantTimeCopy), + "ConstantTimeEq": reflect.ValueOf(subtle.ConstantTimeEq), + "ConstantTimeLessOrEq": reflect.ValueOf(subtle.ConstantTimeLessOrEq), + "ConstantTimeSelect": reflect.ValueOf(subtle.ConstantTimeSelect), + } +} diff --git a/stdlib/go1_19_crypto_tls.go b/stdlib/go1_19_crypto_tls.go new file mode 100644 index 000000000..6bcdbdc31 --- /dev/null +++ b/stdlib/go1_19_crypto_tls.go @@ -0,0 +1,122 @@ +// Code generated by 'yaegi extract crypto/tls'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/tls" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["crypto/tls/tls"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CipherSuiteName": reflect.ValueOf(tls.CipherSuiteName), + "CipherSuites": reflect.ValueOf(tls.CipherSuites), + "Client": reflect.ValueOf(tls.Client), + "CurveP256": reflect.ValueOf(tls.CurveP256), + "CurveP384": reflect.ValueOf(tls.CurveP384), + "CurveP521": reflect.ValueOf(tls.CurveP521), + "Dial": reflect.ValueOf(tls.Dial), + "DialWithDialer": reflect.ValueOf(tls.DialWithDialer), + "ECDSAWithP256AndSHA256": reflect.ValueOf(tls.ECDSAWithP256AndSHA256), + "ECDSAWithP384AndSHA384": reflect.ValueOf(tls.ECDSAWithP384AndSHA384), + "ECDSAWithP521AndSHA512": reflect.ValueOf(tls.ECDSAWithP521AndSHA512), + "ECDSAWithSHA1": reflect.ValueOf(tls.ECDSAWithSHA1), + "Ed25519": reflect.ValueOf(tls.Ed25519), + "InsecureCipherSuites": reflect.ValueOf(tls.InsecureCipherSuites), + "Listen": reflect.ValueOf(tls.Listen), + "LoadX509KeyPair": reflect.ValueOf(tls.LoadX509KeyPair), + "NewLRUClientSessionCache": reflect.ValueOf(tls.NewLRUClientSessionCache), + "NewListener": reflect.ValueOf(tls.NewListener), + "NoClientCert": reflect.ValueOf(tls.NoClientCert), + "PKCS1WithSHA1": reflect.ValueOf(tls.PKCS1WithSHA1), + "PKCS1WithSHA256": reflect.ValueOf(tls.PKCS1WithSHA256), + "PKCS1WithSHA384": reflect.ValueOf(tls.PKCS1WithSHA384), + "PKCS1WithSHA512": reflect.ValueOf(tls.PKCS1WithSHA512), + "PSSWithSHA256": reflect.ValueOf(tls.PSSWithSHA256), + "PSSWithSHA384": reflect.ValueOf(tls.PSSWithSHA384), + "PSSWithSHA512": reflect.ValueOf(tls.PSSWithSHA512), + "RenegotiateFreelyAsClient": reflect.ValueOf(tls.RenegotiateFreelyAsClient), + "RenegotiateNever": reflect.ValueOf(tls.RenegotiateNever), + "RenegotiateOnceAsClient": reflect.ValueOf(tls.RenegotiateOnceAsClient), + "RequestClientCert": reflect.ValueOf(tls.RequestClientCert), + "RequireAndVerifyClientCert": reflect.ValueOf(tls.RequireAndVerifyClientCert), + "RequireAnyClientCert": reflect.ValueOf(tls.RequireAnyClientCert), + "Server": reflect.ValueOf(tls.Server), + "TLS_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_AES_128_GCM_SHA256), + "TLS_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_AES_256_GCM_SHA384), + "TLS_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_CHACHA20_POLY1305_SHA256), + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA), + "TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256), + "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256), + "TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA), + "TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384), + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305), + "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256), + "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_ECDSA_WITH_RC4_128_SHA), + "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA), + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA), + "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256), + "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256), + "TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA), + "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384), + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305), + "TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256), + "TLS_ECDHE_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_ECDHE_RSA_WITH_RC4_128_SHA), + "TLS_FALLBACK_SCSV": reflect.ValueOf(tls.TLS_FALLBACK_SCSV), + "TLS_RSA_WITH_3DES_EDE_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA), + "TLS_RSA_WITH_AES_128_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA), + "TLS_RSA_WITH_AES_128_CBC_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_CBC_SHA256), + "TLS_RSA_WITH_AES_128_GCM_SHA256": reflect.ValueOf(tls.TLS_RSA_WITH_AES_128_GCM_SHA256), + "TLS_RSA_WITH_AES_256_CBC_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_CBC_SHA), + "TLS_RSA_WITH_AES_256_GCM_SHA384": reflect.ValueOf(tls.TLS_RSA_WITH_AES_256_GCM_SHA384), + "TLS_RSA_WITH_RC4_128_SHA": reflect.ValueOf(tls.TLS_RSA_WITH_RC4_128_SHA), + "VerifyClientCertIfGiven": reflect.ValueOf(tls.VerifyClientCertIfGiven), + "VersionSSL30": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "VersionTLS10": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "VersionTLS11": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "VersionTLS12": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "VersionTLS13": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "X25519": reflect.ValueOf(tls.X25519), + "X509KeyPair": reflect.ValueOf(tls.X509KeyPair), + + // type definitions + "Certificate": reflect.ValueOf((*tls.Certificate)(nil)), + "CertificateRequestInfo": reflect.ValueOf((*tls.CertificateRequestInfo)(nil)), + "CipherSuite": reflect.ValueOf((*tls.CipherSuite)(nil)), + "ClientAuthType": reflect.ValueOf((*tls.ClientAuthType)(nil)), + "ClientHelloInfo": reflect.ValueOf((*tls.ClientHelloInfo)(nil)), + "ClientSessionCache": reflect.ValueOf((*tls.ClientSessionCache)(nil)), + "ClientSessionState": reflect.ValueOf((*tls.ClientSessionState)(nil)), + "Config": reflect.ValueOf((*tls.Config)(nil)), + "Conn": reflect.ValueOf((*tls.Conn)(nil)), + "ConnectionState": reflect.ValueOf((*tls.ConnectionState)(nil)), + "CurveID": reflect.ValueOf((*tls.CurveID)(nil)), + "Dialer": reflect.ValueOf((*tls.Dialer)(nil)), + "RecordHeaderError": reflect.ValueOf((*tls.RecordHeaderError)(nil)), + "RenegotiationSupport": reflect.ValueOf((*tls.RenegotiationSupport)(nil)), + "SignatureScheme": reflect.ValueOf((*tls.SignatureScheme)(nil)), + + // interface wrapper definitions + "_ClientSessionCache": reflect.ValueOf((*_crypto_tls_ClientSessionCache)(nil)), + } +} + +// _crypto_tls_ClientSessionCache is an interface wrapper for ClientSessionCache type +type _crypto_tls_ClientSessionCache struct { + IValue interface{} + WGet func(sessionKey string) (session *tls.ClientSessionState, ok bool) + WPut func(sessionKey string, cs *tls.ClientSessionState) +} + +func (W _crypto_tls_ClientSessionCache) Get(sessionKey string) (session *tls.ClientSessionState, ok bool) { + return W.WGet(sessionKey) +} +func (W _crypto_tls_ClientSessionCache) Put(sessionKey string, cs *tls.ClientSessionState) { + W.WPut(sessionKey, cs) +} diff --git a/stdlib/go1_19_crypto_x509.go b/stdlib/go1_19_crypto_x509.go new file mode 100644 index 000000000..3f4eb6694 --- /dev/null +++ b/stdlib/go1_19_crypto_x509.go @@ -0,0 +1,123 @@ +// Code generated by 'yaegi extract crypto/x509'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/x509" + "reflect" +) + +func init() { + Symbols["crypto/x509/x509"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CANotAuthorizedForExtKeyUsage": reflect.ValueOf(x509.CANotAuthorizedForExtKeyUsage), + "CANotAuthorizedForThisName": reflect.ValueOf(x509.CANotAuthorizedForThisName), + "CreateCertificate": reflect.ValueOf(x509.CreateCertificate), + "CreateCertificateRequest": reflect.ValueOf(x509.CreateCertificateRequest), + "CreateRevocationList": reflect.ValueOf(x509.CreateRevocationList), + "DSA": reflect.ValueOf(x509.DSA), + "DSAWithSHA1": reflect.ValueOf(x509.DSAWithSHA1), + "DSAWithSHA256": reflect.ValueOf(x509.DSAWithSHA256), + "DecryptPEMBlock": reflect.ValueOf(x509.DecryptPEMBlock), + "ECDSA": reflect.ValueOf(x509.ECDSA), + "ECDSAWithSHA1": reflect.ValueOf(x509.ECDSAWithSHA1), + "ECDSAWithSHA256": reflect.ValueOf(x509.ECDSAWithSHA256), + "ECDSAWithSHA384": reflect.ValueOf(x509.ECDSAWithSHA384), + "ECDSAWithSHA512": reflect.ValueOf(x509.ECDSAWithSHA512), + "Ed25519": reflect.ValueOf(x509.Ed25519), + "EncryptPEMBlock": reflect.ValueOf(x509.EncryptPEMBlock), + "ErrUnsupportedAlgorithm": reflect.ValueOf(&x509.ErrUnsupportedAlgorithm).Elem(), + "Expired": reflect.ValueOf(x509.Expired), + "ExtKeyUsageAny": reflect.ValueOf(x509.ExtKeyUsageAny), + "ExtKeyUsageClientAuth": reflect.ValueOf(x509.ExtKeyUsageClientAuth), + "ExtKeyUsageCodeSigning": reflect.ValueOf(x509.ExtKeyUsageCodeSigning), + "ExtKeyUsageEmailProtection": reflect.ValueOf(x509.ExtKeyUsageEmailProtection), + "ExtKeyUsageIPSECEndSystem": reflect.ValueOf(x509.ExtKeyUsageIPSECEndSystem), + "ExtKeyUsageIPSECTunnel": reflect.ValueOf(x509.ExtKeyUsageIPSECTunnel), + "ExtKeyUsageIPSECUser": reflect.ValueOf(x509.ExtKeyUsageIPSECUser), + "ExtKeyUsageMicrosoftCommercialCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftCommercialCodeSigning), + "ExtKeyUsageMicrosoftKernelCodeSigning": reflect.ValueOf(x509.ExtKeyUsageMicrosoftKernelCodeSigning), + "ExtKeyUsageMicrosoftServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageMicrosoftServerGatedCrypto), + "ExtKeyUsageNetscapeServerGatedCrypto": reflect.ValueOf(x509.ExtKeyUsageNetscapeServerGatedCrypto), + "ExtKeyUsageOCSPSigning": reflect.ValueOf(x509.ExtKeyUsageOCSPSigning), + "ExtKeyUsageServerAuth": reflect.ValueOf(x509.ExtKeyUsageServerAuth), + "ExtKeyUsageTimeStamping": reflect.ValueOf(x509.ExtKeyUsageTimeStamping), + "IncompatibleUsage": reflect.ValueOf(x509.IncompatibleUsage), + "IncorrectPasswordError": reflect.ValueOf(&x509.IncorrectPasswordError).Elem(), + "IsEncryptedPEMBlock": reflect.ValueOf(x509.IsEncryptedPEMBlock), + "KeyUsageCRLSign": reflect.ValueOf(x509.KeyUsageCRLSign), + "KeyUsageCertSign": reflect.ValueOf(x509.KeyUsageCertSign), + "KeyUsageContentCommitment": reflect.ValueOf(x509.KeyUsageContentCommitment), + "KeyUsageDataEncipherment": reflect.ValueOf(x509.KeyUsageDataEncipherment), + "KeyUsageDecipherOnly": reflect.ValueOf(x509.KeyUsageDecipherOnly), + "KeyUsageDigitalSignature": reflect.ValueOf(x509.KeyUsageDigitalSignature), + "KeyUsageEncipherOnly": reflect.ValueOf(x509.KeyUsageEncipherOnly), + "KeyUsageKeyAgreement": reflect.ValueOf(x509.KeyUsageKeyAgreement), + "KeyUsageKeyEncipherment": reflect.ValueOf(x509.KeyUsageKeyEncipherment), + "MD2WithRSA": reflect.ValueOf(x509.MD2WithRSA), + "MD5WithRSA": reflect.ValueOf(x509.MD5WithRSA), + "MarshalECPrivateKey": reflect.ValueOf(x509.MarshalECPrivateKey), + "MarshalPKCS1PrivateKey": reflect.ValueOf(x509.MarshalPKCS1PrivateKey), + "MarshalPKCS1PublicKey": reflect.ValueOf(x509.MarshalPKCS1PublicKey), + "MarshalPKCS8PrivateKey": reflect.ValueOf(x509.MarshalPKCS8PrivateKey), + "MarshalPKIXPublicKey": reflect.ValueOf(x509.MarshalPKIXPublicKey), + "NameConstraintsWithoutSANs": reflect.ValueOf(x509.NameConstraintsWithoutSANs), + "NameMismatch": reflect.ValueOf(x509.NameMismatch), + "NewCertPool": reflect.ValueOf(x509.NewCertPool), + "NotAuthorizedToSign": reflect.ValueOf(x509.NotAuthorizedToSign), + "PEMCipher3DES": reflect.ValueOf(x509.PEMCipher3DES), + "PEMCipherAES128": reflect.ValueOf(x509.PEMCipherAES128), + "PEMCipherAES192": reflect.ValueOf(x509.PEMCipherAES192), + "PEMCipherAES256": reflect.ValueOf(x509.PEMCipherAES256), + "PEMCipherDES": reflect.ValueOf(x509.PEMCipherDES), + "ParseCRL": reflect.ValueOf(x509.ParseCRL), + "ParseCertificate": reflect.ValueOf(x509.ParseCertificate), + "ParseCertificateRequest": reflect.ValueOf(x509.ParseCertificateRequest), + "ParseCertificates": reflect.ValueOf(x509.ParseCertificates), + "ParseDERCRL": reflect.ValueOf(x509.ParseDERCRL), + "ParseECPrivateKey": reflect.ValueOf(x509.ParseECPrivateKey), + "ParsePKCS1PrivateKey": reflect.ValueOf(x509.ParsePKCS1PrivateKey), + "ParsePKCS1PublicKey": reflect.ValueOf(x509.ParsePKCS1PublicKey), + "ParsePKCS8PrivateKey": reflect.ValueOf(x509.ParsePKCS8PrivateKey), + "ParsePKIXPublicKey": reflect.ValueOf(x509.ParsePKIXPublicKey), + "ParseRevocationList": reflect.ValueOf(x509.ParseRevocationList), + "PureEd25519": reflect.ValueOf(x509.PureEd25519), + "RSA": reflect.ValueOf(x509.RSA), + "SHA1WithRSA": reflect.ValueOf(x509.SHA1WithRSA), + "SHA256WithRSA": reflect.ValueOf(x509.SHA256WithRSA), + "SHA256WithRSAPSS": reflect.ValueOf(x509.SHA256WithRSAPSS), + "SHA384WithRSA": reflect.ValueOf(x509.SHA384WithRSA), + "SHA384WithRSAPSS": reflect.ValueOf(x509.SHA384WithRSAPSS), + "SHA512WithRSA": reflect.ValueOf(x509.SHA512WithRSA), + "SHA512WithRSAPSS": reflect.ValueOf(x509.SHA512WithRSAPSS), + "SystemCertPool": reflect.ValueOf(x509.SystemCertPool), + "TooManyConstraints": reflect.ValueOf(x509.TooManyConstraints), + "TooManyIntermediates": reflect.ValueOf(x509.TooManyIntermediates), + "UnconstrainedName": reflect.ValueOf(x509.UnconstrainedName), + "UnknownPublicKeyAlgorithm": reflect.ValueOf(x509.UnknownPublicKeyAlgorithm), + "UnknownSignatureAlgorithm": reflect.ValueOf(x509.UnknownSignatureAlgorithm), + + // type definitions + "CertPool": reflect.ValueOf((*x509.CertPool)(nil)), + "Certificate": reflect.ValueOf((*x509.Certificate)(nil)), + "CertificateInvalidError": reflect.ValueOf((*x509.CertificateInvalidError)(nil)), + "CertificateRequest": reflect.ValueOf((*x509.CertificateRequest)(nil)), + "ConstraintViolationError": reflect.ValueOf((*x509.ConstraintViolationError)(nil)), + "ExtKeyUsage": reflect.ValueOf((*x509.ExtKeyUsage)(nil)), + "HostnameError": reflect.ValueOf((*x509.HostnameError)(nil)), + "InsecureAlgorithmError": reflect.ValueOf((*x509.InsecureAlgorithmError)(nil)), + "InvalidReason": reflect.ValueOf((*x509.InvalidReason)(nil)), + "KeyUsage": reflect.ValueOf((*x509.KeyUsage)(nil)), + "PEMCipher": reflect.ValueOf((*x509.PEMCipher)(nil)), + "PublicKeyAlgorithm": reflect.ValueOf((*x509.PublicKeyAlgorithm)(nil)), + "RevocationList": reflect.ValueOf((*x509.RevocationList)(nil)), + "SignatureAlgorithm": reflect.ValueOf((*x509.SignatureAlgorithm)(nil)), + "SystemRootsError": reflect.ValueOf((*x509.SystemRootsError)(nil)), + "UnhandledCriticalExtension": reflect.ValueOf((*x509.UnhandledCriticalExtension)(nil)), + "UnknownAuthorityError": reflect.ValueOf((*x509.UnknownAuthorityError)(nil)), + "VerifyOptions": reflect.ValueOf((*x509.VerifyOptions)(nil)), + } +} diff --git a/stdlib/go1_19_crypto_x509_pkix.go b/stdlib/go1_19_crypto_x509_pkix.go new file mode 100644 index 000000000..d2383519b --- /dev/null +++ b/stdlib/go1_19_crypto_x509_pkix.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract crypto/x509/pkix'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "crypto/x509/pkix" + "reflect" +) + +func init() { + Symbols["crypto/x509/pkix/pkix"] = map[string]reflect.Value{ + // type definitions + "AlgorithmIdentifier": reflect.ValueOf((*pkix.AlgorithmIdentifier)(nil)), + "AttributeTypeAndValue": reflect.ValueOf((*pkix.AttributeTypeAndValue)(nil)), + "AttributeTypeAndValueSET": reflect.ValueOf((*pkix.AttributeTypeAndValueSET)(nil)), + "CertificateList": reflect.ValueOf((*pkix.CertificateList)(nil)), + "Extension": reflect.ValueOf((*pkix.Extension)(nil)), + "Name": reflect.ValueOf((*pkix.Name)(nil)), + "RDNSequence": reflect.ValueOf((*pkix.RDNSequence)(nil)), + "RelativeDistinguishedNameSET": reflect.ValueOf((*pkix.RelativeDistinguishedNameSET)(nil)), + "RevokedCertificate": reflect.ValueOf((*pkix.RevokedCertificate)(nil)), + "TBSCertificateList": reflect.ValueOf((*pkix.TBSCertificateList)(nil)), + } +} diff --git a/stdlib/go1_19_database_sql.go b/stdlib/go1_19_database_sql.go new file mode 100644 index 000000000..cb7fb1bab --- /dev/null +++ b/stdlib/go1_19_database_sql.go @@ -0,0 +1,86 @@ +// Code generated by 'yaegi extract database/sql'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "database/sql" + "reflect" +) + +func init() { + Symbols["database/sql/sql"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Drivers": reflect.ValueOf(sql.Drivers), + "ErrConnDone": reflect.ValueOf(&sql.ErrConnDone).Elem(), + "ErrNoRows": reflect.ValueOf(&sql.ErrNoRows).Elem(), + "ErrTxDone": reflect.ValueOf(&sql.ErrTxDone).Elem(), + "LevelDefault": reflect.ValueOf(sql.LevelDefault), + "LevelLinearizable": reflect.ValueOf(sql.LevelLinearizable), + "LevelReadCommitted": reflect.ValueOf(sql.LevelReadCommitted), + "LevelReadUncommitted": reflect.ValueOf(sql.LevelReadUncommitted), + "LevelRepeatableRead": reflect.ValueOf(sql.LevelRepeatableRead), + "LevelSerializable": reflect.ValueOf(sql.LevelSerializable), + "LevelSnapshot": reflect.ValueOf(sql.LevelSnapshot), + "LevelWriteCommitted": reflect.ValueOf(sql.LevelWriteCommitted), + "Named": reflect.ValueOf(sql.Named), + "Open": reflect.ValueOf(sql.Open), + "OpenDB": reflect.ValueOf(sql.OpenDB), + "Register": reflect.ValueOf(sql.Register), + + // type definitions + "ColumnType": reflect.ValueOf((*sql.ColumnType)(nil)), + "Conn": reflect.ValueOf((*sql.Conn)(nil)), + "DB": reflect.ValueOf((*sql.DB)(nil)), + "DBStats": reflect.ValueOf((*sql.DBStats)(nil)), + "IsolationLevel": reflect.ValueOf((*sql.IsolationLevel)(nil)), + "NamedArg": reflect.ValueOf((*sql.NamedArg)(nil)), + "NullBool": reflect.ValueOf((*sql.NullBool)(nil)), + "NullByte": reflect.ValueOf((*sql.NullByte)(nil)), + "NullFloat64": reflect.ValueOf((*sql.NullFloat64)(nil)), + "NullInt16": reflect.ValueOf((*sql.NullInt16)(nil)), + "NullInt32": reflect.ValueOf((*sql.NullInt32)(nil)), + "NullInt64": reflect.ValueOf((*sql.NullInt64)(nil)), + "NullString": reflect.ValueOf((*sql.NullString)(nil)), + "NullTime": reflect.ValueOf((*sql.NullTime)(nil)), + "Out": reflect.ValueOf((*sql.Out)(nil)), + "RawBytes": reflect.ValueOf((*sql.RawBytes)(nil)), + "Result": reflect.ValueOf((*sql.Result)(nil)), + "Row": reflect.ValueOf((*sql.Row)(nil)), + "Rows": reflect.ValueOf((*sql.Rows)(nil)), + "Scanner": reflect.ValueOf((*sql.Scanner)(nil)), + "Stmt": reflect.ValueOf((*sql.Stmt)(nil)), + "Tx": reflect.ValueOf((*sql.Tx)(nil)), + "TxOptions": reflect.ValueOf((*sql.TxOptions)(nil)), + + // interface wrapper definitions + "_Result": reflect.ValueOf((*_database_sql_Result)(nil)), + "_Scanner": reflect.ValueOf((*_database_sql_Scanner)(nil)), + } +} + +// _database_sql_Result is an interface wrapper for Result type +type _database_sql_Result struct { + IValue interface{} + WLastInsertId func() (int64, error) + WRowsAffected func() (int64, error) +} + +func (W _database_sql_Result) LastInsertId() (int64, error) { + return W.WLastInsertId() +} +func (W _database_sql_Result) RowsAffected() (int64, error) { + return W.WRowsAffected() +} + +// _database_sql_Scanner is an interface wrapper for Scanner type +type _database_sql_Scanner struct { + IValue interface{} + WScan func(src any) error +} + +func (W _database_sql_Scanner) Scan(src any) error { + return W.WScan(src) +} diff --git a/stdlib/go1_19_database_sql_driver.go b/stdlib/go1_19_database_sql_driver.go new file mode 100644 index 000000000..ddff2db05 --- /dev/null +++ b/stdlib/go1_19_database_sql_driver.go @@ -0,0 +1,509 @@ +// Code generated by 'yaegi extract database/sql/driver'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "context" + "database/sql/driver" + "reflect" +) + +func init() { + Symbols["database/sql/driver/driver"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Bool": reflect.ValueOf(&driver.Bool).Elem(), + "DefaultParameterConverter": reflect.ValueOf(&driver.DefaultParameterConverter).Elem(), + "ErrBadConn": reflect.ValueOf(&driver.ErrBadConn).Elem(), + "ErrRemoveArgument": reflect.ValueOf(&driver.ErrRemoveArgument).Elem(), + "ErrSkip": reflect.ValueOf(&driver.ErrSkip).Elem(), + "Int32": reflect.ValueOf(&driver.Int32).Elem(), + "IsScanValue": reflect.ValueOf(driver.IsScanValue), + "IsValue": reflect.ValueOf(driver.IsValue), + "ResultNoRows": reflect.ValueOf(&driver.ResultNoRows).Elem(), + "String": reflect.ValueOf(&driver.String).Elem(), + + // type definitions + "ColumnConverter": reflect.ValueOf((*driver.ColumnConverter)(nil)), + "Conn": reflect.ValueOf((*driver.Conn)(nil)), + "ConnBeginTx": reflect.ValueOf((*driver.ConnBeginTx)(nil)), + "ConnPrepareContext": reflect.ValueOf((*driver.ConnPrepareContext)(nil)), + "Connector": reflect.ValueOf((*driver.Connector)(nil)), + "Driver": reflect.ValueOf((*driver.Driver)(nil)), + "DriverContext": reflect.ValueOf((*driver.DriverContext)(nil)), + "Execer": reflect.ValueOf((*driver.Execer)(nil)), + "ExecerContext": reflect.ValueOf((*driver.ExecerContext)(nil)), + "IsolationLevel": reflect.ValueOf((*driver.IsolationLevel)(nil)), + "NamedValue": reflect.ValueOf((*driver.NamedValue)(nil)), + "NamedValueChecker": reflect.ValueOf((*driver.NamedValueChecker)(nil)), + "NotNull": reflect.ValueOf((*driver.NotNull)(nil)), + "Null": reflect.ValueOf((*driver.Null)(nil)), + "Pinger": reflect.ValueOf((*driver.Pinger)(nil)), + "Queryer": reflect.ValueOf((*driver.Queryer)(nil)), + "QueryerContext": reflect.ValueOf((*driver.QueryerContext)(nil)), + "Result": reflect.ValueOf((*driver.Result)(nil)), + "Rows": reflect.ValueOf((*driver.Rows)(nil)), + "RowsAffected": reflect.ValueOf((*driver.RowsAffected)(nil)), + "RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*driver.RowsColumnTypeDatabaseTypeName)(nil)), + "RowsColumnTypeLength": reflect.ValueOf((*driver.RowsColumnTypeLength)(nil)), + "RowsColumnTypeNullable": reflect.ValueOf((*driver.RowsColumnTypeNullable)(nil)), + "RowsColumnTypePrecisionScale": reflect.ValueOf((*driver.RowsColumnTypePrecisionScale)(nil)), + "RowsColumnTypeScanType": reflect.ValueOf((*driver.RowsColumnTypeScanType)(nil)), + "RowsNextResultSet": reflect.ValueOf((*driver.RowsNextResultSet)(nil)), + "SessionResetter": reflect.ValueOf((*driver.SessionResetter)(nil)), + "Stmt": reflect.ValueOf((*driver.Stmt)(nil)), + "StmtExecContext": reflect.ValueOf((*driver.StmtExecContext)(nil)), + "StmtQueryContext": reflect.ValueOf((*driver.StmtQueryContext)(nil)), + "Tx": reflect.ValueOf((*driver.Tx)(nil)), + "TxOptions": reflect.ValueOf((*driver.TxOptions)(nil)), + "Validator": reflect.ValueOf((*driver.Validator)(nil)), + "Value": reflect.ValueOf((*driver.Value)(nil)), + "ValueConverter": reflect.ValueOf((*driver.ValueConverter)(nil)), + "Valuer": reflect.ValueOf((*driver.Valuer)(nil)), + + // interface wrapper definitions + "_ColumnConverter": reflect.ValueOf((*_database_sql_driver_ColumnConverter)(nil)), + "_Conn": reflect.ValueOf((*_database_sql_driver_Conn)(nil)), + "_ConnBeginTx": reflect.ValueOf((*_database_sql_driver_ConnBeginTx)(nil)), + "_ConnPrepareContext": reflect.ValueOf((*_database_sql_driver_ConnPrepareContext)(nil)), + "_Connector": reflect.ValueOf((*_database_sql_driver_Connector)(nil)), + "_Driver": reflect.ValueOf((*_database_sql_driver_Driver)(nil)), + "_DriverContext": reflect.ValueOf((*_database_sql_driver_DriverContext)(nil)), + "_Execer": reflect.ValueOf((*_database_sql_driver_Execer)(nil)), + "_ExecerContext": reflect.ValueOf((*_database_sql_driver_ExecerContext)(nil)), + "_NamedValueChecker": reflect.ValueOf((*_database_sql_driver_NamedValueChecker)(nil)), + "_Pinger": reflect.ValueOf((*_database_sql_driver_Pinger)(nil)), + "_Queryer": reflect.ValueOf((*_database_sql_driver_Queryer)(nil)), + "_QueryerContext": reflect.ValueOf((*_database_sql_driver_QueryerContext)(nil)), + "_Result": reflect.ValueOf((*_database_sql_driver_Result)(nil)), + "_Rows": reflect.ValueOf((*_database_sql_driver_Rows)(nil)), + "_RowsColumnTypeDatabaseTypeName": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeDatabaseTypeName)(nil)), + "_RowsColumnTypeLength": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeLength)(nil)), + "_RowsColumnTypeNullable": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeNullable)(nil)), + "_RowsColumnTypePrecisionScale": reflect.ValueOf((*_database_sql_driver_RowsColumnTypePrecisionScale)(nil)), + "_RowsColumnTypeScanType": reflect.ValueOf((*_database_sql_driver_RowsColumnTypeScanType)(nil)), + "_RowsNextResultSet": reflect.ValueOf((*_database_sql_driver_RowsNextResultSet)(nil)), + "_SessionResetter": reflect.ValueOf((*_database_sql_driver_SessionResetter)(nil)), + "_Stmt": reflect.ValueOf((*_database_sql_driver_Stmt)(nil)), + "_StmtExecContext": reflect.ValueOf((*_database_sql_driver_StmtExecContext)(nil)), + "_StmtQueryContext": reflect.ValueOf((*_database_sql_driver_StmtQueryContext)(nil)), + "_Tx": reflect.ValueOf((*_database_sql_driver_Tx)(nil)), + "_Validator": reflect.ValueOf((*_database_sql_driver_Validator)(nil)), + "_Value": reflect.ValueOf((*_database_sql_driver_Value)(nil)), + "_ValueConverter": reflect.ValueOf((*_database_sql_driver_ValueConverter)(nil)), + "_Valuer": reflect.ValueOf((*_database_sql_driver_Valuer)(nil)), + } +} + +// _database_sql_driver_ColumnConverter is an interface wrapper for ColumnConverter type +type _database_sql_driver_ColumnConverter struct { + IValue interface{} + WColumnConverter func(idx int) driver.ValueConverter +} + +func (W _database_sql_driver_ColumnConverter) ColumnConverter(idx int) driver.ValueConverter { + return W.WColumnConverter(idx) +} + +// _database_sql_driver_Conn is an interface wrapper for Conn type +type _database_sql_driver_Conn struct { + IValue interface{} + WBegin func() (driver.Tx, error) + WClose func() error + WPrepare func(query string) (driver.Stmt, error) +} + +func (W _database_sql_driver_Conn) Begin() (driver.Tx, error) { + return W.WBegin() +} +func (W _database_sql_driver_Conn) Close() error { + return W.WClose() +} +func (W _database_sql_driver_Conn) Prepare(query string) (driver.Stmt, error) { + return W.WPrepare(query) +} + +// _database_sql_driver_ConnBeginTx is an interface wrapper for ConnBeginTx type +type _database_sql_driver_ConnBeginTx struct { + IValue interface{} + WBeginTx func(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) +} + +func (W _database_sql_driver_ConnBeginTx) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) { + return W.WBeginTx(ctx, opts) +} + +// _database_sql_driver_ConnPrepareContext is an interface wrapper for ConnPrepareContext type +type _database_sql_driver_ConnPrepareContext struct { + IValue interface{} + WPrepareContext func(ctx context.Context, query string) (driver.Stmt, error) +} + +func (W _database_sql_driver_ConnPrepareContext) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) { + return W.WPrepareContext(ctx, query) +} + +// _database_sql_driver_Connector is an interface wrapper for Connector type +type _database_sql_driver_Connector struct { + IValue interface{} + WConnect func(a0 context.Context) (driver.Conn, error) + WDriver func() driver.Driver +} + +func (W _database_sql_driver_Connector) Connect(a0 context.Context) (driver.Conn, error) { + return W.WConnect(a0) +} +func (W _database_sql_driver_Connector) Driver() driver.Driver { + return W.WDriver() +} + +// _database_sql_driver_Driver is an interface wrapper for Driver type +type _database_sql_driver_Driver struct { + IValue interface{} + WOpen func(name string) (driver.Conn, error) +} + +func (W _database_sql_driver_Driver) Open(name string) (driver.Conn, error) { + return W.WOpen(name) +} + +// _database_sql_driver_DriverContext is an interface wrapper for DriverContext type +type _database_sql_driver_DriverContext struct { + IValue interface{} + WOpenConnector func(name string) (driver.Connector, error) +} + +func (W _database_sql_driver_DriverContext) OpenConnector(name string) (driver.Connector, error) { + return W.WOpenConnector(name) +} + +// _database_sql_driver_Execer is an interface wrapper for Execer type +type _database_sql_driver_Execer struct { + IValue interface{} + WExec func(query string, args []driver.Value) (driver.Result, error) +} + +func (W _database_sql_driver_Execer) Exec(query string, args []driver.Value) (driver.Result, error) { + return W.WExec(query, args) +} + +// _database_sql_driver_ExecerContext is an interface wrapper for ExecerContext type +type _database_sql_driver_ExecerContext struct { + IValue interface{} + WExecContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) +} + +func (W _database_sql_driver_ExecerContext) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) { + return W.WExecContext(ctx, query, args) +} + +// _database_sql_driver_NamedValueChecker is an interface wrapper for NamedValueChecker type +type _database_sql_driver_NamedValueChecker struct { + IValue interface{} + WCheckNamedValue func(a0 *driver.NamedValue) error +} + +func (W _database_sql_driver_NamedValueChecker) CheckNamedValue(a0 *driver.NamedValue) error { + return W.WCheckNamedValue(a0) +} + +// _database_sql_driver_Pinger is an interface wrapper for Pinger type +type _database_sql_driver_Pinger struct { + IValue interface{} + WPing func(ctx context.Context) error +} + +func (W _database_sql_driver_Pinger) Ping(ctx context.Context) error { + return W.WPing(ctx) +} + +// _database_sql_driver_Queryer is an interface wrapper for Queryer type +type _database_sql_driver_Queryer struct { + IValue interface{} + WQuery func(query string, args []driver.Value) (driver.Rows, error) +} + +func (W _database_sql_driver_Queryer) Query(query string, args []driver.Value) (driver.Rows, error) { + return W.WQuery(query, args) +} + +// _database_sql_driver_QueryerContext is an interface wrapper for QueryerContext type +type _database_sql_driver_QueryerContext struct { + IValue interface{} + WQueryContext func(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) +} + +func (W _database_sql_driver_QueryerContext) QueryContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Rows, error) { + return W.WQueryContext(ctx, query, args) +} + +// _database_sql_driver_Result is an interface wrapper for Result type +type _database_sql_driver_Result struct { + IValue interface{} + WLastInsertId func() (int64, error) + WRowsAffected func() (int64, error) +} + +func (W _database_sql_driver_Result) LastInsertId() (int64, error) { + return W.WLastInsertId() +} +func (W _database_sql_driver_Result) RowsAffected() (int64, error) { + return W.WRowsAffected() +} + +// _database_sql_driver_Rows is an interface wrapper for Rows type +type _database_sql_driver_Rows struct { + IValue interface{} + WClose func() error + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_Rows) Close() error { + return W.WClose() +} +func (W _database_sql_driver_Rows) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_Rows) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeDatabaseTypeName is an interface wrapper for RowsColumnTypeDatabaseTypeName type +type _database_sql_driver_RowsColumnTypeDatabaseTypeName struct { + IValue interface{} + WClose func() error + WColumnTypeDatabaseTypeName func(index int) string + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) ColumnTypeDatabaseTypeName(index int) string { + return W.WColumnTypeDatabaseTypeName(index) +} +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeDatabaseTypeName) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeLength is an interface wrapper for RowsColumnTypeLength type +type _database_sql_driver_RowsColumnTypeLength struct { + IValue interface{} + WClose func() error + WColumnTypeLength func(index int) (length int64, ok bool) + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeLength) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeLength) ColumnTypeLength(index int) (length int64, ok bool) { + return W.WColumnTypeLength(index) +} +func (W _database_sql_driver_RowsColumnTypeLength) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeLength) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeNullable is an interface wrapper for RowsColumnTypeNullable type +type _database_sql_driver_RowsColumnTypeNullable struct { + IValue interface{} + WClose func() error + WColumnTypeNullable func(index int) (nullable bool, ok bool) + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeNullable) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeNullable) ColumnTypeNullable(index int) (nullable bool, ok bool) { + return W.WColumnTypeNullable(index) +} +func (W _database_sql_driver_RowsColumnTypeNullable) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeNullable) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypePrecisionScale is an interface wrapper for RowsColumnTypePrecisionScale type +type _database_sql_driver_RowsColumnTypePrecisionScale struct { + IValue interface{} + WClose func() error + WColumnTypePrecisionScale func(index int) (precision int64, scale int64, ok bool) + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypePrecisionScale) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypePrecisionScale) ColumnTypePrecisionScale(index int) (precision int64, scale int64, ok bool) { + return W.WColumnTypePrecisionScale(index) +} +func (W _database_sql_driver_RowsColumnTypePrecisionScale) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypePrecisionScale) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsColumnTypeScanType is an interface wrapper for RowsColumnTypeScanType type +type _database_sql_driver_RowsColumnTypeScanType struct { + IValue interface{} + WClose func() error + WColumnTypeScanType func(index int) reflect.Type + WColumns func() []string + WNext func(dest []driver.Value) error +} + +func (W _database_sql_driver_RowsColumnTypeScanType) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsColumnTypeScanType) ColumnTypeScanType(index int) reflect.Type { + return W.WColumnTypeScanType(index) +} +func (W _database_sql_driver_RowsColumnTypeScanType) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsColumnTypeScanType) Next(dest []driver.Value) error { + return W.WNext(dest) +} + +// _database_sql_driver_RowsNextResultSet is an interface wrapper for RowsNextResultSet type +type _database_sql_driver_RowsNextResultSet struct { + IValue interface{} + WClose func() error + WColumns func() []string + WHasNextResultSet func() bool + WNext func(dest []driver.Value) error + WNextResultSet func() error +} + +func (W _database_sql_driver_RowsNextResultSet) Close() error { + return W.WClose() +} +func (W _database_sql_driver_RowsNextResultSet) Columns() []string { + return W.WColumns() +} +func (W _database_sql_driver_RowsNextResultSet) HasNextResultSet() bool { + return W.WHasNextResultSet() +} +func (W _database_sql_driver_RowsNextResultSet) Next(dest []driver.Value) error { + return W.WNext(dest) +} +func (W _database_sql_driver_RowsNextResultSet) NextResultSet() error { + return W.WNextResultSet() +} + +// _database_sql_driver_SessionResetter is an interface wrapper for SessionResetter type +type _database_sql_driver_SessionResetter struct { + IValue interface{} + WResetSession func(ctx context.Context) error +} + +func (W _database_sql_driver_SessionResetter) ResetSession(ctx context.Context) error { + return W.WResetSession(ctx) +} + +// _database_sql_driver_Stmt is an interface wrapper for Stmt type +type _database_sql_driver_Stmt struct { + IValue interface{} + WClose func() error + WExec func(args []driver.Value) (driver.Result, error) + WNumInput func() int + WQuery func(args []driver.Value) (driver.Rows, error) +} + +func (W _database_sql_driver_Stmt) Close() error { + return W.WClose() +} +func (W _database_sql_driver_Stmt) Exec(args []driver.Value) (driver.Result, error) { + return W.WExec(args) +} +func (W _database_sql_driver_Stmt) NumInput() int { + return W.WNumInput() +} +func (W _database_sql_driver_Stmt) Query(args []driver.Value) (driver.Rows, error) { + return W.WQuery(args) +} + +// _database_sql_driver_StmtExecContext is an interface wrapper for StmtExecContext type +type _database_sql_driver_StmtExecContext struct { + IValue interface{} + WExecContext func(ctx context.Context, args []driver.NamedValue) (driver.Result, error) +} + +func (W _database_sql_driver_StmtExecContext) ExecContext(ctx context.Context, args []driver.NamedValue) (driver.Result, error) { + return W.WExecContext(ctx, args) +} + +// _database_sql_driver_StmtQueryContext is an interface wrapper for StmtQueryContext type +type _database_sql_driver_StmtQueryContext struct { + IValue interface{} + WQueryContext func(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) +} + +func (W _database_sql_driver_StmtQueryContext) QueryContext(ctx context.Context, args []driver.NamedValue) (driver.Rows, error) { + return W.WQueryContext(ctx, args) +} + +// _database_sql_driver_Tx is an interface wrapper for Tx type +type _database_sql_driver_Tx struct { + IValue interface{} + WCommit func() error + WRollback func() error +} + +func (W _database_sql_driver_Tx) Commit() error { + return W.WCommit() +} +func (W _database_sql_driver_Tx) Rollback() error { + return W.WRollback() +} + +// _database_sql_driver_Validator is an interface wrapper for Validator type +type _database_sql_driver_Validator struct { + IValue interface{} + WIsValid func() bool +} + +func (W _database_sql_driver_Validator) IsValid() bool { + return W.WIsValid() +} + +// _database_sql_driver_Value is an interface wrapper for Value type +type _database_sql_driver_Value struct { + IValue interface{} +} + +// _database_sql_driver_ValueConverter is an interface wrapper for ValueConverter type +type _database_sql_driver_ValueConverter struct { + IValue interface{} + WConvertValue func(v any) (driver.Value, error) +} + +func (W _database_sql_driver_ValueConverter) ConvertValue(v any) (driver.Value, error) { + return W.WConvertValue(v) +} + +// _database_sql_driver_Valuer is an interface wrapper for Valuer type +type _database_sql_driver_Valuer struct { + IValue interface{} + WValue func() (driver.Value, error) +} + +func (W _database_sql_driver_Valuer) Value() (driver.Value, error) { + return W.WValue() +} diff --git a/stdlib/go1_19_debug_buildinfo.go b/stdlib/go1_19_debug_buildinfo.go new file mode 100644 index 000000000..5130f6173 --- /dev/null +++ b/stdlib/go1_19_debug_buildinfo.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract debug/buildinfo'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/buildinfo" + "reflect" +) + +func init() { + Symbols["debug/buildinfo/buildinfo"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Read": reflect.ValueOf(buildinfo.Read), + "ReadFile": reflect.ValueOf(buildinfo.ReadFile), + + // type definitions + "BuildInfo": reflect.ValueOf((*buildinfo.BuildInfo)(nil)), + } +} diff --git a/stdlib/go1_19_debug_dwarf.go b/stdlib/go1_19_debug_dwarf.go new file mode 100644 index 000000000..a1f6ad03e --- /dev/null +++ b/stdlib/go1_19_debug_dwarf.go @@ -0,0 +1,292 @@ +// Code generated by 'yaegi extract debug/dwarf'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/dwarf" + "reflect" +) + +func init() { + Symbols["debug/dwarf/dwarf"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AttrAbstractOrigin": reflect.ValueOf(dwarf.AttrAbstractOrigin), + "AttrAccessibility": reflect.ValueOf(dwarf.AttrAccessibility), + "AttrAddrBase": reflect.ValueOf(dwarf.AttrAddrBase), + "AttrAddrClass": reflect.ValueOf(dwarf.AttrAddrClass), + "AttrAlignment": reflect.ValueOf(dwarf.AttrAlignment), + "AttrAllocated": reflect.ValueOf(dwarf.AttrAllocated), + "AttrArtificial": reflect.ValueOf(dwarf.AttrArtificial), + "AttrAssociated": reflect.ValueOf(dwarf.AttrAssociated), + "AttrBaseTypes": reflect.ValueOf(dwarf.AttrBaseTypes), + "AttrBinaryScale": reflect.ValueOf(dwarf.AttrBinaryScale), + "AttrBitOffset": reflect.ValueOf(dwarf.AttrBitOffset), + "AttrBitSize": reflect.ValueOf(dwarf.AttrBitSize), + "AttrByteSize": reflect.ValueOf(dwarf.AttrByteSize), + "AttrCallAllCalls": reflect.ValueOf(dwarf.AttrCallAllCalls), + "AttrCallAllSourceCalls": reflect.ValueOf(dwarf.AttrCallAllSourceCalls), + "AttrCallAllTailCalls": reflect.ValueOf(dwarf.AttrCallAllTailCalls), + "AttrCallColumn": reflect.ValueOf(dwarf.AttrCallColumn), + "AttrCallDataLocation": reflect.ValueOf(dwarf.AttrCallDataLocation), + "AttrCallDataValue": reflect.ValueOf(dwarf.AttrCallDataValue), + "AttrCallFile": reflect.ValueOf(dwarf.AttrCallFile), + "AttrCallLine": reflect.ValueOf(dwarf.AttrCallLine), + "AttrCallOrigin": reflect.ValueOf(dwarf.AttrCallOrigin), + "AttrCallPC": reflect.ValueOf(dwarf.AttrCallPC), + "AttrCallParameter": reflect.ValueOf(dwarf.AttrCallParameter), + "AttrCallReturnPC": reflect.ValueOf(dwarf.AttrCallReturnPC), + "AttrCallTailCall": reflect.ValueOf(dwarf.AttrCallTailCall), + "AttrCallTarget": reflect.ValueOf(dwarf.AttrCallTarget), + "AttrCallTargetClobbered": reflect.ValueOf(dwarf.AttrCallTargetClobbered), + "AttrCallValue": reflect.ValueOf(dwarf.AttrCallValue), + "AttrCalling": reflect.ValueOf(dwarf.AttrCalling), + "AttrCommonRef": reflect.ValueOf(dwarf.AttrCommonRef), + "AttrCompDir": reflect.ValueOf(dwarf.AttrCompDir), + "AttrConstExpr": reflect.ValueOf(dwarf.AttrConstExpr), + "AttrConstValue": reflect.ValueOf(dwarf.AttrConstValue), + "AttrContainingType": reflect.ValueOf(dwarf.AttrContainingType), + "AttrCount": reflect.ValueOf(dwarf.AttrCount), + "AttrDataBitOffset": reflect.ValueOf(dwarf.AttrDataBitOffset), + "AttrDataLocation": reflect.ValueOf(dwarf.AttrDataLocation), + "AttrDataMemberLoc": reflect.ValueOf(dwarf.AttrDataMemberLoc), + "AttrDecimalScale": reflect.ValueOf(dwarf.AttrDecimalScale), + "AttrDecimalSign": reflect.ValueOf(dwarf.AttrDecimalSign), + "AttrDeclColumn": reflect.ValueOf(dwarf.AttrDeclColumn), + "AttrDeclFile": reflect.ValueOf(dwarf.AttrDeclFile), + "AttrDeclLine": reflect.ValueOf(dwarf.AttrDeclLine), + "AttrDeclaration": reflect.ValueOf(dwarf.AttrDeclaration), + "AttrDefaultValue": reflect.ValueOf(dwarf.AttrDefaultValue), + "AttrDefaulted": reflect.ValueOf(dwarf.AttrDefaulted), + "AttrDeleted": reflect.ValueOf(dwarf.AttrDeleted), + "AttrDescription": reflect.ValueOf(dwarf.AttrDescription), + "AttrDigitCount": reflect.ValueOf(dwarf.AttrDigitCount), + "AttrDiscr": reflect.ValueOf(dwarf.AttrDiscr), + "AttrDiscrList": reflect.ValueOf(dwarf.AttrDiscrList), + "AttrDiscrValue": reflect.ValueOf(dwarf.AttrDiscrValue), + "AttrDwoName": reflect.ValueOf(dwarf.AttrDwoName), + "AttrElemental": reflect.ValueOf(dwarf.AttrElemental), + "AttrEncoding": reflect.ValueOf(dwarf.AttrEncoding), + "AttrEndianity": reflect.ValueOf(dwarf.AttrEndianity), + "AttrEntrypc": reflect.ValueOf(dwarf.AttrEntrypc), + "AttrEnumClass": reflect.ValueOf(dwarf.AttrEnumClass), + "AttrExplicit": reflect.ValueOf(dwarf.AttrExplicit), + "AttrExportSymbols": reflect.ValueOf(dwarf.AttrExportSymbols), + "AttrExtension": reflect.ValueOf(dwarf.AttrExtension), + "AttrExternal": reflect.ValueOf(dwarf.AttrExternal), + "AttrFrameBase": reflect.ValueOf(dwarf.AttrFrameBase), + "AttrFriend": reflect.ValueOf(dwarf.AttrFriend), + "AttrHighpc": reflect.ValueOf(dwarf.AttrHighpc), + "AttrIdentifierCase": reflect.ValueOf(dwarf.AttrIdentifierCase), + "AttrImport": reflect.ValueOf(dwarf.AttrImport), + "AttrInline": reflect.ValueOf(dwarf.AttrInline), + "AttrIsOptional": reflect.ValueOf(dwarf.AttrIsOptional), + "AttrLanguage": reflect.ValueOf(dwarf.AttrLanguage), + "AttrLinkageName": reflect.ValueOf(dwarf.AttrLinkageName), + "AttrLocation": reflect.ValueOf(dwarf.AttrLocation), + "AttrLoclistsBase": reflect.ValueOf(dwarf.AttrLoclistsBase), + "AttrLowerBound": reflect.ValueOf(dwarf.AttrLowerBound), + "AttrLowpc": reflect.ValueOf(dwarf.AttrLowpc), + "AttrMacroInfo": reflect.ValueOf(dwarf.AttrMacroInfo), + "AttrMacros": reflect.ValueOf(dwarf.AttrMacros), + "AttrMainSubprogram": reflect.ValueOf(dwarf.AttrMainSubprogram), + "AttrMutable": reflect.ValueOf(dwarf.AttrMutable), + "AttrName": reflect.ValueOf(dwarf.AttrName), + "AttrNamelistItem": reflect.ValueOf(dwarf.AttrNamelistItem), + "AttrNoreturn": reflect.ValueOf(dwarf.AttrNoreturn), + "AttrObjectPointer": reflect.ValueOf(dwarf.AttrObjectPointer), + "AttrOrdering": reflect.ValueOf(dwarf.AttrOrdering), + "AttrPictureString": reflect.ValueOf(dwarf.AttrPictureString), + "AttrPriority": reflect.ValueOf(dwarf.AttrPriority), + "AttrProducer": reflect.ValueOf(dwarf.AttrProducer), + "AttrPrototyped": reflect.ValueOf(dwarf.AttrPrototyped), + "AttrPure": reflect.ValueOf(dwarf.AttrPure), + "AttrRanges": reflect.ValueOf(dwarf.AttrRanges), + "AttrRank": reflect.ValueOf(dwarf.AttrRank), + "AttrRecursive": reflect.ValueOf(dwarf.AttrRecursive), + "AttrReference": reflect.ValueOf(dwarf.AttrReference), + "AttrReturnAddr": reflect.ValueOf(dwarf.AttrReturnAddr), + "AttrRnglistsBase": reflect.ValueOf(dwarf.AttrRnglistsBase), + "AttrRvalueReference": reflect.ValueOf(dwarf.AttrRvalueReference), + "AttrSegment": reflect.ValueOf(dwarf.AttrSegment), + "AttrSibling": reflect.ValueOf(dwarf.AttrSibling), + "AttrSignature": reflect.ValueOf(dwarf.AttrSignature), + "AttrSmall": reflect.ValueOf(dwarf.AttrSmall), + "AttrSpecification": reflect.ValueOf(dwarf.AttrSpecification), + "AttrStartScope": reflect.ValueOf(dwarf.AttrStartScope), + "AttrStaticLink": reflect.ValueOf(dwarf.AttrStaticLink), + "AttrStmtList": reflect.ValueOf(dwarf.AttrStmtList), + "AttrStrOffsetsBase": reflect.ValueOf(dwarf.AttrStrOffsetsBase), + "AttrStride": reflect.ValueOf(dwarf.AttrStride), + "AttrStrideSize": reflect.ValueOf(dwarf.AttrStrideSize), + "AttrStringLength": reflect.ValueOf(dwarf.AttrStringLength), + "AttrStringLengthBitSize": reflect.ValueOf(dwarf.AttrStringLengthBitSize), + "AttrStringLengthByteSize": reflect.ValueOf(dwarf.AttrStringLengthByteSize), + "AttrThreadsScaled": reflect.ValueOf(dwarf.AttrThreadsScaled), + "AttrTrampoline": reflect.ValueOf(dwarf.AttrTrampoline), + "AttrType": reflect.ValueOf(dwarf.AttrType), + "AttrUpperBound": reflect.ValueOf(dwarf.AttrUpperBound), + "AttrUseLocation": reflect.ValueOf(dwarf.AttrUseLocation), + "AttrUseUTF8": reflect.ValueOf(dwarf.AttrUseUTF8), + "AttrVarParam": reflect.ValueOf(dwarf.AttrVarParam), + "AttrVirtuality": reflect.ValueOf(dwarf.AttrVirtuality), + "AttrVisibility": reflect.ValueOf(dwarf.AttrVisibility), + "AttrVtableElemLoc": reflect.ValueOf(dwarf.AttrVtableElemLoc), + "ClassAddrPtr": reflect.ValueOf(dwarf.ClassAddrPtr), + "ClassAddress": reflect.ValueOf(dwarf.ClassAddress), + "ClassBlock": reflect.ValueOf(dwarf.ClassBlock), + "ClassConstant": reflect.ValueOf(dwarf.ClassConstant), + "ClassExprLoc": reflect.ValueOf(dwarf.ClassExprLoc), + "ClassFlag": reflect.ValueOf(dwarf.ClassFlag), + "ClassLinePtr": reflect.ValueOf(dwarf.ClassLinePtr), + "ClassLocList": reflect.ValueOf(dwarf.ClassLocList), + "ClassLocListPtr": reflect.ValueOf(dwarf.ClassLocListPtr), + "ClassMacPtr": reflect.ValueOf(dwarf.ClassMacPtr), + "ClassRangeListPtr": reflect.ValueOf(dwarf.ClassRangeListPtr), + "ClassReference": reflect.ValueOf(dwarf.ClassReference), + "ClassReferenceAlt": reflect.ValueOf(dwarf.ClassReferenceAlt), + "ClassReferenceSig": reflect.ValueOf(dwarf.ClassReferenceSig), + "ClassRngList": reflect.ValueOf(dwarf.ClassRngList), + "ClassRngListsPtr": reflect.ValueOf(dwarf.ClassRngListsPtr), + "ClassStrOffsetsPtr": reflect.ValueOf(dwarf.ClassStrOffsetsPtr), + "ClassString": reflect.ValueOf(dwarf.ClassString), + "ClassStringAlt": reflect.ValueOf(dwarf.ClassStringAlt), + "ClassUnknown": reflect.ValueOf(dwarf.ClassUnknown), + "ErrUnknownPC": reflect.ValueOf(&dwarf.ErrUnknownPC).Elem(), + "New": reflect.ValueOf(dwarf.New), + "TagAccessDeclaration": reflect.ValueOf(dwarf.TagAccessDeclaration), + "TagArrayType": reflect.ValueOf(dwarf.TagArrayType), + "TagAtomicType": reflect.ValueOf(dwarf.TagAtomicType), + "TagBaseType": reflect.ValueOf(dwarf.TagBaseType), + "TagCallSite": reflect.ValueOf(dwarf.TagCallSite), + "TagCallSiteParameter": reflect.ValueOf(dwarf.TagCallSiteParameter), + "TagCatchDwarfBlock": reflect.ValueOf(dwarf.TagCatchDwarfBlock), + "TagClassType": reflect.ValueOf(dwarf.TagClassType), + "TagCoarrayType": reflect.ValueOf(dwarf.TagCoarrayType), + "TagCommonDwarfBlock": reflect.ValueOf(dwarf.TagCommonDwarfBlock), + "TagCommonInclusion": reflect.ValueOf(dwarf.TagCommonInclusion), + "TagCompileUnit": reflect.ValueOf(dwarf.TagCompileUnit), + "TagCondition": reflect.ValueOf(dwarf.TagCondition), + "TagConstType": reflect.ValueOf(dwarf.TagConstType), + "TagConstant": reflect.ValueOf(dwarf.TagConstant), + "TagDwarfProcedure": reflect.ValueOf(dwarf.TagDwarfProcedure), + "TagDynamicType": reflect.ValueOf(dwarf.TagDynamicType), + "TagEntryPoint": reflect.ValueOf(dwarf.TagEntryPoint), + "TagEnumerationType": reflect.ValueOf(dwarf.TagEnumerationType), + "TagEnumerator": reflect.ValueOf(dwarf.TagEnumerator), + "TagFileType": reflect.ValueOf(dwarf.TagFileType), + "TagFormalParameter": reflect.ValueOf(dwarf.TagFormalParameter), + "TagFriend": reflect.ValueOf(dwarf.TagFriend), + "TagGenericSubrange": reflect.ValueOf(dwarf.TagGenericSubrange), + "TagImmutableType": reflect.ValueOf(dwarf.TagImmutableType), + "TagImportedDeclaration": reflect.ValueOf(dwarf.TagImportedDeclaration), + "TagImportedModule": reflect.ValueOf(dwarf.TagImportedModule), + "TagImportedUnit": reflect.ValueOf(dwarf.TagImportedUnit), + "TagInheritance": reflect.ValueOf(dwarf.TagInheritance), + "TagInlinedSubroutine": reflect.ValueOf(dwarf.TagInlinedSubroutine), + "TagInterfaceType": reflect.ValueOf(dwarf.TagInterfaceType), + "TagLabel": reflect.ValueOf(dwarf.TagLabel), + "TagLexDwarfBlock": reflect.ValueOf(dwarf.TagLexDwarfBlock), + "TagMember": reflect.ValueOf(dwarf.TagMember), + "TagModule": reflect.ValueOf(dwarf.TagModule), + "TagMutableType": reflect.ValueOf(dwarf.TagMutableType), + "TagNamelist": reflect.ValueOf(dwarf.TagNamelist), + "TagNamelistItem": reflect.ValueOf(dwarf.TagNamelistItem), + "TagNamespace": reflect.ValueOf(dwarf.TagNamespace), + "TagPackedType": reflect.ValueOf(dwarf.TagPackedType), + "TagPartialUnit": reflect.ValueOf(dwarf.TagPartialUnit), + "TagPointerType": reflect.ValueOf(dwarf.TagPointerType), + "TagPtrToMemberType": reflect.ValueOf(dwarf.TagPtrToMemberType), + "TagReferenceType": reflect.ValueOf(dwarf.TagReferenceType), + "TagRestrictType": reflect.ValueOf(dwarf.TagRestrictType), + "TagRvalueReferenceType": reflect.ValueOf(dwarf.TagRvalueReferenceType), + "TagSetType": reflect.ValueOf(dwarf.TagSetType), + "TagSharedType": reflect.ValueOf(dwarf.TagSharedType), + "TagSkeletonUnit": reflect.ValueOf(dwarf.TagSkeletonUnit), + "TagStringType": reflect.ValueOf(dwarf.TagStringType), + "TagStructType": reflect.ValueOf(dwarf.TagStructType), + "TagSubprogram": reflect.ValueOf(dwarf.TagSubprogram), + "TagSubrangeType": reflect.ValueOf(dwarf.TagSubrangeType), + "TagSubroutineType": reflect.ValueOf(dwarf.TagSubroutineType), + "TagTemplateAlias": reflect.ValueOf(dwarf.TagTemplateAlias), + "TagTemplateTypeParameter": reflect.ValueOf(dwarf.TagTemplateTypeParameter), + "TagTemplateValueParameter": reflect.ValueOf(dwarf.TagTemplateValueParameter), + "TagThrownType": reflect.ValueOf(dwarf.TagThrownType), + "TagTryDwarfBlock": reflect.ValueOf(dwarf.TagTryDwarfBlock), + "TagTypeUnit": reflect.ValueOf(dwarf.TagTypeUnit), + "TagTypedef": reflect.ValueOf(dwarf.TagTypedef), + "TagUnionType": reflect.ValueOf(dwarf.TagUnionType), + "TagUnspecifiedParameters": reflect.ValueOf(dwarf.TagUnspecifiedParameters), + "TagUnspecifiedType": reflect.ValueOf(dwarf.TagUnspecifiedType), + "TagVariable": reflect.ValueOf(dwarf.TagVariable), + "TagVariant": reflect.ValueOf(dwarf.TagVariant), + "TagVariantPart": reflect.ValueOf(dwarf.TagVariantPart), + "TagVolatileType": reflect.ValueOf(dwarf.TagVolatileType), + "TagWithStmt": reflect.ValueOf(dwarf.TagWithStmt), + + // type definitions + "AddrType": reflect.ValueOf((*dwarf.AddrType)(nil)), + "ArrayType": reflect.ValueOf((*dwarf.ArrayType)(nil)), + "Attr": reflect.ValueOf((*dwarf.Attr)(nil)), + "BasicType": reflect.ValueOf((*dwarf.BasicType)(nil)), + "BoolType": reflect.ValueOf((*dwarf.BoolType)(nil)), + "CharType": reflect.ValueOf((*dwarf.CharType)(nil)), + "Class": reflect.ValueOf((*dwarf.Class)(nil)), + "CommonType": reflect.ValueOf((*dwarf.CommonType)(nil)), + "ComplexType": reflect.ValueOf((*dwarf.ComplexType)(nil)), + "Data": reflect.ValueOf((*dwarf.Data)(nil)), + "DecodeError": reflect.ValueOf((*dwarf.DecodeError)(nil)), + "DotDotDotType": reflect.ValueOf((*dwarf.DotDotDotType)(nil)), + "Entry": reflect.ValueOf((*dwarf.Entry)(nil)), + "EnumType": reflect.ValueOf((*dwarf.EnumType)(nil)), + "EnumValue": reflect.ValueOf((*dwarf.EnumValue)(nil)), + "Field": reflect.ValueOf((*dwarf.Field)(nil)), + "FloatType": reflect.ValueOf((*dwarf.FloatType)(nil)), + "FuncType": reflect.ValueOf((*dwarf.FuncType)(nil)), + "IntType": reflect.ValueOf((*dwarf.IntType)(nil)), + "LineEntry": reflect.ValueOf((*dwarf.LineEntry)(nil)), + "LineFile": reflect.ValueOf((*dwarf.LineFile)(nil)), + "LineReader": reflect.ValueOf((*dwarf.LineReader)(nil)), + "LineReaderPos": reflect.ValueOf((*dwarf.LineReaderPos)(nil)), + "Offset": reflect.ValueOf((*dwarf.Offset)(nil)), + "PtrType": reflect.ValueOf((*dwarf.PtrType)(nil)), + "QualType": reflect.ValueOf((*dwarf.QualType)(nil)), + "Reader": reflect.ValueOf((*dwarf.Reader)(nil)), + "StructField": reflect.ValueOf((*dwarf.StructField)(nil)), + "StructType": reflect.ValueOf((*dwarf.StructType)(nil)), + "Tag": reflect.ValueOf((*dwarf.Tag)(nil)), + "Type": reflect.ValueOf((*dwarf.Type)(nil)), + "TypedefType": reflect.ValueOf((*dwarf.TypedefType)(nil)), + "UcharType": reflect.ValueOf((*dwarf.UcharType)(nil)), + "UintType": reflect.ValueOf((*dwarf.UintType)(nil)), + "UnspecifiedType": reflect.ValueOf((*dwarf.UnspecifiedType)(nil)), + "UnsupportedType": reflect.ValueOf((*dwarf.UnsupportedType)(nil)), + "VoidType": reflect.ValueOf((*dwarf.VoidType)(nil)), + + // interface wrapper definitions + "_Type": reflect.ValueOf((*_debug_dwarf_Type)(nil)), + } +} + +// _debug_dwarf_Type is an interface wrapper for Type type +type _debug_dwarf_Type struct { + IValue interface{} + WCommon func() *dwarf.CommonType + WSize func() int64 + WString func() string +} + +func (W _debug_dwarf_Type) Common() *dwarf.CommonType { + return W.WCommon() +} +func (W _debug_dwarf_Type) Size() int64 { + return W.WSize() +} +func (W _debug_dwarf_Type) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_debug_elf.go b/stdlib/go1_19_debug_elf.go new file mode 100644 index 000000000..d4e2998cb --- /dev/null +++ b/stdlib/go1_19_debug_elf.go @@ -0,0 +1,1418 @@ +// Code generated by 'yaegi extract debug/elf'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/elf" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["debug/elf/elf"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ARM_MAGIC_TRAMP_NUMBER": reflect.ValueOf(constant.MakeFromLiteral("1543503875", token.INT, 0)), + "COMPRESS_HIOS": reflect.ValueOf(elf.COMPRESS_HIOS), + "COMPRESS_HIPROC": reflect.ValueOf(elf.COMPRESS_HIPROC), + "COMPRESS_LOOS": reflect.ValueOf(elf.COMPRESS_LOOS), + "COMPRESS_LOPROC": reflect.ValueOf(elf.COMPRESS_LOPROC), + "COMPRESS_ZLIB": reflect.ValueOf(elf.COMPRESS_ZLIB), + "DF_BIND_NOW": reflect.ValueOf(elf.DF_BIND_NOW), + "DF_ORIGIN": reflect.ValueOf(elf.DF_ORIGIN), + "DF_STATIC_TLS": reflect.ValueOf(elf.DF_STATIC_TLS), + "DF_SYMBOLIC": reflect.ValueOf(elf.DF_SYMBOLIC), + "DF_TEXTREL": reflect.ValueOf(elf.DF_TEXTREL), + "DT_ADDRRNGHI": reflect.ValueOf(elf.DT_ADDRRNGHI), + "DT_ADDRRNGLO": reflect.ValueOf(elf.DT_ADDRRNGLO), + "DT_AUDIT": reflect.ValueOf(elf.DT_AUDIT), + "DT_AUXILIARY": reflect.ValueOf(elf.DT_AUXILIARY), + "DT_BIND_NOW": reflect.ValueOf(elf.DT_BIND_NOW), + "DT_CHECKSUM": reflect.ValueOf(elf.DT_CHECKSUM), + "DT_CONFIG": reflect.ValueOf(elf.DT_CONFIG), + "DT_DEBUG": reflect.ValueOf(elf.DT_DEBUG), + "DT_DEPAUDIT": reflect.ValueOf(elf.DT_DEPAUDIT), + "DT_ENCODING": reflect.ValueOf(elf.DT_ENCODING), + "DT_FEATURE": reflect.ValueOf(elf.DT_FEATURE), + "DT_FILTER": reflect.ValueOf(elf.DT_FILTER), + "DT_FINI": reflect.ValueOf(elf.DT_FINI), + "DT_FINI_ARRAY": reflect.ValueOf(elf.DT_FINI_ARRAY), + "DT_FINI_ARRAYSZ": reflect.ValueOf(elf.DT_FINI_ARRAYSZ), + "DT_FLAGS": reflect.ValueOf(elf.DT_FLAGS), + "DT_FLAGS_1": reflect.ValueOf(elf.DT_FLAGS_1), + "DT_GNU_CONFLICT": reflect.ValueOf(elf.DT_GNU_CONFLICT), + "DT_GNU_CONFLICTSZ": reflect.ValueOf(elf.DT_GNU_CONFLICTSZ), + "DT_GNU_HASH": reflect.ValueOf(elf.DT_GNU_HASH), + "DT_GNU_LIBLIST": reflect.ValueOf(elf.DT_GNU_LIBLIST), + "DT_GNU_LIBLISTSZ": reflect.ValueOf(elf.DT_GNU_LIBLISTSZ), + "DT_GNU_PRELINKED": reflect.ValueOf(elf.DT_GNU_PRELINKED), + "DT_HASH": reflect.ValueOf(elf.DT_HASH), + "DT_HIOS": reflect.ValueOf(elf.DT_HIOS), + "DT_HIPROC": reflect.ValueOf(elf.DT_HIPROC), + "DT_INIT": reflect.ValueOf(elf.DT_INIT), + "DT_INIT_ARRAY": reflect.ValueOf(elf.DT_INIT_ARRAY), + "DT_INIT_ARRAYSZ": reflect.ValueOf(elf.DT_INIT_ARRAYSZ), + "DT_JMPREL": reflect.ValueOf(elf.DT_JMPREL), + "DT_LOOS": reflect.ValueOf(elf.DT_LOOS), + "DT_LOPROC": reflect.ValueOf(elf.DT_LOPROC), + "DT_MIPS_AUX_DYNAMIC": reflect.ValueOf(elf.DT_MIPS_AUX_DYNAMIC), + "DT_MIPS_BASE_ADDRESS": reflect.ValueOf(elf.DT_MIPS_BASE_ADDRESS), + "DT_MIPS_COMPACT_SIZE": reflect.ValueOf(elf.DT_MIPS_COMPACT_SIZE), + "DT_MIPS_CONFLICT": reflect.ValueOf(elf.DT_MIPS_CONFLICT), + "DT_MIPS_CONFLICTNO": reflect.ValueOf(elf.DT_MIPS_CONFLICTNO), + "DT_MIPS_CXX_FLAGS": reflect.ValueOf(elf.DT_MIPS_CXX_FLAGS), + "DT_MIPS_DELTA_CLASS": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS), + "DT_MIPS_DELTA_CLASSSYM": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM), + "DT_MIPS_DELTA_CLASSSYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASSSYM_NO), + "DT_MIPS_DELTA_CLASS_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_CLASS_NO), + "DT_MIPS_DELTA_INSTANCE": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE), + "DT_MIPS_DELTA_INSTANCE_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_INSTANCE_NO), + "DT_MIPS_DELTA_RELOC": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC), + "DT_MIPS_DELTA_RELOC_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_RELOC_NO), + "DT_MIPS_DELTA_SYM": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM), + "DT_MIPS_DELTA_SYM_NO": reflect.ValueOf(elf.DT_MIPS_DELTA_SYM_NO), + "DT_MIPS_DYNSTR_ALIGN": reflect.ValueOf(elf.DT_MIPS_DYNSTR_ALIGN), + "DT_MIPS_FLAGS": reflect.ValueOf(elf.DT_MIPS_FLAGS), + "DT_MIPS_GOTSYM": reflect.ValueOf(elf.DT_MIPS_GOTSYM), + "DT_MIPS_GP_VALUE": reflect.ValueOf(elf.DT_MIPS_GP_VALUE), + "DT_MIPS_HIDDEN_GOTIDX": reflect.ValueOf(elf.DT_MIPS_HIDDEN_GOTIDX), + "DT_MIPS_HIPAGENO": reflect.ValueOf(elf.DT_MIPS_HIPAGENO), + "DT_MIPS_ICHECKSUM": reflect.ValueOf(elf.DT_MIPS_ICHECKSUM), + "DT_MIPS_INTERFACE": reflect.ValueOf(elf.DT_MIPS_INTERFACE), + "DT_MIPS_INTERFACE_SIZE": reflect.ValueOf(elf.DT_MIPS_INTERFACE_SIZE), + "DT_MIPS_IVERSION": reflect.ValueOf(elf.DT_MIPS_IVERSION), + "DT_MIPS_LIBLIST": reflect.ValueOf(elf.DT_MIPS_LIBLIST), + "DT_MIPS_LIBLISTNO": reflect.ValueOf(elf.DT_MIPS_LIBLISTNO), + "DT_MIPS_LOCALPAGE_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCALPAGE_GOTIDX), + "DT_MIPS_LOCAL_GOTIDX": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTIDX), + "DT_MIPS_LOCAL_GOTNO": reflect.ValueOf(elf.DT_MIPS_LOCAL_GOTNO), + "DT_MIPS_MSYM": reflect.ValueOf(elf.DT_MIPS_MSYM), + "DT_MIPS_OPTIONS": reflect.ValueOf(elf.DT_MIPS_OPTIONS), + "DT_MIPS_PERF_SUFFIX": reflect.ValueOf(elf.DT_MIPS_PERF_SUFFIX), + "DT_MIPS_PIXIE_INIT": reflect.ValueOf(elf.DT_MIPS_PIXIE_INIT), + "DT_MIPS_PLTGOT": reflect.ValueOf(elf.DT_MIPS_PLTGOT), + "DT_MIPS_PROTECTED_GOTIDX": reflect.ValueOf(elf.DT_MIPS_PROTECTED_GOTIDX), + "DT_MIPS_RLD_MAP": reflect.ValueOf(elf.DT_MIPS_RLD_MAP), + "DT_MIPS_RLD_MAP_REL": reflect.ValueOf(elf.DT_MIPS_RLD_MAP_REL), + "DT_MIPS_RLD_TEXT_RESOLVE_ADDR": reflect.ValueOf(elf.DT_MIPS_RLD_TEXT_RESOLVE_ADDR), + "DT_MIPS_RLD_VERSION": reflect.ValueOf(elf.DT_MIPS_RLD_VERSION), + "DT_MIPS_RWPLT": reflect.ValueOf(elf.DT_MIPS_RWPLT), + "DT_MIPS_SYMBOL_LIB": reflect.ValueOf(elf.DT_MIPS_SYMBOL_LIB), + "DT_MIPS_SYMTABNO": reflect.ValueOf(elf.DT_MIPS_SYMTABNO), + "DT_MIPS_TIME_STAMP": reflect.ValueOf(elf.DT_MIPS_TIME_STAMP), + "DT_MIPS_UNREFEXTNO": reflect.ValueOf(elf.DT_MIPS_UNREFEXTNO), + "DT_MOVEENT": reflect.ValueOf(elf.DT_MOVEENT), + "DT_MOVESZ": reflect.ValueOf(elf.DT_MOVESZ), + "DT_MOVETAB": reflect.ValueOf(elf.DT_MOVETAB), + "DT_NEEDED": reflect.ValueOf(elf.DT_NEEDED), + "DT_NULL": reflect.ValueOf(elf.DT_NULL), + "DT_PLTGOT": reflect.ValueOf(elf.DT_PLTGOT), + "DT_PLTPAD": reflect.ValueOf(elf.DT_PLTPAD), + "DT_PLTPADSZ": reflect.ValueOf(elf.DT_PLTPADSZ), + "DT_PLTREL": reflect.ValueOf(elf.DT_PLTREL), + "DT_PLTRELSZ": reflect.ValueOf(elf.DT_PLTRELSZ), + "DT_POSFLAG_1": reflect.ValueOf(elf.DT_POSFLAG_1), + "DT_PPC64_GLINK": reflect.ValueOf(elf.DT_PPC64_GLINK), + "DT_PPC64_OPD": reflect.ValueOf(elf.DT_PPC64_OPD), + "DT_PPC64_OPDSZ": reflect.ValueOf(elf.DT_PPC64_OPDSZ), + "DT_PPC64_OPT": reflect.ValueOf(elf.DT_PPC64_OPT), + "DT_PPC_GOT": reflect.ValueOf(elf.DT_PPC_GOT), + "DT_PPC_OPT": reflect.ValueOf(elf.DT_PPC_OPT), + "DT_PREINIT_ARRAY": reflect.ValueOf(elf.DT_PREINIT_ARRAY), + "DT_PREINIT_ARRAYSZ": reflect.ValueOf(elf.DT_PREINIT_ARRAYSZ), + "DT_REL": reflect.ValueOf(elf.DT_REL), + "DT_RELA": reflect.ValueOf(elf.DT_RELA), + "DT_RELACOUNT": reflect.ValueOf(elf.DT_RELACOUNT), + "DT_RELAENT": reflect.ValueOf(elf.DT_RELAENT), + "DT_RELASZ": reflect.ValueOf(elf.DT_RELASZ), + "DT_RELCOUNT": reflect.ValueOf(elf.DT_RELCOUNT), + "DT_RELENT": reflect.ValueOf(elf.DT_RELENT), + "DT_RELSZ": reflect.ValueOf(elf.DT_RELSZ), + "DT_RPATH": reflect.ValueOf(elf.DT_RPATH), + "DT_RUNPATH": reflect.ValueOf(elf.DT_RUNPATH), + "DT_SONAME": reflect.ValueOf(elf.DT_SONAME), + "DT_SPARC_REGISTER": reflect.ValueOf(elf.DT_SPARC_REGISTER), + "DT_STRSZ": reflect.ValueOf(elf.DT_STRSZ), + "DT_STRTAB": reflect.ValueOf(elf.DT_STRTAB), + "DT_SYMBOLIC": reflect.ValueOf(elf.DT_SYMBOLIC), + "DT_SYMENT": reflect.ValueOf(elf.DT_SYMENT), + "DT_SYMINENT": reflect.ValueOf(elf.DT_SYMINENT), + "DT_SYMINFO": reflect.ValueOf(elf.DT_SYMINFO), + "DT_SYMINSZ": reflect.ValueOf(elf.DT_SYMINSZ), + "DT_SYMTAB": reflect.ValueOf(elf.DT_SYMTAB), + "DT_SYMTAB_SHNDX": reflect.ValueOf(elf.DT_SYMTAB_SHNDX), + "DT_TEXTREL": reflect.ValueOf(elf.DT_TEXTREL), + "DT_TLSDESC_GOT": reflect.ValueOf(elf.DT_TLSDESC_GOT), + "DT_TLSDESC_PLT": reflect.ValueOf(elf.DT_TLSDESC_PLT), + "DT_USED": reflect.ValueOf(elf.DT_USED), + "DT_VALRNGHI": reflect.ValueOf(elf.DT_VALRNGHI), + "DT_VALRNGLO": reflect.ValueOf(elf.DT_VALRNGLO), + "DT_VERDEF": reflect.ValueOf(elf.DT_VERDEF), + "DT_VERDEFNUM": reflect.ValueOf(elf.DT_VERDEFNUM), + "DT_VERNEED": reflect.ValueOf(elf.DT_VERNEED), + "DT_VERNEEDNUM": reflect.ValueOf(elf.DT_VERNEEDNUM), + "DT_VERSYM": reflect.ValueOf(elf.DT_VERSYM), + "EI_ABIVERSION": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EI_CLASS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EI_DATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EI_NIDENT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EI_OSABI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EI_PAD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "EI_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ELFCLASS32": reflect.ValueOf(elf.ELFCLASS32), + "ELFCLASS64": reflect.ValueOf(elf.ELFCLASS64), + "ELFCLASSNONE": reflect.ValueOf(elf.ELFCLASSNONE), + "ELFDATA2LSB": reflect.ValueOf(elf.ELFDATA2LSB), + "ELFDATA2MSB": reflect.ValueOf(elf.ELFDATA2MSB), + "ELFDATANONE": reflect.ValueOf(elf.ELFDATANONE), + "ELFMAG": reflect.ValueOf(constant.MakeFromLiteral("\"\\x7fELF\"", token.STRING, 0)), + "ELFOSABI_86OPEN": reflect.ValueOf(elf.ELFOSABI_86OPEN), + "ELFOSABI_AIX": reflect.ValueOf(elf.ELFOSABI_AIX), + "ELFOSABI_ARM": reflect.ValueOf(elf.ELFOSABI_ARM), + "ELFOSABI_AROS": reflect.ValueOf(elf.ELFOSABI_AROS), + "ELFOSABI_CLOUDABI": reflect.ValueOf(elf.ELFOSABI_CLOUDABI), + "ELFOSABI_FENIXOS": reflect.ValueOf(elf.ELFOSABI_FENIXOS), + "ELFOSABI_FREEBSD": reflect.ValueOf(elf.ELFOSABI_FREEBSD), + "ELFOSABI_HPUX": reflect.ValueOf(elf.ELFOSABI_HPUX), + "ELFOSABI_HURD": reflect.ValueOf(elf.ELFOSABI_HURD), + "ELFOSABI_IRIX": reflect.ValueOf(elf.ELFOSABI_IRIX), + "ELFOSABI_LINUX": reflect.ValueOf(elf.ELFOSABI_LINUX), + "ELFOSABI_MODESTO": reflect.ValueOf(elf.ELFOSABI_MODESTO), + "ELFOSABI_NETBSD": reflect.ValueOf(elf.ELFOSABI_NETBSD), + "ELFOSABI_NONE": reflect.ValueOf(elf.ELFOSABI_NONE), + "ELFOSABI_NSK": reflect.ValueOf(elf.ELFOSABI_NSK), + "ELFOSABI_OPENBSD": reflect.ValueOf(elf.ELFOSABI_OPENBSD), + "ELFOSABI_OPENVMS": reflect.ValueOf(elf.ELFOSABI_OPENVMS), + "ELFOSABI_SOLARIS": reflect.ValueOf(elf.ELFOSABI_SOLARIS), + "ELFOSABI_STANDALONE": reflect.ValueOf(elf.ELFOSABI_STANDALONE), + "ELFOSABI_TRU64": reflect.ValueOf(elf.ELFOSABI_TRU64), + "EM_386": reflect.ValueOf(elf.EM_386), + "EM_486": reflect.ValueOf(elf.EM_486), + "EM_56800EX": reflect.ValueOf(elf.EM_56800EX), + "EM_68HC05": reflect.ValueOf(elf.EM_68HC05), + "EM_68HC08": reflect.ValueOf(elf.EM_68HC08), + "EM_68HC11": reflect.ValueOf(elf.EM_68HC11), + "EM_68HC12": reflect.ValueOf(elf.EM_68HC12), + "EM_68HC16": reflect.ValueOf(elf.EM_68HC16), + "EM_68K": reflect.ValueOf(elf.EM_68K), + "EM_78KOR": reflect.ValueOf(elf.EM_78KOR), + "EM_8051": reflect.ValueOf(elf.EM_8051), + "EM_860": reflect.ValueOf(elf.EM_860), + "EM_88K": reflect.ValueOf(elf.EM_88K), + "EM_960": reflect.ValueOf(elf.EM_960), + "EM_AARCH64": reflect.ValueOf(elf.EM_AARCH64), + "EM_ALPHA": reflect.ValueOf(elf.EM_ALPHA), + "EM_ALPHA_STD": reflect.ValueOf(elf.EM_ALPHA_STD), + "EM_ALTERA_NIOS2": reflect.ValueOf(elf.EM_ALTERA_NIOS2), + "EM_AMDGPU": reflect.ValueOf(elf.EM_AMDGPU), + "EM_ARC": reflect.ValueOf(elf.EM_ARC), + "EM_ARCA": reflect.ValueOf(elf.EM_ARCA), + "EM_ARC_COMPACT": reflect.ValueOf(elf.EM_ARC_COMPACT), + "EM_ARC_COMPACT2": reflect.ValueOf(elf.EM_ARC_COMPACT2), + "EM_ARM": reflect.ValueOf(elf.EM_ARM), + "EM_AVR": reflect.ValueOf(elf.EM_AVR), + "EM_AVR32": reflect.ValueOf(elf.EM_AVR32), + "EM_BA1": reflect.ValueOf(elf.EM_BA1), + "EM_BA2": reflect.ValueOf(elf.EM_BA2), + "EM_BLACKFIN": reflect.ValueOf(elf.EM_BLACKFIN), + "EM_BPF": reflect.ValueOf(elf.EM_BPF), + "EM_C166": reflect.ValueOf(elf.EM_C166), + "EM_CDP": reflect.ValueOf(elf.EM_CDP), + "EM_CE": reflect.ValueOf(elf.EM_CE), + "EM_CLOUDSHIELD": reflect.ValueOf(elf.EM_CLOUDSHIELD), + "EM_COGE": reflect.ValueOf(elf.EM_COGE), + "EM_COLDFIRE": reflect.ValueOf(elf.EM_COLDFIRE), + "EM_COOL": reflect.ValueOf(elf.EM_COOL), + "EM_COREA_1ST": reflect.ValueOf(elf.EM_COREA_1ST), + "EM_COREA_2ND": reflect.ValueOf(elf.EM_COREA_2ND), + "EM_CR": reflect.ValueOf(elf.EM_CR), + "EM_CR16": reflect.ValueOf(elf.EM_CR16), + "EM_CRAYNV2": reflect.ValueOf(elf.EM_CRAYNV2), + "EM_CRIS": reflect.ValueOf(elf.EM_CRIS), + "EM_CRX": reflect.ValueOf(elf.EM_CRX), + "EM_CSR_KALIMBA": reflect.ValueOf(elf.EM_CSR_KALIMBA), + "EM_CUDA": reflect.ValueOf(elf.EM_CUDA), + "EM_CYPRESS_M8C": reflect.ValueOf(elf.EM_CYPRESS_M8C), + "EM_D10V": reflect.ValueOf(elf.EM_D10V), + "EM_D30V": reflect.ValueOf(elf.EM_D30V), + "EM_DSP24": reflect.ValueOf(elf.EM_DSP24), + "EM_DSPIC30F": reflect.ValueOf(elf.EM_DSPIC30F), + "EM_DXP": reflect.ValueOf(elf.EM_DXP), + "EM_ECOG1": reflect.ValueOf(elf.EM_ECOG1), + "EM_ECOG16": reflect.ValueOf(elf.EM_ECOG16), + "EM_ECOG1X": reflect.ValueOf(elf.EM_ECOG1X), + "EM_ECOG2": reflect.ValueOf(elf.EM_ECOG2), + "EM_ETPU": reflect.ValueOf(elf.EM_ETPU), + "EM_EXCESS": reflect.ValueOf(elf.EM_EXCESS), + "EM_F2MC16": reflect.ValueOf(elf.EM_F2MC16), + "EM_FIREPATH": reflect.ValueOf(elf.EM_FIREPATH), + "EM_FR20": reflect.ValueOf(elf.EM_FR20), + "EM_FR30": reflect.ValueOf(elf.EM_FR30), + "EM_FT32": reflect.ValueOf(elf.EM_FT32), + "EM_FX66": reflect.ValueOf(elf.EM_FX66), + "EM_H8S": reflect.ValueOf(elf.EM_H8S), + "EM_H8_300": reflect.ValueOf(elf.EM_H8_300), + "EM_H8_300H": reflect.ValueOf(elf.EM_H8_300H), + "EM_H8_500": reflect.ValueOf(elf.EM_H8_500), + "EM_HUANY": reflect.ValueOf(elf.EM_HUANY), + "EM_IA_64": reflect.ValueOf(elf.EM_IA_64), + "EM_INTEL205": reflect.ValueOf(elf.EM_INTEL205), + "EM_INTEL206": reflect.ValueOf(elf.EM_INTEL206), + "EM_INTEL207": reflect.ValueOf(elf.EM_INTEL207), + "EM_INTEL208": reflect.ValueOf(elf.EM_INTEL208), + "EM_INTEL209": reflect.ValueOf(elf.EM_INTEL209), + "EM_IP2K": reflect.ValueOf(elf.EM_IP2K), + "EM_JAVELIN": reflect.ValueOf(elf.EM_JAVELIN), + "EM_K10M": reflect.ValueOf(elf.EM_K10M), + "EM_KM32": reflect.ValueOf(elf.EM_KM32), + "EM_KMX16": reflect.ValueOf(elf.EM_KMX16), + "EM_KMX32": reflect.ValueOf(elf.EM_KMX32), + "EM_KMX8": reflect.ValueOf(elf.EM_KMX8), + "EM_KVARC": reflect.ValueOf(elf.EM_KVARC), + "EM_L10M": reflect.ValueOf(elf.EM_L10M), + "EM_LANAI": reflect.ValueOf(elf.EM_LANAI), + "EM_LATTICEMICO32": reflect.ValueOf(elf.EM_LATTICEMICO32), + "EM_LOONGARCH": reflect.ValueOf(elf.EM_LOONGARCH), + "EM_M16C": reflect.ValueOf(elf.EM_M16C), + "EM_M32": reflect.ValueOf(elf.EM_M32), + "EM_M32C": reflect.ValueOf(elf.EM_M32C), + "EM_M32R": reflect.ValueOf(elf.EM_M32R), + "EM_MANIK": reflect.ValueOf(elf.EM_MANIK), + "EM_MAX": reflect.ValueOf(elf.EM_MAX), + "EM_MAXQ30": reflect.ValueOf(elf.EM_MAXQ30), + "EM_MCHP_PIC": reflect.ValueOf(elf.EM_MCHP_PIC), + "EM_MCST_ELBRUS": reflect.ValueOf(elf.EM_MCST_ELBRUS), + "EM_ME16": reflect.ValueOf(elf.EM_ME16), + "EM_METAG": reflect.ValueOf(elf.EM_METAG), + "EM_MICROBLAZE": reflect.ValueOf(elf.EM_MICROBLAZE), + "EM_MIPS": reflect.ValueOf(elf.EM_MIPS), + "EM_MIPS_RS3_LE": reflect.ValueOf(elf.EM_MIPS_RS3_LE), + "EM_MIPS_RS4_BE": reflect.ValueOf(elf.EM_MIPS_RS4_BE), + "EM_MIPS_X": reflect.ValueOf(elf.EM_MIPS_X), + "EM_MMA": reflect.ValueOf(elf.EM_MMA), + "EM_MMDSP_PLUS": reflect.ValueOf(elf.EM_MMDSP_PLUS), + "EM_MMIX": reflect.ValueOf(elf.EM_MMIX), + "EM_MN10200": reflect.ValueOf(elf.EM_MN10200), + "EM_MN10300": reflect.ValueOf(elf.EM_MN10300), + "EM_MOXIE": reflect.ValueOf(elf.EM_MOXIE), + "EM_MSP430": reflect.ValueOf(elf.EM_MSP430), + "EM_NCPU": reflect.ValueOf(elf.EM_NCPU), + "EM_NDR1": reflect.ValueOf(elf.EM_NDR1), + "EM_NDS32": reflect.ValueOf(elf.EM_NDS32), + "EM_NONE": reflect.ValueOf(elf.EM_NONE), + "EM_NORC": reflect.ValueOf(elf.EM_NORC), + "EM_NS32K": reflect.ValueOf(elf.EM_NS32K), + "EM_OPEN8": reflect.ValueOf(elf.EM_OPEN8), + "EM_OPENRISC": reflect.ValueOf(elf.EM_OPENRISC), + "EM_PARISC": reflect.ValueOf(elf.EM_PARISC), + "EM_PCP": reflect.ValueOf(elf.EM_PCP), + "EM_PDP10": reflect.ValueOf(elf.EM_PDP10), + "EM_PDP11": reflect.ValueOf(elf.EM_PDP11), + "EM_PDSP": reflect.ValueOf(elf.EM_PDSP), + "EM_PJ": reflect.ValueOf(elf.EM_PJ), + "EM_PPC": reflect.ValueOf(elf.EM_PPC), + "EM_PPC64": reflect.ValueOf(elf.EM_PPC64), + "EM_PRISM": reflect.ValueOf(elf.EM_PRISM), + "EM_QDSP6": reflect.ValueOf(elf.EM_QDSP6), + "EM_R32C": reflect.ValueOf(elf.EM_R32C), + "EM_RCE": reflect.ValueOf(elf.EM_RCE), + "EM_RH32": reflect.ValueOf(elf.EM_RH32), + "EM_RISCV": reflect.ValueOf(elf.EM_RISCV), + "EM_RL78": reflect.ValueOf(elf.EM_RL78), + "EM_RS08": reflect.ValueOf(elf.EM_RS08), + "EM_RX": reflect.ValueOf(elf.EM_RX), + "EM_S370": reflect.ValueOf(elf.EM_S370), + "EM_S390": reflect.ValueOf(elf.EM_S390), + "EM_SCORE7": reflect.ValueOf(elf.EM_SCORE7), + "EM_SEP": reflect.ValueOf(elf.EM_SEP), + "EM_SE_C17": reflect.ValueOf(elf.EM_SE_C17), + "EM_SE_C33": reflect.ValueOf(elf.EM_SE_C33), + "EM_SH": reflect.ValueOf(elf.EM_SH), + "EM_SHARC": reflect.ValueOf(elf.EM_SHARC), + "EM_SLE9X": reflect.ValueOf(elf.EM_SLE9X), + "EM_SNP1K": reflect.ValueOf(elf.EM_SNP1K), + "EM_SPARC": reflect.ValueOf(elf.EM_SPARC), + "EM_SPARC32PLUS": reflect.ValueOf(elf.EM_SPARC32PLUS), + "EM_SPARCV9": reflect.ValueOf(elf.EM_SPARCV9), + "EM_ST100": reflect.ValueOf(elf.EM_ST100), + "EM_ST19": reflect.ValueOf(elf.EM_ST19), + "EM_ST200": reflect.ValueOf(elf.EM_ST200), + "EM_ST7": reflect.ValueOf(elf.EM_ST7), + "EM_ST9PLUS": reflect.ValueOf(elf.EM_ST9PLUS), + "EM_STARCORE": reflect.ValueOf(elf.EM_STARCORE), + "EM_STM8": reflect.ValueOf(elf.EM_STM8), + "EM_STXP7X": reflect.ValueOf(elf.EM_STXP7X), + "EM_SVX": reflect.ValueOf(elf.EM_SVX), + "EM_TILE64": reflect.ValueOf(elf.EM_TILE64), + "EM_TILEGX": reflect.ValueOf(elf.EM_TILEGX), + "EM_TILEPRO": reflect.ValueOf(elf.EM_TILEPRO), + "EM_TINYJ": reflect.ValueOf(elf.EM_TINYJ), + "EM_TI_ARP32": reflect.ValueOf(elf.EM_TI_ARP32), + "EM_TI_C2000": reflect.ValueOf(elf.EM_TI_C2000), + "EM_TI_C5500": reflect.ValueOf(elf.EM_TI_C5500), + "EM_TI_C6000": reflect.ValueOf(elf.EM_TI_C6000), + "EM_TI_PRU": reflect.ValueOf(elf.EM_TI_PRU), + "EM_TMM_GPP": reflect.ValueOf(elf.EM_TMM_GPP), + "EM_TPC": reflect.ValueOf(elf.EM_TPC), + "EM_TRICORE": reflect.ValueOf(elf.EM_TRICORE), + "EM_TRIMEDIA": reflect.ValueOf(elf.EM_TRIMEDIA), + "EM_TSK3000": reflect.ValueOf(elf.EM_TSK3000), + "EM_UNICORE": reflect.ValueOf(elf.EM_UNICORE), + "EM_V800": reflect.ValueOf(elf.EM_V800), + "EM_V850": reflect.ValueOf(elf.EM_V850), + "EM_VAX": reflect.ValueOf(elf.EM_VAX), + "EM_VIDEOCORE": reflect.ValueOf(elf.EM_VIDEOCORE), + "EM_VIDEOCORE3": reflect.ValueOf(elf.EM_VIDEOCORE3), + "EM_VIDEOCORE5": reflect.ValueOf(elf.EM_VIDEOCORE5), + "EM_VISIUM": reflect.ValueOf(elf.EM_VISIUM), + "EM_VPP500": reflect.ValueOf(elf.EM_VPP500), + "EM_X86_64": reflect.ValueOf(elf.EM_X86_64), + "EM_XCORE": reflect.ValueOf(elf.EM_XCORE), + "EM_XGATE": reflect.ValueOf(elf.EM_XGATE), + "EM_XIMO16": reflect.ValueOf(elf.EM_XIMO16), + "EM_XTENSA": reflect.ValueOf(elf.EM_XTENSA), + "EM_Z80": reflect.ValueOf(elf.EM_Z80), + "EM_ZSP": reflect.ValueOf(elf.EM_ZSP), + "ET_CORE": reflect.ValueOf(elf.ET_CORE), + "ET_DYN": reflect.ValueOf(elf.ET_DYN), + "ET_EXEC": reflect.ValueOf(elf.ET_EXEC), + "ET_HIOS": reflect.ValueOf(elf.ET_HIOS), + "ET_HIPROC": reflect.ValueOf(elf.ET_HIPROC), + "ET_LOOS": reflect.ValueOf(elf.ET_LOOS), + "ET_LOPROC": reflect.ValueOf(elf.ET_LOPROC), + "ET_NONE": reflect.ValueOf(elf.ET_NONE), + "ET_REL": reflect.ValueOf(elf.ET_REL), + "EV_CURRENT": reflect.ValueOf(elf.EV_CURRENT), + "EV_NONE": reflect.ValueOf(elf.EV_NONE), + "ErrNoSymbols": reflect.ValueOf(&elf.ErrNoSymbols).Elem(), + "NT_FPREGSET": reflect.ValueOf(elf.NT_FPREGSET), + "NT_PRPSINFO": reflect.ValueOf(elf.NT_PRPSINFO), + "NT_PRSTATUS": reflect.ValueOf(elf.NT_PRSTATUS), + "NewFile": reflect.ValueOf(elf.NewFile), + "Open": reflect.ValueOf(elf.Open), + "PF_MASKOS": reflect.ValueOf(elf.PF_MASKOS), + "PF_MASKPROC": reflect.ValueOf(elf.PF_MASKPROC), + "PF_R": reflect.ValueOf(elf.PF_R), + "PF_W": reflect.ValueOf(elf.PF_W), + "PF_X": reflect.ValueOf(elf.PF_X), + "PT_AARCH64_ARCHEXT": reflect.ValueOf(elf.PT_AARCH64_ARCHEXT), + "PT_AARCH64_UNWIND": reflect.ValueOf(elf.PT_AARCH64_UNWIND), + "PT_ARM_ARCHEXT": reflect.ValueOf(elf.PT_ARM_ARCHEXT), + "PT_ARM_EXIDX": reflect.ValueOf(elf.PT_ARM_EXIDX), + "PT_DYNAMIC": reflect.ValueOf(elf.PT_DYNAMIC), + "PT_GNU_EH_FRAME": reflect.ValueOf(elf.PT_GNU_EH_FRAME), + "PT_GNU_MBIND_HI": reflect.ValueOf(elf.PT_GNU_MBIND_HI), + "PT_GNU_MBIND_LO": reflect.ValueOf(elf.PT_GNU_MBIND_LO), + "PT_GNU_PROPERTY": reflect.ValueOf(elf.PT_GNU_PROPERTY), + "PT_GNU_RELRO": reflect.ValueOf(elf.PT_GNU_RELRO), + "PT_GNU_STACK": reflect.ValueOf(elf.PT_GNU_STACK), + "PT_HIOS": reflect.ValueOf(elf.PT_HIOS), + "PT_HIPROC": reflect.ValueOf(elf.PT_HIPROC), + "PT_INTERP": reflect.ValueOf(elf.PT_INTERP), + "PT_LOAD": reflect.ValueOf(elf.PT_LOAD), + "PT_LOOS": reflect.ValueOf(elf.PT_LOOS), + "PT_LOPROC": reflect.ValueOf(elf.PT_LOPROC), + "PT_MIPS_ABIFLAGS": reflect.ValueOf(elf.PT_MIPS_ABIFLAGS), + "PT_MIPS_OPTIONS": reflect.ValueOf(elf.PT_MIPS_OPTIONS), + "PT_MIPS_REGINFO": reflect.ValueOf(elf.PT_MIPS_REGINFO), + "PT_MIPS_RTPROC": reflect.ValueOf(elf.PT_MIPS_RTPROC), + "PT_NOTE": reflect.ValueOf(elf.PT_NOTE), + "PT_NULL": reflect.ValueOf(elf.PT_NULL), + "PT_OPENBSD_BOOTDATA": reflect.ValueOf(elf.PT_OPENBSD_BOOTDATA), + "PT_OPENBSD_RANDOMIZE": reflect.ValueOf(elf.PT_OPENBSD_RANDOMIZE), + "PT_OPENBSD_WXNEEDED": reflect.ValueOf(elf.PT_OPENBSD_WXNEEDED), + "PT_PAX_FLAGS": reflect.ValueOf(elf.PT_PAX_FLAGS), + "PT_PHDR": reflect.ValueOf(elf.PT_PHDR), + "PT_S390_PGSTE": reflect.ValueOf(elf.PT_S390_PGSTE), + "PT_SHLIB": reflect.ValueOf(elf.PT_SHLIB), + "PT_SUNWSTACK": reflect.ValueOf(elf.PT_SUNWSTACK), + "PT_SUNW_EH_FRAME": reflect.ValueOf(elf.PT_SUNW_EH_FRAME), + "PT_TLS": reflect.ValueOf(elf.PT_TLS), + "R_386_16": reflect.ValueOf(elf.R_386_16), + "R_386_32": reflect.ValueOf(elf.R_386_32), + "R_386_32PLT": reflect.ValueOf(elf.R_386_32PLT), + "R_386_8": reflect.ValueOf(elf.R_386_8), + "R_386_COPY": reflect.ValueOf(elf.R_386_COPY), + "R_386_GLOB_DAT": reflect.ValueOf(elf.R_386_GLOB_DAT), + "R_386_GOT32": reflect.ValueOf(elf.R_386_GOT32), + "R_386_GOT32X": reflect.ValueOf(elf.R_386_GOT32X), + "R_386_GOTOFF": reflect.ValueOf(elf.R_386_GOTOFF), + "R_386_GOTPC": reflect.ValueOf(elf.R_386_GOTPC), + "R_386_IRELATIVE": reflect.ValueOf(elf.R_386_IRELATIVE), + "R_386_JMP_SLOT": reflect.ValueOf(elf.R_386_JMP_SLOT), + "R_386_NONE": reflect.ValueOf(elf.R_386_NONE), + "R_386_PC16": reflect.ValueOf(elf.R_386_PC16), + "R_386_PC32": reflect.ValueOf(elf.R_386_PC32), + "R_386_PC8": reflect.ValueOf(elf.R_386_PC8), + "R_386_PLT32": reflect.ValueOf(elf.R_386_PLT32), + "R_386_RELATIVE": reflect.ValueOf(elf.R_386_RELATIVE), + "R_386_SIZE32": reflect.ValueOf(elf.R_386_SIZE32), + "R_386_TLS_DESC": reflect.ValueOf(elf.R_386_TLS_DESC), + "R_386_TLS_DESC_CALL": reflect.ValueOf(elf.R_386_TLS_DESC_CALL), + "R_386_TLS_DTPMOD32": reflect.ValueOf(elf.R_386_TLS_DTPMOD32), + "R_386_TLS_DTPOFF32": reflect.ValueOf(elf.R_386_TLS_DTPOFF32), + "R_386_TLS_GD": reflect.ValueOf(elf.R_386_TLS_GD), + "R_386_TLS_GD_32": reflect.ValueOf(elf.R_386_TLS_GD_32), + "R_386_TLS_GD_CALL": reflect.ValueOf(elf.R_386_TLS_GD_CALL), + "R_386_TLS_GD_POP": reflect.ValueOf(elf.R_386_TLS_GD_POP), + "R_386_TLS_GD_PUSH": reflect.ValueOf(elf.R_386_TLS_GD_PUSH), + "R_386_TLS_GOTDESC": reflect.ValueOf(elf.R_386_TLS_GOTDESC), + "R_386_TLS_GOTIE": reflect.ValueOf(elf.R_386_TLS_GOTIE), + "R_386_TLS_IE": reflect.ValueOf(elf.R_386_TLS_IE), + "R_386_TLS_IE_32": reflect.ValueOf(elf.R_386_TLS_IE_32), + "R_386_TLS_LDM": reflect.ValueOf(elf.R_386_TLS_LDM), + "R_386_TLS_LDM_32": reflect.ValueOf(elf.R_386_TLS_LDM_32), + "R_386_TLS_LDM_CALL": reflect.ValueOf(elf.R_386_TLS_LDM_CALL), + "R_386_TLS_LDM_POP": reflect.ValueOf(elf.R_386_TLS_LDM_POP), + "R_386_TLS_LDM_PUSH": reflect.ValueOf(elf.R_386_TLS_LDM_PUSH), + "R_386_TLS_LDO_32": reflect.ValueOf(elf.R_386_TLS_LDO_32), + "R_386_TLS_LE": reflect.ValueOf(elf.R_386_TLS_LE), + "R_386_TLS_LE_32": reflect.ValueOf(elf.R_386_TLS_LE_32), + "R_386_TLS_TPOFF": reflect.ValueOf(elf.R_386_TLS_TPOFF), + "R_386_TLS_TPOFF32": reflect.ValueOf(elf.R_386_TLS_TPOFF32), + "R_390_12": reflect.ValueOf(elf.R_390_12), + "R_390_16": reflect.ValueOf(elf.R_390_16), + "R_390_20": reflect.ValueOf(elf.R_390_20), + "R_390_32": reflect.ValueOf(elf.R_390_32), + "R_390_64": reflect.ValueOf(elf.R_390_64), + "R_390_8": reflect.ValueOf(elf.R_390_8), + "R_390_COPY": reflect.ValueOf(elf.R_390_COPY), + "R_390_GLOB_DAT": reflect.ValueOf(elf.R_390_GLOB_DAT), + "R_390_GOT12": reflect.ValueOf(elf.R_390_GOT12), + "R_390_GOT16": reflect.ValueOf(elf.R_390_GOT16), + "R_390_GOT20": reflect.ValueOf(elf.R_390_GOT20), + "R_390_GOT32": reflect.ValueOf(elf.R_390_GOT32), + "R_390_GOT64": reflect.ValueOf(elf.R_390_GOT64), + "R_390_GOTENT": reflect.ValueOf(elf.R_390_GOTENT), + "R_390_GOTOFF": reflect.ValueOf(elf.R_390_GOTOFF), + "R_390_GOTOFF16": reflect.ValueOf(elf.R_390_GOTOFF16), + "R_390_GOTOFF64": reflect.ValueOf(elf.R_390_GOTOFF64), + "R_390_GOTPC": reflect.ValueOf(elf.R_390_GOTPC), + "R_390_GOTPCDBL": reflect.ValueOf(elf.R_390_GOTPCDBL), + "R_390_GOTPLT12": reflect.ValueOf(elf.R_390_GOTPLT12), + "R_390_GOTPLT16": reflect.ValueOf(elf.R_390_GOTPLT16), + "R_390_GOTPLT20": reflect.ValueOf(elf.R_390_GOTPLT20), + "R_390_GOTPLT32": reflect.ValueOf(elf.R_390_GOTPLT32), + "R_390_GOTPLT64": reflect.ValueOf(elf.R_390_GOTPLT64), + "R_390_GOTPLTENT": reflect.ValueOf(elf.R_390_GOTPLTENT), + "R_390_GOTPLTOFF16": reflect.ValueOf(elf.R_390_GOTPLTOFF16), + "R_390_GOTPLTOFF32": reflect.ValueOf(elf.R_390_GOTPLTOFF32), + "R_390_GOTPLTOFF64": reflect.ValueOf(elf.R_390_GOTPLTOFF64), + "R_390_JMP_SLOT": reflect.ValueOf(elf.R_390_JMP_SLOT), + "R_390_NONE": reflect.ValueOf(elf.R_390_NONE), + "R_390_PC16": reflect.ValueOf(elf.R_390_PC16), + "R_390_PC16DBL": reflect.ValueOf(elf.R_390_PC16DBL), + "R_390_PC32": reflect.ValueOf(elf.R_390_PC32), + "R_390_PC32DBL": reflect.ValueOf(elf.R_390_PC32DBL), + "R_390_PC64": reflect.ValueOf(elf.R_390_PC64), + "R_390_PLT16DBL": reflect.ValueOf(elf.R_390_PLT16DBL), + "R_390_PLT32": reflect.ValueOf(elf.R_390_PLT32), + "R_390_PLT32DBL": reflect.ValueOf(elf.R_390_PLT32DBL), + "R_390_PLT64": reflect.ValueOf(elf.R_390_PLT64), + "R_390_RELATIVE": reflect.ValueOf(elf.R_390_RELATIVE), + "R_390_TLS_DTPMOD": reflect.ValueOf(elf.R_390_TLS_DTPMOD), + "R_390_TLS_DTPOFF": reflect.ValueOf(elf.R_390_TLS_DTPOFF), + "R_390_TLS_GD32": reflect.ValueOf(elf.R_390_TLS_GD32), + "R_390_TLS_GD64": reflect.ValueOf(elf.R_390_TLS_GD64), + "R_390_TLS_GDCALL": reflect.ValueOf(elf.R_390_TLS_GDCALL), + "R_390_TLS_GOTIE12": reflect.ValueOf(elf.R_390_TLS_GOTIE12), + "R_390_TLS_GOTIE20": reflect.ValueOf(elf.R_390_TLS_GOTIE20), + "R_390_TLS_GOTIE32": reflect.ValueOf(elf.R_390_TLS_GOTIE32), + "R_390_TLS_GOTIE64": reflect.ValueOf(elf.R_390_TLS_GOTIE64), + "R_390_TLS_IE32": reflect.ValueOf(elf.R_390_TLS_IE32), + "R_390_TLS_IE64": reflect.ValueOf(elf.R_390_TLS_IE64), + "R_390_TLS_IEENT": reflect.ValueOf(elf.R_390_TLS_IEENT), + "R_390_TLS_LDCALL": reflect.ValueOf(elf.R_390_TLS_LDCALL), + "R_390_TLS_LDM32": reflect.ValueOf(elf.R_390_TLS_LDM32), + "R_390_TLS_LDM64": reflect.ValueOf(elf.R_390_TLS_LDM64), + "R_390_TLS_LDO32": reflect.ValueOf(elf.R_390_TLS_LDO32), + "R_390_TLS_LDO64": reflect.ValueOf(elf.R_390_TLS_LDO64), + "R_390_TLS_LE32": reflect.ValueOf(elf.R_390_TLS_LE32), + "R_390_TLS_LE64": reflect.ValueOf(elf.R_390_TLS_LE64), + "R_390_TLS_LOAD": reflect.ValueOf(elf.R_390_TLS_LOAD), + "R_390_TLS_TPOFF": reflect.ValueOf(elf.R_390_TLS_TPOFF), + "R_AARCH64_ABS16": reflect.ValueOf(elf.R_AARCH64_ABS16), + "R_AARCH64_ABS32": reflect.ValueOf(elf.R_AARCH64_ABS32), + "R_AARCH64_ABS64": reflect.ValueOf(elf.R_AARCH64_ABS64), + "R_AARCH64_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_ADD_ABS_LO12_NC), + "R_AARCH64_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_ADR_GOT_PAGE), + "R_AARCH64_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_LO21), + "R_AARCH64_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21), + "R_AARCH64_ADR_PREL_PG_HI21_NC": reflect.ValueOf(elf.R_AARCH64_ADR_PREL_PG_HI21_NC), + "R_AARCH64_CALL26": reflect.ValueOf(elf.R_AARCH64_CALL26), + "R_AARCH64_CONDBR19": reflect.ValueOf(elf.R_AARCH64_CONDBR19), + "R_AARCH64_COPY": reflect.ValueOf(elf.R_AARCH64_COPY), + "R_AARCH64_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_GLOB_DAT), + "R_AARCH64_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_GOT_LD_PREL19), + "R_AARCH64_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_IRELATIVE), + "R_AARCH64_JUMP26": reflect.ValueOf(elf.R_AARCH64_JUMP26), + "R_AARCH64_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_JUMP_SLOT), + "R_AARCH64_LD64_GOTOFF_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTOFF_LO15), + "R_AARCH64_LD64_GOTPAGE_LO15": reflect.ValueOf(elf.R_AARCH64_LD64_GOTPAGE_LO15), + "R_AARCH64_LD64_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LD64_GOT_LO12_NC), + "R_AARCH64_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST128_ABS_LO12_NC), + "R_AARCH64_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST16_ABS_LO12_NC), + "R_AARCH64_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST32_ABS_LO12_NC), + "R_AARCH64_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST64_ABS_LO12_NC), + "R_AARCH64_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_LDST8_ABS_LO12_NC), + "R_AARCH64_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_LD_PREL_LO19), + "R_AARCH64_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G0), + "R_AARCH64_MOVW_SABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G1), + "R_AARCH64_MOVW_SABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_SABS_G2), + "R_AARCH64_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0), + "R_AARCH64_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G0_NC), + "R_AARCH64_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1), + "R_AARCH64_MOVW_UABS_G1_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G1_NC), + "R_AARCH64_MOVW_UABS_G2": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2), + "R_AARCH64_MOVW_UABS_G2_NC": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G2_NC), + "R_AARCH64_MOVW_UABS_G3": reflect.ValueOf(elf.R_AARCH64_MOVW_UABS_G3), + "R_AARCH64_NONE": reflect.ValueOf(elf.R_AARCH64_NONE), + "R_AARCH64_NULL": reflect.ValueOf(elf.R_AARCH64_NULL), + "R_AARCH64_P32_ABS16": reflect.ValueOf(elf.R_AARCH64_P32_ABS16), + "R_AARCH64_P32_ABS32": reflect.ValueOf(elf.R_AARCH64_P32_ABS32), + "R_AARCH64_P32_ADD_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_ADD_ABS_LO12_NC), + "R_AARCH64_P32_ADR_GOT_PAGE": reflect.ValueOf(elf.R_AARCH64_P32_ADR_GOT_PAGE), + "R_AARCH64_P32_ADR_PREL_LO21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_LO21), + "R_AARCH64_P32_ADR_PREL_PG_HI21": reflect.ValueOf(elf.R_AARCH64_P32_ADR_PREL_PG_HI21), + "R_AARCH64_P32_CALL26": reflect.ValueOf(elf.R_AARCH64_P32_CALL26), + "R_AARCH64_P32_CONDBR19": reflect.ValueOf(elf.R_AARCH64_P32_CONDBR19), + "R_AARCH64_P32_COPY": reflect.ValueOf(elf.R_AARCH64_P32_COPY), + "R_AARCH64_P32_GLOB_DAT": reflect.ValueOf(elf.R_AARCH64_P32_GLOB_DAT), + "R_AARCH64_P32_GOT_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_GOT_LD_PREL19), + "R_AARCH64_P32_IRELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_IRELATIVE), + "R_AARCH64_P32_JUMP26": reflect.ValueOf(elf.R_AARCH64_P32_JUMP26), + "R_AARCH64_P32_JUMP_SLOT": reflect.ValueOf(elf.R_AARCH64_P32_JUMP_SLOT), + "R_AARCH64_P32_LD32_GOT_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LD32_GOT_LO12_NC), + "R_AARCH64_P32_LDST128_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST128_ABS_LO12_NC), + "R_AARCH64_P32_LDST16_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST16_ABS_LO12_NC), + "R_AARCH64_P32_LDST32_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST32_ABS_LO12_NC), + "R_AARCH64_P32_LDST64_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST64_ABS_LO12_NC), + "R_AARCH64_P32_LDST8_ABS_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_LDST8_ABS_LO12_NC), + "R_AARCH64_P32_LD_PREL_LO19": reflect.ValueOf(elf.R_AARCH64_P32_LD_PREL_LO19), + "R_AARCH64_P32_MOVW_SABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_SABS_G0), + "R_AARCH64_P32_MOVW_UABS_G0": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0), + "R_AARCH64_P32_MOVW_UABS_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G0_NC), + "R_AARCH64_P32_MOVW_UABS_G1": reflect.ValueOf(elf.R_AARCH64_P32_MOVW_UABS_G1), + "R_AARCH64_P32_PREL16": reflect.ValueOf(elf.R_AARCH64_P32_PREL16), + "R_AARCH64_P32_PREL32": reflect.ValueOf(elf.R_AARCH64_P32_PREL32), + "R_AARCH64_P32_RELATIVE": reflect.ValueOf(elf.R_AARCH64_P32_RELATIVE), + "R_AARCH64_P32_TLSDESC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC), + "R_AARCH64_P32_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADD_LO12_NC), + "R_AARCH64_P32_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PAGE21), + "R_AARCH64_P32_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_ADR_PREL21), + "R_AARCH64_P32_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_CALL), + "R_AARCH64_P32_TLSDESC_LD32_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD32_LO12_NC), + "R_AARCH64_P32_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSDESC_LD_PREL19), + "R_AARCH64_P32_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADD_LO12_NC), + "R_AARCH64_P32_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSGD_ADR_PAGE21), + "R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_ADR_GOTTPREL_PAGE21), + "R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD32_GOTTPREL_LO12_NC), + "R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_P32_TLSIE_LD_GOTTPREL_PREL19), + "R_AARCH64_P32_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_HI12), + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12), + "R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_ADD_TPREL_LO12_NC), + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0), + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G0_NC), + "R_AARCH64_P32_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_P32_TLSLE_MOVW_TPREL_G1), + "R_AARCH64_P32_TLS_DTPMOD": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPMOD), + "R_AARCH64_P32_TLS_DTPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_DTPREL), + "R_AARCH64_P32_TLS_TPREL": reflect.ValueOf(elf.R_AARCH64_P32_TLS_TPREL), + "R_AARCH64_P32_TSTBR14": reflect.ValueOf(elf.R_AARCH64_P32_TSTBR14), + "R_AARCH64_PREL16": reflect.ValueOf(elf.R_AARCH64_PREL16), + "R_AARCH64_PREL32": reflect.ValueOf(elf.R_AARCH64_PREL32), + "R_AARCH64_PREL64": reflect.ValueOf(elf.R_AARCH64_PREL64), + "R_AARCH64_RELATIVE": reflect.ValueOf(elf.R_AARCH64_RELATIVE), + "R_AARCH64_TLSDESC": reflect.ValueOf(elf.R_AARCH64_TLSDESC), + "R_AARCH64_TLSDESC_ADD": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD), + "R_AARCH64_TLSDESC_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADD_LO12_NC), + "R_AARCH64_TLSDESC_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PAGE21), + "R_AARCH64_TLSDESC_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSDESC_ADR_PREL21), + "R_AARCH64_TLSDESC_CALL": reflect.ValueOf(elf.R_AARCH64_TLSDESC_CALL), + "R_AARCH64_TLSDESC_LD64_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD64_LO12_NC), + "R_AARCH64_TLSDESC_LDR": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LDR), + "R_AARCH64_TLSDESC_LD_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSDESC_LD_PREL19), + "R_AARCH64_TLSDESC_OFF_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G0_NC), + "R_AARCH64_TLSDESC_OFF_G1": reflect.ValueOf(elf.R_AARCH64_TLSDESC_OFF_G1), + "R_AARCH64_TLSGD_ADD_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADD_LO12_NC), + "R_AARCH64_TLSGD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PAGE21), + "R_AARCH64_TLSGD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSGD_ADR_PREL21), + "R_AARCH64_TLSGD_MOVW_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G0_NC), + "R_AARCH64_TLSGD_MOVW_G1": reflect.ValueOf(elf.R_AARCH64_TLSGD_MOVW_G1), + "R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21), + "R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC), + "R_AARCH64_TLSIE_LD_GOTTPREL_PREL19": reflect.ValueOf(elf.R_AARCH64_TLSIE_LD_GOTTPREL_PREL19), + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC), + "R_AARCH64_TLSIE_MOVW_GOTTPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSIE_MOVW_GOTTPREL_G1), + "R_AARCH64_TLSLD_ADR_PAGE21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PAGE21), + "R_AARCH64_TLSLD_ADR_PREL21": reflect.ValueOf(elf.R_AARCH64_TLSLD_ADR_PREL21), + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12), + "R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC), + "R_AARCH64_TLSLE_ADD_TPREL_HI12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_HI12), + "R_AARCH64_TLSLE_ADD_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12), + "R_AARCH64_TLSLE_ADD_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_ADD_TPREL_LO12_NC), + "R_AARCH64_TLSLE_LDST128_TPREL_LO12": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12), + "R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC), + "R_AARCH64_TLSLE_MOVW_TPREL_G0": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0), + "R_AARCH64_TLSLE_MOVW_TPREL_G0_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G0_NC), + "R_AARCH64_TLSLE_MOVW_TPREL_G1": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1), + "R_AARCH64_TLSLE_MOVW_TPREL_G1_NC": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G1_NC), + "R_AARCH64_TLSLE_MOVW_TPREL_G2": reflect.ValueOf(elf.R_AARCH64_TLSLE_MOVW_TPREL_G2), + "R_AARCH64_TLS_DTPMOD64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPMOD64), + "R_AARCH64_TLS_DTPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_DTPREL64), + "R_AARCH64_TLS_TPREL64": reflect.ValueOf(elf.R_AARCH64_TLS_TPREL64), + "R_AARCH64_TSTBR14": reflect.ValueOf(elf.R_AARCH64_TSTBR14), + "R_ALPHA_BRADDR": reflect.ValueOf(elf.R_ALPHA_BRADDR), + "R_ALPHA_COPY": reflect.ValueOf(elf.R_ALPHA_COPY), + "R_ALPHA_GLOB_DAT": reflect.ValueOf(elf.R_ALPHA_GLOB_DAT), + "R_ALPHA_GPDISP": reflect.ValueOf(elf.R_ALPHA_GPDISP), + "R_ALPHA_GPREL32": reflect.ValueOf(elf.R_ALPHA_GPREL32), + "R_ALPHA_GPRELHIGH": reflect.ValueOf(elf.R_ALPHA_GPRELHIGH), + "R_ALPHA_GPRELLOW": reflect.ValueOf(elf.R_ALPHA_GPRELLOW), + "R_ALPHA_GPVALUE": reflect.ValueOf(elf.R_ALPHA_GPVALUE), + "R_ALPHA_HINT": reflect.ValueOf(elf.R_ALPHA_HINT), + "R_ALPHA_IMMED_BR_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_BR_HI32), + "R_ALPHA_IMMED_GP_16": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_16), + "R_ALPHA_IMMED_GP_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_GP_HI32), + "R_ALPHA_IMMED_LO32": reflect.ValueOf(elf.R_ALPHA_IMMED_LO32), + "R_ALPHA_IMMED_SCN_HI32": reflect.ValueOf(elf.R_ALPHA_IMMED_SCN_HI32), + "R_ALPHA_JMP_SLOT": reflect.ValueOf(elf.R_ALPHA_JMP_SLOT), + "R_ALPHA_LITERAL": reflect.ValueOf(elf.R_ALPHA_LITERAL), + "R_ALPHA_LITUSE": reflect.ValueOf(elf.R_ALPHA_LITUSE), + "R_ALPHA_NONE": reflect.ValueOf(elf.R_ALPHA_NONE), + "R_ALPHA_OP_PRSHIFT": reflect.ValueOf(elf.R_ALPHA_OP_PRSHIFT), + "R_ALPHA_OP_PSUB": reflect.ValueOf(elf.R_ALPHA_OP_PSUB), + "R_ALPHA_OP_PUSH": reflect.ValueOf(elf.R_ALPHA_OP_PUSH), + "R_ALPHA_OP_STORE": reflect.ValueOf(elf.R_ALPHA_OP_STORE), + "R_ALPHA_REFLONG": reflect.ValueOf(elf.R_ALPHA_REFLONG), + "R_ALPHA_REFQUAD": reflect.ValueOf(elf.R_ALPHA_REFQUAD), + "R_ALPHA_RELATIVE": reflect.ValueOf(elf.R_ALPHA_RELATIVE), + "R_ALPHA_SREL16": reflect.ValueOf(elf.R_ALPHA_SREL16), + "R_ALPHA_SREL32": reflect.ValueOf(elf.R_ALPHA_SREL32), + "R_ALPHA_SREL64": reflect.ValueOf(elf.R_ALPHA_SREL64), + "R_ARM_ABS12": reflect.ValueOf(elf.R_ARM_ABS12), + "R_ARM_ABS16": reflect.ValueOf(elf.R_ARM_ABS16), + "R_ARM_ABS32": reflect.ValueOf(elf.R_ARM_ABS32), + "R_ARM_ABS32_NOI": reflect.ValueOf(elf.R_ARM_ABS32_NOI), + "R_ARM_ABS8": reflect.ValueOf(elf.R_ARM_ABS8), + "R_ARM_ALU_PCREL_15_8": reflect.ValueOf(elf.R_ARM_ALU_PCREL_15_8), + "R_ARM_ALU_PCREL_23_15": reflect.ValueOf(elf.R_ARM_ALU_PCREL_23_15), + "R_ARM_ALU_PCREL_7_0": reflect.ValueOf(elf.R_ARM_ALU_PCREL_7_0), + "R_ARM_ALU_PC_G0": reflect.ValueOf(elf.R_ARM_ALU_PC_G0), + "R_ARM_ALU_PC_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G0_NC), + "R_ARM_ALU_PC_G1": reflect.ValueOf(elf.R_ARM_ALU_PC_G1), + "R_ARM_ALU_PC_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_PC_G1_NC), + "R_ARM_ALU_PC_G2": reflect.ValueOf(elf.R_ARM_ALU_PC_G2), + "R_ARM_ALU_SBREL_19_12_NC": reflect.ValueOf(elf.R_ARM_ALU_SBREL_19_12_NC), + "R_ARM_ALU_SBREL_27_20_CK": reflect.ValueOf(elf.R_ARM_ALU_SBREL_27_20_CK), + "R_ARM_ALU_SB_G0": reflect.ValueOf(elf.R_ARM_ALU_SB_G0), + "R_ARM_ALU_SB_G0_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G0_NC), + "R_ARM_ALU_SB_G1": reflect.ValueOf(elf.R_ARM_ALU_SB_G1), + "R_ARM_ALU_SB_G1_NC": reflect.ValueOf(elf.R_ARM_ALU_SB_G1_NC), + "R_ARM_ALU_SB_G2": reflect.ValueOf(elf.R_ARM_ALU_SB_G2), + "R_ARM_AMP_VCALL9": reflect.ValueOf(elf.R_ARM_AMP_VCALL9), + "R_ARM_BASE_ABS": reflect.ValueOf(elf.R_ARM_BASE_ABS), + "R_ARM_CALL": reflect.ValueOf(elf.R_ARM_CALL), + "R_ARM_COPY": reflect.ValueOf(elf.R_ARM_COPY), + "R_ARM_GLOB_DAT": reflect.ValueOf(elf.R_ARM_GLOB_DAT), + "R_ARM_GNU_VTENTRY": reflect.ValueOf(elf.R_ARM_GNU_VTENTRY), + "R_ARM_GNU_VTINHERIT": reflect.ValueOf(elf.R_ARM_GNU_VTINHERIT), + "R_ARM_GOT32": reflect.ValueOf(elf.R_ARM_GOT32), + "R_ARM_GOTOFF": reflect.ValueOf(elf.R_ARM_GOTOFF), + "R_ARM_GOTOFF12": reflect.ValueOf(elf.R_ARM_GOTOFF12), + "R_ARM_GOTPC": reflect.ValueOf(elf.R_ARM_GOTPC), + "R_ARM_GOTRELAX": reflect.ValueOf(elf.R_ARM_GOTRELAX), + "R_ARM_GOT_ABS": reflect.ValueOf(elf.R_ARM_GOT_ABS), + "R_ARM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_GOT_BREL12), + "R_ARM_GOT_PREL": reflect.ValueOf(elf.R_ARM_GOT_PREL), + "R_ARM_IRELATIVE": reflect.ValueOf(elf.R_ARM_IRELATIVE), + "R_ARM_JUMP24": reflect.ValueOf(elf.R_ARM_JUMP24), + "R_ARM_JUMP_SLOT": reflect.ValueOf(elf.R_ARM_JUMP_SLOT), + "R_ARM_LDC_PC_G0": reflect.ValueOf(elf.R_ARM_LDC_PC_G0), + "R_ARM_LDC_PC_G1": reflect.ValueOf(elf.R_ARM_LDC_PC_G1), + "R_ARM_LDC_PC_G2": reflect.ValueOf(elf.R_ARM_LDC_PC_G2), + "R_ARM_LDC_SB_G0": reflect.ValueOf(elf.R_ARM_LDC_SB_G0), + "R_ARM_LDC_SB_G1": reflect.ValueOf(elf.R_ARM_LDC_SB_G1), + "R_ARM_LDC_SB_G2": reflect.ValueOf(elf.R_ARM_LDC_SB_G2), + "R_ARM_LDRS_PC_G0": reflect.ValueOf(elf.R_ARM_LDRS_PC_G0), + "R_ARM_LDRS_PC_G1": reflect.ValueOf(elf.R_ARM_LDRS_PC_G1), + "R_ARM_LDRS_PC_G2": reflect.ValueOf(elf.R_ARM_LDRS_PC_G2), + "R_ARM_LDRS_SB_G0": reflect.ValueOf(elf.R_ARM_LDRS_SB_G0), + "R_ARM_LDRS_SB_G1": reflect.ValueOf(elf.R_ARM_LDRS_SB_G1), + "R_ARM_LDRS_SB_G2": reflect.ValueOf(elf.R_ARM_LDRS_SB_G2), + "R_ARM_LDR_PC_G1": reflect.ValueOf(elf.R_ARM_LDR_PC_G1), + "R_ARM_LDR_PC_G2": reflect.ValueOf(elf.R_ARM_LDR_PC_G2), + "R_ARM_LDR_SBREL_11_10_NC": reflect.ValueOf(elf.R_ARM_LDR_SBREL_11_10_NC), + "R_ARM_LDR_SB_G0": reflect.ValueOf(elf.R_ARM_LDR_SB_G0), + "R_ARM_LDR_SB_G1": reflect.ValueOf(elf.R_ARM_LDR_SB_G1), + "R_ARM_LDR_SB_G2": reflect.ValueOf(elf.R_ARM_LDR_SB_G2), + "R_ARM_ME_TOO": reflect.ValueOf(elf.R_ARM_ME_TOO), + "R_ARM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_MOVT_ABS), + "R_ARM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_MOVT_BREL), + "R_ARM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_MOVT_PREL), + "R_ARM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_MOVW_ABS_NC), + "R_ARM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_MOVW_BREL), + "R_ARM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_BREL_NC), + "R_ARM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_MOVW_PREL_NC), + "R_ARM_NONE": reflect.ValueOf(elf.R_ARM_NONE), + "R_ARM_PC13": reflect.ValueOf(elf.R_ARM_PC13), + "R_ARM_PC24": reflect.ValueOf(elf.R_ARM_PC24), + "R_ARM_PLT32": reflect.ValueOf(elf.R_ARM_PLT32), + "R_ARM_PLT32_ABS": reflect.ValueOf(elf.R_ARM_PLT32_ABS), + "R_ARM_PREL31": reflect.ValueOf(elf.R_ARM_PREL31), + "R_ARM_PRIVATE_0": reflect.ValueOf(elf.R_ARM_PRIVATE_0), + "R_ARM_PRIVATE_1": reflect.ValueOf(elf.R_ARM_PRIVATE_1), + "R_ARM_PRIVATE_10": reflect.ValueOf(elf.R_ARM_PRIVATE_10), + "R_ARM_PRIVATE_11": reflect.ValueOf(elf.R_ARM_PRIVATE_11), + "R_ARM_PRIVATE_12": reflect.ValueOf(elf.R_ARM_PRIVATE_12), + "R_ARM_PRIVATE_13": reflect.ValueOf(elf.R_ARM_PRIVATE_13), + "R_ARM_PRIVATE_14": reflect.ValueOf(elf.R_ARM_PRIVATE_14), + "R_ARM_PRIVATE_15": reflect.ValueOf(elf.R_ARM_PRIVATE_15), + "R_ARM_PRIVATE_2": reflect.ValueOf(elf.R_ARM_PRIVATE_2), + "R_ARM_PRIVATE_3": reflect.ValueOf(elf.R_ARM_PRIVATE_3), + "R_ARM_PRIVATE_4": reflect.ValueOf(elf.R_ARM_PRIVATE_4), + "R_ARM_PRIVATE_5": reflect.ValueOf(elf.R_ARM_PRIVATE_5), + "R_ARM_PRIVATE_6": reflect.ValueOf(elf.R_ARM_PRIVATE_6), + "R_ARM_PRIVATE_7": reflect.ValueOf(elf.R_ARM_PRIVATE_7), + "R_ARM_PRIVATE_8": reflect.ValueOf(elf.R_ARM_PRIVATE_8), + "R_ARM_PRIVATE_9": reflect.ValueOf(elf.R_ARM_PRIVATE_9), + "R_ARM_RABS32": reflect.ValueOf(elf.R_ARM_RABS32), + "R_ARM_RBASE": reflect.ValueOf(elf.R_ARM_RBASE), + "R_ARM_REL32": reflect.ValueOf(elf.R_ARM_REL32), + "R_ARM_REL32_NOI": reflect.ValueOf(elf.R_ARM_REL32_NOI), + "R_ARM_RELATIVE": reflect.ValueOf(elf.R_ARM_RELATIVE), + "R_ARM_RPC24": reflect.ValueOf(elf.R_ARM_RPC24), + "R_ARM_RREL32": reflect.ValueOf(elf.R_ARM_RREL32), + "R_ARM_RSBREL32": reflect.ValueOf(elf.R_ARM_RSBREL32), + "R_ARM_RXPC25": reflect.ValueOf(elf.R_ARM_RXPC25), + "R_ARM_SBREL31": reflect.ValueOf(elf.R_ARM_SBREL31), + "R_ARM_SBREL32": reflect.ValueOf(elf.R_ARM_SBREL32), + "R_ARM_SWI24": reflect.ValueOf(elf.R_ARM_SWI24), + "R_ARM_TARGET1": reflect.ValueOf(elf.R_ARM_TARGET1), + "R_ARM_TARGET2": reflect.ValueOf(elf.R_ARM_TARGET2), + "R_ARM_THM_ABS5": reflect.ValueOf(elf.R_ARM_THM_ABS5), + "R_ARM_THM_ALU_ABS_G0_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G0_NC), + "R_ARM_THM_ALU_ABS_G1_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G1_NC), + "R_ARM_THM_ALU_ABS_G2_NC": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G2_NC), + "R_ARM_THM_ALU_ABS_G3": reflect.ValueOf(elf.R_ARM_THM_ALU_ABS_G3), + "R_ARM_THM_ALU_PREL_11_0": reflect.ValueOf(elf.R_ARM_THM_ALU_PREL_11_0), + "R_ARM_THM_GOT_BREL12": reflect.ValueOf(elf.R_ARM_THM_GOT_BREL12), + "R_ARM_THM_JUMP11": reflect.ValueOf(elf.R_ARM_THM_JUMP11), + "R_ARM_THM_JUMP19": reflect.ValueOf(elf.R_ARM_THM_JUMP19), + "R_ARM_THM_JUMP24": reflect.ValueOf(elf.R_ARM_THM_JUMP24), + "R_ARM_THM_JUMP6": reflect.ValueOf(elf.R_ARM_THM_JUMP6), + "R_ARM_THM_JUMP8": reflect.ValueOf(elf.R_ARM_THM_JUMP8), + "R_ARM_THM_MOVT_ABS": reflect.ValueOf(elf.R_ARM_THM_MOVT_ABS), + "R_ARM_THM_MOVT_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_BREL), + "R_ARM_THM_MOVT_PREL": reflect.ValueOf(elf.R_ARM_THM_MOVT_PREL), + "R_ARM_THM_MOVW_ABS_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_ABS_NC), + "R_ARM_THM_MOVW_BREL": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL), + "R_ARM_THM_MOVW_BREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_BREL_NC), + "R_ARM_THM_MOVW_PREL_NC": reflect.ValueOf(elf.R_ARM_THM_MOVW_PREL_NC), + "R_ARM_THM_PC12": reflect.ValueOf(elf.R_ARM_THM_PC12), + "R_ARM_THM_PC22": reflect.ValueOf(elf.R_ARM_THM_PC22), + "R_ARM_THM_PC8": reflect.ValueOf(elf.R_ARM_THM_PC8), + "R_ARM_THM_RPC22": reflect.ValueOf(elf.R_ARM_THM_RPC22), + "R_ARM_THM_SWI8": reflect.ValueOf(elf.R_ARM_THM_SWI8), + "R_ARM_THM_TLS_CALL": reflect.ValueOf(elf.R_ARM_THM_TLS_CALL), + "R_ARM_THM_TLS_DESCSEQ16": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ16), + "R_ARM_THM_TLS_DESCSEQ32": reflect.ValueOf(elf.R_ARM_THM_TLS_DESCSEQ32), + "R_ARM_THM_XPC22": reflect.ValueOf(elf.R_ARM_THM_XPC22), + "R_ARM_TLS_CALL": reflect.ValueOf(elf.R_ARM_TLS_CALL), + "R_ARM_TLS_DESCSEQ": reflect.ValueOf(elf.R_ARM_TLS_DESCSEQ), + "R_ARM_TLS_DTPMOD32": reflect.ValueOf(elf.R_ARM_TLS_DTPMOD32), + "R_ARM_TLS_DTPOFF32": reflect.ValueOf(elf.R_ARM_TLS_DTPOFF32), + "R_ARM_TLS_GD32": reflect.ValueOf(elf.R_ARM_TLS_GD32), + "R_ARM_TLS_GOTDESC": reflect.ValueOf(elf.R_ARM_TLS_GOTDESC), + "R_ARM_TLS_IE12GP": reflect.ValueOf(elf.R_ARM_TLS_IE12GP), + "R_ARM_TLS_IE32": reflect.ValueOf(elf.R_ARM_TLS_IE32), + "R_ARM_TLS_LDM32": reflect.ValueOf(elf.R_ARM_TLS_LDM32), + "R_ARM_TLS_LDO12": reflect.ValueOf(elf.R_ARM_TLS_LDO12), + "R_ARM_TLS_LDO32": reflect.ValueOf(elf.R_ARM_TLS_LDO32), + "R_ARM_TLS_LE12": reflect.ValueOf(elf.R_ARM_TLS_LE12), + "R_ARM_TLS_LE32": reflect.ValueOf(elf.R_ARM_TLS_LE32), + "R_ARM_TLS_TPOFF32": reflect.ValueOf(elf.R_ARM_TLS_TPOFF32), + "R_ARM_V4BX": reflect.ValueOf(elf.R_ARM_V4BX), + "R_ARM_XPC25": reflect.ValueOf(elf.R_ARM_XPC25), + "R_INFO": reflect.ValueOf(elf.R_INFO), + "R_INFO32": reflect.ValueOf(elf.R_INFO32), + "R_LARCH_32": reflect.ValueOf(elf.R_LARCH_32), + "R_LARCH_64": reflect.ValueOf(elf.R_LARCH_64), + "R_LARCH_ADD16": reflect.ValueOf(elf.R_LARCH_ADD16), + "R_LARCH_ADD24": reflect.ValueOf(elf.R_LARCH_ADD24), + "R_LARCH_ADD32": reflect.ValueOf(elf.R_LARCH_ADD32), + "R_LARCH_ADD64": reflect.ValueOf(elf.R_LARCH_ADD64), + "R_LARCH_ADD8": reflect.ValueOf(elf.R_LARCH_ADD8), + "R_LARCH_COPY": reflect.ValueOf(elf.R_LARCH_COPY), + "R_LARCH_IRELATIVE": reflect.ValueOf(elf.R_LARCH_IRELATIVE), + "R_LARCH_JUMP_SLOT": reflect.ValueOf(elf.R_LARCH_JUMP_SLOT), + "R_LARCH_MARK_LA": reflect.ValueOf(elf.R_LARCH_MARK_LA), + "R_LARCH_MARK_PCREL": reflect.ValueOf(elf.R_LARCH_MARK_PCREL), + "R_LARCH_NONE": reflect.ValueOf(elf.R_LARCH_NONE), + "R_LARCH_RELATIVE": reflect.ValueOf(elf.R_LARCH_RELATIVE), + "R_LARCH_SOP_ADD": reflect.ValueOf(elf.R_LARCH_SOP_ADD), + "R_LARCH_SOP_AND": reflect.ValueOf(elf.R_LARCH_SOP_AND), + "R_LARCH_SOP_ASSERT": reflect.ValueOf(elf.R_LARCH_SOP_ASSERT), + "R_LARCH_SOP_IF_ELSE": reflect.ValueOf(elf.R_LARCH_SOP_IF_ELSE), + "R_LARCH_SOP_NOT": reflect.ValueOf(elf.R_LARCH_SOP_NOT), + "R_LARCH_SOP_POP_32_S_0_10_10_16_S2": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_0_10_10_16_S2), + "R_LARCH_SOP_POP_32_S_0_5_10_16_S2": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_0_5_10_16_S2), + "R_LARCH_SOP_POP_32_S_10_12": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_12), + "R_LARCH_SOP_POP_32_S_10_16": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_16), + "R_LARCH_SOP_POP_32_S_10_16_S2": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_16_S2), + "R_LARCH_SOP_POP_32_S_10_5": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_10_5), + "R_LARCH_SOP_POP_32_S_5_20": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_S_5_20), + "R_LARCH_SOP_POP_32_U": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_U), + "R_LARCH_SOP_POP_32_U_10_12": reflect.ValueOf(elf.R_LARCH_SOP_POP_32_U_10_12), + "R_LARCH_SOP_PUSH_ABSOLUTE": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_ABSOLUTE), + "R_LARCH_SOP_PUSH_DUP": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_DUP), + "R_LARCH_SOP_PUSH_GPREL": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_GPREL), + "R_LARCH_SOP_PUSH_PCREL": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_PCREL), + "R_LARCH_SOP_PUSH_PLT_PCREL": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_PLT_PCREL), + "R_LARCH_SOP_PUSH_TLS_GD": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_GD), + "R_LARCH_SOP_PUSH_TLS_GOT": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_GOT), + "R_LARCH_SOP_PUSH_TLS_TPREL": reflect.ValueOf(elf.R_LARCH_SOP_PUSH_TLS_TPREL), + "R_LARCH_SOP_SL": reflect.ValueOf(elf.R_LARCH_SOP_SL), + "R_LARCH_SOP_SR": reflect.ValueOf(elf.R_LARCH_SOP_SR), + "R_LARCH_SOP_SUB": reflect.ValueOf(elf.R_LARCH_SOP_SUB), + "R_LARCH_SUB16": reflect.ValueOf(elf.R_LARCH_SUB16), + "R_LARCH_SUB24": reflect.ValueOf(elf.R_LARCH_SUB24), + "R_LARCH_SUB32": reflect.ValueOf(elf.R_LARCH_SUB32), + "R_LARCH_SUB64": reflect.ValueOf(elf.R_LARCH_SUB64), + "R_LARCH_SUB8": reflect.ValueOf(elf.R_LARCH_SUB8), + "R_LARCH_TLS_DTPMOD32": reflect.ValueOf(elf.R_LARCH_TLS_DTPMOD32), + "R_LARCH_TLS_DTPMOD64": reflect.ValueOf(elf.R_LARCH_TLS_DTPMOD64), + "R_LARCH_TLS_DTPREL32": reflect.ValueOf(elf.R_LARCH_TLS_DTPREL32), + "R_LARCH_TLS_DTPREL64": reflect.ValueOf(elf.R_LARCH_TLS_DTPREL64), + "R_LARCH_TLS_TPREL32": reflect.ValueOf(elf.R_LARCH_TLS_TPREL32), + "R_LARCH_TLS_TPREL64": reflect.ValueOf(elf.R_LARCH_TLS_TPREL64), + "R_MIPS_16": reflect.ValueOf(elf.R_MIPS_16), + "R_MIPS_26": reflect.ValueOf(elf.R_MIPS_26), + "R_MIPS_32": reflect.ValueOf(elf.R_MIPS_32), + "R_MIPS_64": reflect.ValueOf(elf.R_MIPS_64), + "R_MIPS_ADD_IMMEDIATE": reflect.ValueOf(elf.R_MIPS_ADD_IMMEDIATE), + "R_MIPS_CALL16": reflect.ValueOf(elf.R_MIPS_CALL16), + "R_MIPS_CALL_HI16": reflect.ValueOf(elf.R_MIPS_CALL_HI16), + "R_MIPS_CALL_LO16": reflect.ValueOf(elf.R_MIPS_CALL_LO16), + "R_MIPS_DELETE": reflect.ValueOf(elf.R_MIPS_DELETE), + "R_MIPS_GOT16": reflect.ValueOf(elf.R_MIPS_GOT16), + "R_MIPS_GOT_DISP": reflect.ValueOf(elf.R_MIPS_GOT_DISP), + "R_MIPS_GOT_HI16": reflect.ValueOf(elf.R_MIPS_GOT_HI16), + "R_MIPS_GOT_LO16": reflect.ValueOf(elf.R_MIPS_GOT_LO16), + "R_MIPS_GOT_OFST": reflect.ValueOf(elf.R_MIPS_GOT_OFST), + "R_MIPS_GOT_PAGE": reflect.ValueOf(elf.R_MIPS_GOT_PAGE), + "R_MIPS_GPREL16": reflect.ValueOf(elf.R_MIPS_GPREL16), + "R_MIPS_GPREL32": reflect.ValueOf(elf.R_MIPS_GPREL32), + "R_MIPS_HI16": reflect.ValueOf(elf.R_MIPS_HI16), + "R_MIPS_HIGHER": reflect.ValueOf(elf.R_MIPS_HIGHER), + "R_MIPS_HIGHEST": reflect.ValueOf(elf.R_MIPS_HIGHEST), + "R_MIPS_INSERT_A": reflect.ValueOf(elf.R_MIPS_INSERT_A), + "R_MIPS_INSERT_B": reflect.ValueOf(elf.R_MIPS_INSERT_B), + "R_MIPS_JALR": reflect.ValueOf(elf.R_MIPS_JALR), + "R_MIPS_LITERAL": reflect.ValueOf(elf.R_MIPS_LITERAL), + "R_MIPS_LO16": reflect.ValueOf(elf.R_MIPS_LO16), + "R_MIPS_NONE": reflect.ValueOf(elf.R_MIPS_NONE), + "R_MIPS_PC16": reflect.ValueOf(elf.R_MIPS_PC16), + "R_MIPS_PJUMP": reflect.ValueOf(elf.R_MIPS_PJUMP), + "R_MIPS_REL16": reflect.ValueOf(elf.R_MIPS_REL16), + "R_MIPS_REL32": reflect.ValueOf(elf.R_MIPS_REL32), + "R_MIPS_RELGOT": reflect.ValueOf(elf.R_MIPS_RELGOT), + "R_MIPS_SCN_DISP": reflect.ValueOf(elf.R_MIPS_SCN_DISP), + "R_MIPS_SHIFT5": reflect.ValueOf(elf.R_MIPS_SHIFT5), + "R_MIPS_SHIFT6": reflect.ValueOf(elf.R_MIPS_SHIFT6), + "R_MIPS_SUB": reflect.ValueOf(elf.R_MIPS_SUB), + "R_MIPS_TLS_DTPMOD32": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD32), + "R_MIPS_TLS_DTPMOD64": reflect.ValueOf(elf.R_MIPS_TLS_DTPMOD64), + "R_MIPS_TLS_DTPREL32": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL32), + "R_MIPS_TLS_DTPREL64": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL64), + "R_MIPS_TLS_DTPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_HI16), + "R_MIPS_TLS_DTPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_DTPREL_LO16), + "R_MIPS_TLS_GD": reflect.ValueOf(elf.R_MIPS_TLS_GD), + "R_MIPS_TLS_GOTTPREL": reflect.ValueOf(elf.R_MIPS_TLS_GOTTPREL), + "R_MIPS_TLS_LDM": reflect.ValueOf(elf.R_MIPS_TLS_LDM), + "R_MIPS_TLS_TPREL32": reflect.ValueOf(elf.R_MIPS_TLS_TPREL32), + "R_MIPS_TLS_TPREL64": reflect.ValueOf(elf.R_MIPS_TLS_TPREL64), + "R_MIPS_TLS_TPREL_HI16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_HI16), + "R_MIPS_TLS_TPREL_LO16": reflect.ValueOf(elf.R_MIPS_TLS_TPREL_LO16), + "R_PPC64_ADDR14": reflect.ValueOf(elf.R_PPC64_ADDR14), + "R_PPC64_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRNTAKEN), + "R_PPC64_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_ADDR14_BRTAKEN), + "R_PPC64_ADDR16": reflect.ValueOf(elf.R_PPC64_ADDR16), + "R_PPC64_ADDR16_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_DS), + "R_PPC64_ADDR16_HA": reflect.ValueOf(elf.R_PPC64_ADDR16_HA), + "R_PPC64_ADDR16_HI": reflect.ValueOf(elf.R_PPC64_ADDR16_HI), + "R_PPC64_ADDR16_HIGH": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGH), + "R_PPC64_ADDR16_HIGHA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHA), + "R_PPC64_ADDR16_HIGHER": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHER), + "R_PPC64_ADDR16_HIGHERA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHERA), + "R_PPC64_ADDR16_HIGHEST": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHEST), + "R_PPC64_ADDR16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_ADDR16_HIGHESTA), + "R_PPC64_ADDR16_LO": reflect.ValueOf(elf.R_PPC64_ADDR16_LO), + "R_PPC64_ADDR16_LO_DS": reflect.ValueOf(elf.R_PPC64_ADDR16_LO_DS), + "R_PPC64_ADDR24": reflect.ValueOf(elf.R_PPC64_ADDR24), + "R_PPC64_ADDR32": reflect.ValueOf(elf.R_PPC64_ADDR32), + "R_PPC64_ADDR64": reflect.ValueOf(elf.R_PPC64_ADDR64), + "R_PPC64_ADDR64_LOCAL": reflect.ValueOf(elf.R_PPC64_ADDR64_LOCAL), + "R_PPC64_DTPMOD64": reflect.ValueOf(elf.R_PPC64_DTPMOD64), + "R_PPC64_DTPREL16": reflect.ValueOf(elf.R_PPC64_DTPREL16), + "R_PPC64_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_DS), + "R_PPC64_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HA), + "R_PPC64_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_DTPREL16_HI), + "R_PPC64_DTPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGH), + "R_PPC64_DTPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHA), + "R_PPC64_DTPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHER), + "R_PPC64_DTPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHERA), + "R_PPC64_DTPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHEST), + "R_PPC64_DTPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_DTPREL16_HIGHESTA), + "R_PPC64_DTPREL16_LO": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO), + "R_PPC64_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_DTPREL16_LO_DS), + "R_PPC64_DTPREL64": reflect.ValueOf(elf.R_PPC64_DTPREL64), + "R_PPC64_ENTRY": reflect.ValueOf(elf.R_PPC64_ENTRY), + "R_PPC64_GOT16": reflect.ValueOf(elf.R_PPC64_GOT16), + "R_PPC64_GOT16_DS": reflect.ValueOf(elf.R_PPC64_GOT16_DS), + "R_PPC64_GOT16_HA": reflect.ValueOf(elf.R_PPC64_GOT16_HA), + "R_PPC64_GOT16_HI": reflect.ValueOf(elf.R_PPC64_GOT16_HI), + "R_PPC64_GOT16_LO": reflect.ValueOf(elf.R_PPC64_GOT16_LO), + "R_PPC64_GOT16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT16_LO_DS), + "R_PPC64_GOT_DTPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_DS), + "R_PPC64_GOT_DTPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HA), + "R_PPC64_GOT_DTPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_HI), + "R_PPC64_GOT_DTPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_DTPREL16_LO_DS), + "R_PPC64_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16), + "R_PPC64_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HA), + "R_PPC64_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_HI), + "R_PPC64_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSGD16_LO), + "R_PPC64_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16), + "R_PPC64_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HA), + "R_PPC64_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_HI), + "R_PPC64_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC64_GOT_TLSLD16_LO), + "R_PPC64_GOT_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_DS), + "R_PPC64_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HA), + "R_PPC64_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_HI), + "R_PPC64_GOT_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_GOT_TPREL16_LO_DS), + "R_PPC64_IRELATIVE": reflect.ValueOf(elf.R_PPC64_IRELATIVE), + "R_PPC64_JMP_IREL": reflect.ValueOf(elf.R_PPC64_JMP_IREL), + "R_PPC64_JMP_SLOT": reflect.ValueOf(elf.R_PPC64_JMP_SLOT), + "R_PPC64_NONE": reflect.ValueOf(elf.R_PPC64_NONE), + "R_PPC64_PLT16_LO_DS": reflect.ValueOf(elf.R_PPC64_PLT16_LO_DS), + "R_PPC64_PLTGOT16": reflect.ValueOf(elf.R_PPC64_PLTGOT16), + "R_PPC64_PLTGOT16_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT16_DS), + "R_PPC64_PLTGOT16_HA": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HA), + "R_PPC64_PLTGOT16_HI": reflect.ValueOf(elf.R_PPC64_PLTGOT16_HI), + "R_PPC64_PLTGOT16_LO": reflect.ValueOf(elf.R_PPC64_PLTGOT16_LO), + "R_PPC64_PLTGOT_LO_DS": reflect.ValueOf(elf.R_PPC64_PLTGOT_LO_DS), + "R_PPC64_REL14": reflect.ValueOf(elf.R_PPC64_REL14), + "R_PPC64_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRNTAKEN), + "R_PPC64_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC64_REL14_BRTAKEN), + "R_PPC64_REL16": reflect.ValueOf(elf.R_PPC64_REL16), + "R_PPC64_REL16DX_HA": reflect.ValueOf(elf.R_PPC64_REL16DX_HA), + "R_PPC64_REL16_HA": reflect.ValueOf(elf.R_PPC64_REL16_HA), + "R_PPC64_REL16_HI": reflect.ValueOf(elf.R_PPC64_REL16_HI), + "R_PPC64_REL16_LO": reflect.ValueOf(elf.R_PPC64_REL16_LO), + "R_PPC64_REL24": reflect.ValueOf(elf.R_PPC64_REL24), + "R_PPC64_REL24_NOTOC": reflect.ValueOf(elf.R_PPC64_REL24_NOTOC), + "R_PPC64_REL32": reflect.ValueOf(elf.R_PPC64_REL32), + "R_PPC64_REL64": reflect.ValueOf(elf.R_PPC64_REL64), + "R_PPC64_RELATIVE": reflect.ValueOf(elf.R_PPC64_RELATIVE), + "R_PPC64_SECTOFF_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_DS), + "R_PPC64_SECTOFF_LO_DS": reflect.ValueOf(elf.R_PPC64_SECTOFF_LO_DS), + "R_PPC64_TLS": reflect.ValueOf(elf.R_PPC64_TLS), + "R_PPC64_TLSGD": reflect.ValueOf(elf.R_PPC64_TLSGD), + "R_PPC64_TLSLD": reflect.ValueOf(elf.R_PPC64_TLSLD), + "R_PPC64_TOC": reflect.ValueOf(elf.R_PPC64_TOC), + "R_PPC64_TOC16": reflect.ValueOf(elf.R_PPC64_TOC16), + "R_PPC64_TOC16_DS": reflect.ValueOf(elf.R_PPC64_TOC16_DS), + "R_PPC64_TOC16_HA": reflect.ValueOf(elf.R_PPC64_TOC16_HA), + "R_PPC64_TOC16_HI": reflect.ValueOf(elf.R_PPC64_TOC16_HI), + "R_PPC64_TOC16_LO": reflect.ValueOf(elf.R_PPC64_TOC16_LO), + "R_PPC64_TOC16_LO_DS": reflect.ValueOf(elf.R_PPC64_TOC16_LO_DS), + "R_PPC64_TOCSAVE": reflect.ValueOf(elf.R_PPC64_TOCSAVE), + "R_PPC64_TPREL16": reflect.ValueOf(elf.R_PPC64_TPREL16), + "R_PPC64_TPREL16_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_DS), + "R_PPC64_TPREL16_HA": reflect.ValueOf(elf.R_PPC64_TPREL16_HA), + "R_PPC64_TPREL16_HI": reflect.ValueOf(elf.R_PPC64_TPREL16_HI), + "R_PPC64_TPREL16_HIGH": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGH), + "R_PPC64_TPREL16_HIGHA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHA), + "R_PPC64_TPREL16_HIGHER": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHER), + "R_PPC64_TPREL16_HIGHERA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHERA), + "R_PPC64_TPREL16_HIGHEST": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHEST), + "R_PPC64_TPREL16_HIGHESTA": reflect.ValueOf(elf.R_PPC64_TPREL16_HIGHESTA), + "R_PPC64_TPREL16_LO": reflect.ValueOf(elf.R_PPC64_TPREL16_LO), + "R_PPC64_TPREL16_LO_DS": reflect.ValueOf(elf.R_PPC64_TPREL16_LO_DS), + "R_PPC64_TPREL64": reflect.ValueOf(elf.R_PPC64_TPREL64), + "R_PPC_ADDR14": reflect.ValueOf(elf.R_PPC_ADDR14), + "R_PPC_ADDR14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRNTAKEN), + "R_PPC_ADDR14_BRTAKEN": reflect.ValueOf(elf.R_PPC_ADDR14_BRTAKEN), + "R_PPC_ADDR16": reflect.ValueOf(elf.R_PPC_ADDR16), + "R_PPC_ADDR16_HA": reflect.ValueOf(elf.R_PPC_ADDR16_HA), + "R_PPC_ADDR16_HI": reflect.ValueOf(elf.R_PPC_ADDR16_HI), + "R_PPC_ADDR16_LO": reflect.ValueOf(elf.R_PPC_ADDR16_LO), + "R_PPC_ADDR24": reflect.ValueOf(elf.R_PPC_ADDR24), + "R_PPC_ADDR32": reflect.ValueOf(elf.R_PPC_ADDR32), + "R_PPC_COPY": reflect.ValueOf(elf.R_PPC_COPY), + "R_PPC_DTPMOD32": reflect.ValueOf(elf.R_PPC_DTPMOD32), + "R_PPC_DTPREL16": reflect.ValueOf(elf.R_PPC_DTPREL16), + "R_PPC_DTPREL16_HA": reflect.ValueOf(elf.R_PPC_DTPREL16_HA), + "R_PPC_DTPREL16_HI": reflect.ValueOf(elf.R_PPC_DTPREL16_HI), + "R_PPC_DTPREL16_LO": reflect.ValueOf(elf.R_PPC_DTPREL16_LO), + "R_PPC_DTPREL32": reflect.ValueOf(elf.R_PPC_DTPREL32), + "R_PPC_EMB_BIT_FLD": reflect.ValueOf(elf.R_PPC_EMB_BIT_FLD), + "R_PPC_EMB_MRKREF": reflect.ValueOf(elf.R_PPC_EMB_MRKREF), + "R_PPC_EMB_NADDR16": reflect.ValueOf(elf.R_PPC_EMB_NADDR16), + "R_PPC_EMB_NADDR16_HA": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HA), + "R_PPC_EMB_NADDR16_HI": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_HI), + "R_PPC_EMB_NADDR16_LO": reflect.ValueOf(elf.R_PPC_EMB_NADDR16_LO), + "R_PPC_EMB_NADDR32": reflect.ValueOf(elf.R_PPC_EMB_NADDR32), + "R_PPC_EMB_RELSDA": reflect.ValueOf(elf.R_PPC_EMB_RELSDA), + "R_PPC_EMB_RELSEC16": reflect.ValueOf(elf.R_PPC_EMB_RELSEC16), + "R_PPC_EMB_RELST_HA": reflect.ValueOf(elf.R_PPC_EMB_RELST_HA), + "R_PPC_EMB_RELST_HI": reflect.ValueOf(elf.R_PPC_EMB_RELST_HI), + "R_PPC_EMB_RELST_LO": reflect.ValueOf(elf.R_PPC_EMB_RELST_LO), + "R_PPC_EMB_SDA21": reflect.ValueOf(elf.R_PPC_EMB_SDA21), + "R_PPC_EMB_SDA2I16": reflect.ValueOf(elf.R_PPC_EMB_SDA2I16), + "R_PPC_EMB_SDA2REL": reflect.ValueOf(elf.R_PPC_EMB_SDA2REL), + "R_PPC_EMB_SDAI16": reflect.ValueOf(elf.R_PPC_EMB_SDAI16), + "R_PPC_GLOB_DAT": reflect.ValueOf(elf.R_PPC_GLOB_DAT), + "R_PPC_GOT16": reflect.ValueOf(elf.R_PPC_GOT16), + "R_PPC_GOT16_HA": reflect.ValueOf(elf.R_PPC_GOT16_HA), + "R_PPC_GOT16_HI": reflect.ValueOf(elf.R_PPC_GOT16_HI), + "R_PPC_GOT16_LO": reflect.ValueOf(elf.R_PPC_GOT16_LO), + "R_PPC_GOT_TLSGD16": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16), + "R_PPC_GOT_TLSGD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HA), + "R_PPC_GOT_TLSGD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_HI), + "R_PPC_GOT_TLSGD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSGD16_LO), + "R_PPC_GOT_TLSLD16": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16), + "R_PPC_GOT_TLSLD16_HA": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HA), + "R_PPC_GOT_TLSLD16_HI": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_HI), + "R_PPC_GOT_TLSLD16_LO": reflect.ValueOf(elf.R_PPC_GOT_TLSLD16_LO), + "R_PPC_GOT_TPREL16": reflect.ValueOf(elf.R_PPC_GOT_TPREL16), + "R_PPC_GOT_TPREL16_HA": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HA), + "R_PPC_GOT_TPREL16_HI": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_HI), + "R_PPC_GOT_TPREL16_LO": reflect.ValueOf(elf.R_PPC_GOT_TPREL16_LO), + "R_PPC_JMP_SLOT": reflect.ValueOf(elf.R_PPC_JMP_SLOT), + "R_PPC_LOCAL24PC": reflect.ValueOf(elf.R_PPC_LOCAL24PC), + "R_PPC_NONE": reflect.ValueOf(elf.R_PPC_NONE), + "R_PPC_PLT16_HA": reflect.ValueOf(elf.R_PPC_PLT16_HA), + "R_PPC_PLT16_HI": reflect.ValueOf(elf.R_PPC_PLT16_HI), + "R_PPC_PLT16_LO": reflect.ValueOf(elf.R_PPC_PLT16_LO), + "R_PPC_PLT32": reflect.ValueOf(elf.R_PPC_PLT32), + "R_PPC_PLTREL24": reflect.ValueOf(elf.R_PPC_PLTREL24), + "R_PPC_PLTREL32": reflect.ValueOf(elf.R_PPC_PLTREL32), + "R_PPC_REL14": reflect.ValueOf(elf.R_PPC_REL14), + "R_PPC_REL14_BRNTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRNTAKEN), + "R_PPC_REL14_BRTAKEN": reflect.ValueOf(elf.R_PPC_REL14_BRTAKEN), + "R_PPC_REL24": reflect.ValueOf(elf.R_PPC_REL24), + "R_PPC_REL32": reflect.ValueOf(elf.R_PPC_REL32), + "R_PPC_RELATIVE": reflect.ValueOf(elf.R_PPC_RELATIVE), + "R_PPC_SDAREL16": reflect.ValueOf(elf.R_PPC_SDAREL16), + "R_PPC_SECTOFF": reflect.ValueOf(elf.R_PPC_SECTOFF), + "R_PPC_SECTOFF_HA": reflect.ValueOf(elf.R_PPC_SECTOFF_HA), + "R_PPC_SECTOFF_HI": reflect.ValueOf(elf.R_PPC_SECTOFF_HI), + "R_PPC_SECTOFF_LO": reflect.ValueOf(elf.R_PPC_SECTOFF_LO), + "R_PPC_TLS": reflect.ValueOf(elf.R_PPC_TLS), + "R_PPC_TPREL16": reflect.ValueOf(elf.R_PPC_TPREL16), + "R_PPC_TPREL16_HA": reflect.ValueOf(elf.R_PPC_TPREL16_HA), + "R_PPC_TPREL16_HI": reflect.ValueOf(elf.R_PPC_TPREL16_HI), + "R_PPC_TPREL16_LO": reflect.ValueOf(elf.R_PPC_TPREL16_LO), + "R_PPC_TPREL32": reflect.ValueOf(elf.R_PPC_TPREL32), + "R_PPC_UADDR16": reflect.ValueOf(elf.R_PPC_UADDR16), + "R_PPC_UADDR32": reflect.ValueOf(elf.R_PPC_UADDR32), + "R_RISCV_32": reflect.ValueOf(elf.R_RISCV_32), + "R_RISCV_32_PCREL": reflect.ValueOf(elf.R_RISCV_32_PCREL), + "R_RISCV_64": reflect.ValueOf(elf.R_RISCV_64), + "R_RISCV_ADD16": reflect.ValueOf(elf.R_RISCV_ADD16), + "R_RISCV_ADD32": reflect.ValueOf(elf.R_RISCV_ADD32), + "R_RISCV_ADD64": reflect.ValueOf(elf.R_RISCV_ADD64), + "R_RISCV_ADD8": reflect.ValueOf(elf.R_RISCV_ADD8), + "R_RISCV_ALIGN": reflect.ValueOf(elf.R_RISCV_ALIGN), + "R_RISCV_BRANCH": reflect.ValueOf(elf.R_RISCV_BRANCH), + "R_RISCV_CALL": reflect.ValueOf(elf.R_RISCV_CALL), + "R_RISCV_CALL_PLT": reflect.ValueOf(elf.R_RISCV_CALL_PLT), + "R_RISCV_COPY": reflect.ValueOf(elf.R_RISCV_COPY), + "R_RISCV_GNU_VTENTRY": reflect.ValueOf(elf.R_RISCV_GNU_VTENTRY), + "R_RISCV_GNU_VTINHERIT": reflect.ValueOf(elf.R_RISCV_GNU_VTINHERIT), + "R_RISCV_GOT_HI20": reflect.ValueOf(elf.R_RISCV_GOT_HI20), + "R_RISCV_GPREL_I": reflect.ValueOf(elf.R_RISCV_GPREL_I), + "R_RISCV_GPREL_S": reflect.ValueOf(elf.R_RISCV_GPREL_S), + "R_RISCV_HI20": reflect.ValueOf(elf.R_RISCV_HI20), + "R_RISCV_JAL": reflect.ValueOf(elf.R_RISCV_JAL), + "R_RISCV_JUMP_SLOT": reflect.ValueOf(elf.R_RISCV_JUMP_SLOT), + "R_RISCV_LO12_I": reflect.ValueOf(elf.R_RISCV_LO12_I), + "R_RISCV_LO12_S": reflect.ValueOf(elf.R_RISCV_LO12_S), + "R_RISCV_NONE": reflect.ValueOf(elf.R_RISCV_NONE), + "R_RISCV_PCREL_HI20": reflect.ValueOf(elf.R_RISCV_PCREL_HI20), + "R_RISCV_PCREL_LO12_I": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_I), + "R_RISCV_PCREL_LO12_S": reflect.ValueOf(elf.R_RISCV_PCREL_LO12_S), + "R_RISCV_RELATIVE": reflect.ValueOf(elf.R_RISCV_RELATIVE), + "R_RISCV_RELAX": reflect.ValueOf(elf.R_RISCV_RELAX), + "R_RISCV_RVC_BRANCH": reflect.ValueOf(elf.R_RISCV_RVC_BRANCH), + "R_RISCV_RVC_JUMP": reflect.ValueOf(elf.R_RISCV_RVC_JUMP), + "R_RISCV_RVC_LUI": reflect.ValueOf(elf.R_RISCV_RVC_LUI), + "R_RISCV_SET16": reflect.ValueOf(elf.R_RISCV_SET16), + "R_RISCV_SET32": reflect.ValueOf(elf.R_RISCV_SET32), + "R_RISCV_SET6": reflect.ValueOf(elf.R_RISCV_SET6), + "R_RISCV_SET8": reflect.ValueOf(elf.R_RISCV_SET8), + "R_RISCV_SUB16": reflect.ValueOf(elf.R_RISCV_SUB16), + "R_RISCV_SUB32": reflect.ValueOf(elf.R_RISCV_SUB32), + "R_RISCV_SUB6": reflect.ValueOf(elf.R_RISCV_SUB6), + "R_RISCV_SUB64": reflect.ValueOf(elf.R_RISCV_SUB64), + "R_RISCV_SUB8": reflect.ValueOf(elf.R_RISCV_SUB8), + "R_RISCV_TLS_DTPMOD32": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD32), + "R_RISCV_TLS_DTPMOD64": reflect.ValueOf(elf.R_RISCV_TLS_DTPMOD64), + "R_RISCV_TLS_DTPREL32": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL32), + "R_RISCV_TLS_DTPREL64": reflect.ValueOf(elf.R_RISCV_TLS_DTPREL64), + "R_RISCV_TLS_GD_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GD_HI20), + "R_RISCV_TLS_GOT_HI20": reflect.ValueOf(elf.R_RISCV_TLS_GOT_HI20), + "R_RISCV_TLS_TPREL32": reflect.ValueOf(elf.R_RISCV_TLS_TPREL32), + "R_RISCV_TLS_TPREL64": reflect.ValueOf(elf.R_RISCV_TLS_TPREL64), + "R_RISCV_TPREL_ADD": reflect.ValueOf(elf.R_RISCV_TPREL_ADD), + "R_RISCV_TPREL_HI20": reflect.ValueOf(elf.R_RISCV_TPREL_HI20), + "R_RISCV_TPREL_I": reflect.ValueOf(elf.R_RISCV_TPREL_I), + "R_RISCV_TPREL_LO12_I": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_I), + "R_RISCV_TPREL_LO12_S": reflect.ValueOf(elf.R_RISCV_TPREL_LO12_S), + "R_RISCV_TPREL_S": reflect.ValueOf(elf.R_RISCV_TPREL_S), + "R_SPARC_10": reflect.ValueOf(elf.R_SPARC_10), + "R_SPARC_11": reflect.ValueOf(elf.R_SPARC_11), + "R_SPARC_13": reflect.ValueOf(elf.R_SPARC_13), + "R_SPARC_16": reflect.ValueOf(elf.R_SPARC_16), + "R_SPARC_22": reflect.ValueOf(elf.R_SPARC_22), + "R_SPARC_32": reflect.ValueOf(elf.R_SPARC_32), + "R_SPARC_5": reflect.ValueOf(elf.R_SPARC_5), + "R_SPARC_6": reflect.ValueOf(elf.R_SPARC_6), + "R_SPARC_64": reflect.ValueOf(elf.R_SPARC_64), + "R_SPARC_7": reflect.ValueOf(elf.R_SPARC_7), + "R_SPARC_8": reflect.ValueOf(elf.R_SPARC_8), + "R_SPARC_COPY": reflect.ValueOf(elf.R_SPARC_COPY), + "R_SPARC_DISP16": reflect.ValueOf(elf.R_SPARC_DISP16), + "R_SPARC_DISP32": reflect.ValueOf(elf.R_SPARC_DISP32), + "R_SPARC_DISP64": reflect.ValueOf(elf.R_SPARC_DISP64), + "R_SPARC_DISP8": reflect.ValueOf(elf.R_SPARC_DISP8), + "R_SPARC_GLOB_DAT": reflect.ValueOf(elf.R_SPARC_GLOB_DAT), + "R_SPARC_GLOB_JMP": reflect.ValueOf(elf.R_SPARC_GLOB_JMP), + "R_SPARC_GOT10": reflect.ValueOf(elf.R_SPARC_GOT10), + "R_SPARC_GOT13": reflect.ValueOf(elf.R_SPARC_GOT13), + "R_SPARC_GOT22": reflect.ValueOf(elf.R_SPARC_GOT22), + "R_SPARC_H44": reflect.ValueOf(elf.R_SPARC_H44), + "R_SPARC_HH22": reflect.ValueOf(elf.R_SPARC_HH22), + "R_SPARC_HI22": reflect.ValueOf(elf.R_SPARC_HI22), + "R_SPARC_HIPLT22": reflect.ValueOf(elf.R_SPARC_HIPLT22), + "R_SPARC_HIX22": reflect.ValueOf(elf.R_SPARC_HIX22), + "R_SPARC_HM10": reflect.ValueOf(elf.R_SPARC_HM10), + "R_SPARC_JMP_SLOT": reflect.ValueOf(elf.R_SPARC_JMP_SLOT), + "R_SPARC_L44": reflect.ValueOf(elf.R_SPARC_L44), + "R_SPARC_LM22": reflect.ValueOf(elf.R_SPARC_LM22), + "R_SPARC_LO10": reflect.ValueOf(elf.R_SPARC_LO10), + "R_SPARC_LOPLT10": reflect.ValueOf(elf.R_SPARC_LOPLT10), + "R_SPARC_LOX10": reflect.ValueOf(elf.R_SPARC_LOX10), + "R_SPARC_M44": reflect.ValueOf(elf.R_SPARC_M44), + "R_SPARC_NONE": reflect.ValueOf(elf.R_SPARC_NONE), + "R_SPARC_OLO10": reflect.ValueOf(elf.R_SPARC_OLO10), + "R_SPARC_PC10": reflect.ValueOf(elf.R_SPARC_PC10), + "R_SPARC_PC22": reflect.ValueOf(elf.R_SPARC_PC22), + "R_SPARC_PCPLT10": reflect.ValueOf(elf.R_SPARC_PCPLT10), + "R_SPARC_PCPLT22": reflect.ValueOf(elf.R_SPARC_PCPLT22), + "R_SPARC_PCPLT32": reflect.ValueOf(elf.R_SPARC_PCPLT32), + "R_SPARC_PC_HH22": reflect.ValueOf(elf.R_SPARC_PC_HH22), + "R_SPARC_PC_HM10": reflect.ValueOf(elf.R_SPARC_PC_HM10), + "R_SPARC_PC_LM22": reflect.ValueOf(elf.R_SPARC_PC_LM22), + "R_SPARC_PLT32": reflect.ValueOf(elf.R_SPARC_PLT32), + "R_SPARC_PLT64": reflect.ValueOf(elf.R_SPARC_PLT64), + "R_SPARC_REGISTER": reflect.ValueOf(elf.R_SPARC_REGISTER), + "R_SPARC_RELATIVE": reflect.ValueOf(elf.R_SPARC_RELATIVE), + "R_SPARC_UA16": reflect.ValueOf(elf.R_SPARC_UA16), + "R_SPARC_UA32": reflect.ValueOf(elf.R_SPARC_UA32), + "R_SPARC_UA64": reflect.ValueOf(elf.R_SPARC_UA64), + "R_SPARC_WDISP16": reflect.ValueOf(elf.R_SPARC_WDISP16), + "R_SPARC_WDISP19": reflect.ValueOf(elf.R_SPARC_WDISP19), + "R_SPARC_WDISP22": reflect.ValueOf(elf.R_SPARC_WDISP22), + "R_SPARC_WDISP30": reflect.ValueOf(elf.R_SPARC_WDISP30), + "R_SPARC_WPLT30": reflect.ValueOf(elf.R_SPARC_WPLT30), + "R_SYM32": reflect.ValueOf(elf.R_SYM32), + "R_SYM64": reflect.ValueOf(elf.R_SYM64), + "R_TYPE32": reflect.ValueOf(elf.R_TYPE32), + "R_TYPE64": reflect.ValueOf(elf.R_TYPE64), + "R_X86_64_16": reflect.ValueOf(elf.R_X86_64_16), + "R_X86_64_32": reflect.ValueOf(elf.R_X86_64_32), + "R_X86_64_32S": reflect.ValueOf(elf.R_X86_64_32S), + "R_X86_64_64": reflect.ValueOf(elf.R_X86_64_64), + "R_X86_64_8": reflect.ValueOf(elf.R_X86_64_8), + "R_X86_64_COPY": reflect.ValueOf(elf.R_X86_64_COPY), + "R_X86_64_DTPMOD64": reflect.ValueOf(elf.R_X86_64_DTPMOD64), + "R_X86_64_DTPOFF32": reflect.ValueOf(elf.R_X86_64_DTPOFF32), + "R_X86_64_DTPOFF64": reflect.ValueOf(elf.R_X86_64_DTPOFF64), + "R_X86_64_GLOB_DAT": reflect.ValueOf(elf.R_X86_64_GLOB_DAT), + "R_X86_64_GOT32": reflect.ValueOf(elf.R_X86_64_GOT32), + "R_X86_64_GOT64": reflect.ValueOf(elf.R_X86_64_GOT64), + "R_X86_64_GOTOFF64": reflect.ValueOf(elf.R_X86_64_GOTOFF64), + "R_X86_64_GOTPC32": reflect.ValueOf(elf.R_X86_64_GOTPC32), + "R_X86_64_GOTPC32_TLSDESC": reflect.ValueOf(elf.R_X86_64_GOTPC32_TLSDESC), + "R_X86_64_GOTPC64": reflect.ValueOf(elf.R_X86_64_GOTPC64), + "R_X86_64_GOTPCREL": reflect.ValueOf(elf.R_X86_64_GOTPCREL), + "R_X86_64_GOTPCREL64": reflect.ValueOf(elf.R_X86_64_GOTPCREL64), + "R_X86_64_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_GOTPCRELX), + "R_X86_64_GOTPLT64": reflect.ValueOf(elf.R_X86_64_GOTPLT64), + "R_X86_64_GOTTPOFF": reflect.ValueOf(elf.R_X86_64_GOTTPOFF), + "R_X86_64_IRELATIVE": reflect.ValueOf(elf.R_X86_64_IRELATIVE), + "R_X86_64_JMP_SLOT": reflect.ValueOf(elf.R_X86_64_JMP_SLOT), + "R_X86_64_NONE": reflect.ValueOf(elf.R_X86_64_NONE), + "R_X86_64_PC16": reflect.ValueOf(elf.R_X86_64_PC16), + "R_X86_64_PC32": reflect.ValueOf(elf.R_X86_64_PC32), + "R_X86_64_PC32_BND": reflect.ValueOf(elf.R_X86_64_PC32_BND), + "R_X86_64_PC64": reflect.ValueOf(elf.R_X86_64_PC64), + "R_X86_64_PC8": reflect.ValueOf(elf.R_X86_64_PC8), + "R_X86_64_PLT32": reflect.ValueOf(elf.R_X86_64_PLT32), + "R_X86_64_PLT32_BND": reflect.ValueOf(elf.R_X86_64_PLT32_BND), + "R_X86_64_PLTOFF64": reflect.ValueOf(elf.R_X86_64_PLTOFF64), + "R_X86_64_RELATIVE": reflect.ValueOf(elf.R_X86_64_RELATIVE), + "R_X86_64_RELATIVE64": reflect.ValueOf(elf.R_X86_64_RELATIVE64), + "R_X86_64_REX_GOTPCRELX": reflect.ValueOf(elf.R_X86_64_REX_GOTPCRELX), + "R_X86_64_SIZE32": reflect.ValueOf(elf.R_X86_64_SIZE32), + "R_X86_64_SIZE64": reflect.ValueOf(elf.R_X86_64_SIZE64), + "R_X86_64_TLSDESC": reflect.ValueOf(elf.R_X86_64_TLSDESC), + "R_X86_64_TLSDESC_CALL": reflect.ValueOf(elf.R_X86_64_TLSDESC_CALL), + "R_X86_64_TLSGD": reflect.ValueOf(elf.R_X86_64_TLSGD), + "R_X86_64_TLSLD": reflect.ValueOf(elf.R_X86_64_TLSLD), + "R_X86_64_TPOFF32": reflect.ValueOf(elf.R_X86_64_TPOFF32), + "R_X86_64_TPOFF64": reflect.ValueOf(elf.R_X86_64_TPOFF64), + "SHF_ALLOC": reflect.ValueOf(elf.SHF_ALLOC), + "SHF_COMPRESSED": reflect.ValueOf(elf.SHF_COMPRESSED), + "SHF_EXECINSTR": reflect.ValueOf(elf.SHF_EXECINSTR), + "SHF_GROUP": reflect.ValueOf(elf.SHF_GROUP), + "SHF_INFO_LINK": reflect.ValueOf(elf.SHF_INFO_LINK), + "SHF_LINK_ORDER": reflect.ValueOf(elf.SHF_LINK_ORDER), + "SHF_MASKOS": reflect.ValueOf(elf.SHF_MASKOS), + "SHF_MASKPROC": reflect.ValueOf(elf.SHF_MASKPROC), + "SHF_MERGE": reflect.ValueOf(elf.SHF_MERGE), + "SHF_OS_NONCONFORMING": reflect.ValueOf(elf.SHF_OS_NONCONFORMING), + "SHF_STRINGS": reflect.ValueOf(elf.SHF_STRINGS), + "SHF_TLS": reflect.ValueOf(elf.SHF_TLS), + "SHF_WRITE": reflect.ValueOf(elf.SHF_WRITE), + "SHN_ABS": reflect.ValueOf(elf.SHN_ABS), + "SHN_COMMON": reflect.ValueOf(elf.SHN_COMMON), + "SHN_HIOS": reflect.ValueOf(elf.SHN_HIOS), + "SHN_HIPROC": reflect.ValueOf(elf.SHN_HIPROC), + "SHN_HIRESERVE": reflect.ValueOf(elf.SHN_HIRESERVE), + "SHN_LOOS": reflect.ValueOf(elf.SHN_LOOS), + "SHN_LOPROC": reflect.ValueOf(elf.SHN_LOPROC), + "SHN_LORESERVE": reflect.ValueOf(elf.SHN_LORESERVE), + "SHN_UNDEF": reflect.ValueOf(elf.SHN_UNDEF), + "SHN_XINDEX": reflect.ValueOf(elf.SHN_XINDEX), + "SHT_DYNAMIC": reflect.ValueOf(elf.SHT_DYNAMIC), + "SHT_DYNSYM": reflect.ValueOf(elf.SHT_DYNSYM), + "SHT_FINI_ARRAY": reflect.ValueOf(elf.SHT_FINI_ARRAY), + "SHT_GNU_ATTRIBUTES": reflect.ValueOf(elf.SHT_GNU_ATTRIBUTES), + "SHT_GNU_HASH": reflect.ValueOf(elf.SHT_GNU_HASH), + "SHT_GNU_LIBLIST": reflect.ValueOf(elf.SHT_GNU_LIBLIST), + "SHT_GNU_VERDEF": reflect.ValueOf(elf.SHT_GNU_VERDEF), + "SHT_GNU_VERNEED": reflect.ValueOf(elf.SHT_GNU_VERNEED), + "SHT_GNU_VERSYM": reflect.ValueOf(elf.SHT_GNU_VERSYM), + "SHT_GROUP": reflect.ValueOf(elf.SHT_GROUP), + "SHT_HASH": reflect.ValueOf(elf.SHT_HASH), + "SHT_HIOS": reflect.ValueOf(elf.SHT_HIOS), + "SHT_HIPROC": reflect.ValueOf(elf.SHT_HIPROC), + "SHT_HIUSER": reflect.ValueOf(elf.SHT_HIUSER), + "SHT_INIT_ARRAY": reflect.ValueOf(elf.SHT_INIT_ARRAY), + "SHT_LOOS": reflect.ValueOf(elf.SHT_LOOS), + "SHT_LOPROC": reflect.ValueOf(elf.SHT_LOPROC), + "SHT_LOUSER": reflect.ValueOf(elf.SHT_LOUSER), + "SHT_MIPS_ABIFLAGS": reflect.ValueOf(elf.SHT_MIPS_ABIFLAGS), + "SHT_NOBITS": reflect.ValueOf(elf.SHT_NOBITS), + "SHT_NOTE": reflect.ValueOf(elf.SHT_NOTE), + "SHT_NULL": reflect.ValueOf(elf.SHT_NULL), + "SHT_PREINIT_ARRAY": reflect.ValueOf(elf.SHT_PREINIT_ARRAY), + "SHT_PROGBITS": reflect.ValueOf(elf.SHT_PROGBITS), + "SHT_REL": reflect.ValueOf(elf.SHT_REL), + "SHT_RELA": reflect.ValueOf(elf.SHT_RELA), + "SHT_SHLIB": reflect.ValueOf(elf.SHT_SHLIB), + "SHT_STRTAB": reflect.ValueOf(elf.SHT_STRTAB), + "SHT_SYMTAB": reflect.ValueOf(elf.SHT_SYMTAB), + "SHT_SYMTAB_SHNDX": reflect.ValueOf(elf.SHT_SYMTAB_SHNDX), + "STB_GLOBAL": reflect.ValueOf(elf.STB_GLOBAL), + "STB_HIOS": reflect.ValueOf(elf.STB_HIOS), + "STB_HIPROC": reflect.ValueOf(elf.STB_HIPROC), + "STB_LOCAL": reflect.ValueOf(elf.STB_LOCAL), + "STB_LOOS": reflect.ValueOf(elf.STB_LOOS), + "STB_LOPROC": reflect.ValueOf(elf.STB_LOPROC), + "STB_WEAK": reflect.ValueOf(elf.STB_WEAK), + "STT_COMMON": reflect.ValueOf(elf.STT_COMMON), + "STT_FILE": reflect.ValueOf(elf.STT_FILE), + "STT_FUNC": reflect.ValueOf(elf.STT_FUNC), + "STT_HIOS": reflect.ValueOf(elf.STT_HIOS), + "STT_HIPROC": reflect.ValueOf(elf.STT_HIPROC), + "STT_LOOS": reflect.ValueOf(elf.STT_LOOS), + "STT_LOPROC": reflect.ValueOf(elf.STT_LOPROC), + "STT_NOTYPE": reflect.ValueOf(elf.STT_NOTYPE), + "STT_OBJECT": reflect.ValueOf(elf.STT_OBJECT), + "STT_SECTION": reflect.ValueOf(elf.STT_SECTION), + "STT_TLS": reflect.ValueOf(elf.STT_TLS), + "STV_DEFAULT": reflect.ValueOf(elf.STV_DEFAULT), + "STV_HIDDEN": reflect.ValueOf(elf.STV_HIDDEN), + "STV_INTERNAL": reflect.ValueOf(elf.STV_INTERNAL), + "STV_PROTECTED": reflect.ValueOf(elf.STV_PROTECTED), + "ST_BIND": reflect.ValueOf(elf.ST_BIND), + "ST_INFO": reflect.ValueOf(elf.ST_INFO), + "ST_TYPE": reflect.ValueOf(elf.ST_TYPE), + "ST_VISIBILITY": reflect.ValueOf(elf.ST_VISIBILITY), + "Sym32Size": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Sym64Size": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + + // type definitions + "Chdr32": reflect.ValueOf((*elf.Chdr32)(nil)), + "Chdr64": reflect.ValueOf((*elf.Chdr64)(nil)), + "Class": reflect.ValueOf((*elf.Class)(nil)), + "CompressionType": reflect.ValueOf((*elf.CompressionType)(nil)), + "Data": reflect.ValueOf((*elf.Data)(nil)), + "Dyn32": reflect.ValueOf((*elf.Dyn32)(nil)), + "Dyn64": reflect.ValueOf((*elf.Dyn64)(nil)), + "DynFlag": reflect.ValueOf((*elf.DynFlag)(nil)), + "DynTag": reflect.ValueOf((*elf.DynTag)(nil)), + "File": reflect.ValueOf((*elf.File)(nil)), + "FileHeader": reflect.ValueOf((*elf.FileHeader)(nil)), + "FormatError": reflect.ValueOf((*elf.FormatError)(nil)), + "Header32": reflect.ValueOf((*elf.Header32)(nil)), + "Header64": reflect.ValueOf((*elf.Header64)(nil)), + "ImportedSymbol": reflect.ValueOf((*elf.ImportedSymbol)(nil)), + "Machine": reflect.ValueOf((*elf.Machine)(nil)), + "NType": reflect.ValueOf((*elf.NType)(nil)), + "OSABI": reflect.ValueOf((*elf.OSABI)(nil)), + "Prog": reflect.ValueOf((*elf.Prog)(nil)), + "Prog32": reflect.ValueOf((*elf.Prog32)(nil)), + "Prog64": reflect.ValueOf((*elf.Prog64)(nil)), + "ProgFlag": reflect.ValueOf((*elf.ProgFlag)(nil)), + "ProgHeader": reflect.ValueOf((*elf.ProgHeader)(nil)), + "ProgType": reflect.ValueOf((*elf.ProgType)(nil)), + "R_386": reflect.ValueOf((*elf.R_386)(nil)), + "R_390": reflect.ValueOf((*elf.R_390)(nil)), + "R_AARCH64": reflect.ValueOf((*elf.R_AARCH64)(nil)), + "R_ALPHA": reflect.ValueOf((*elf.R_ALPHA)(nil)), + "R_ARM": reflect.ValueOf((*elf.R_ARM)(nil)), + "R_LARCH": reflect.ValueOf((*elf.R_LARCH)(nil)), + "R_MIPS": reflect.ValueOf((*elf.R_MIPS)(nil)), + "R_PPC": reflect.ValueOf((*elf.R_PPC)(nil)), + "R_PPC64": reflect.ValueOf((*elf.R_PPC64)(nil)), + "R_RISCV": reflect.ValueOf((*elf.R_RISCV)(nil)), + "R_SPARC": reflect.ValueOf((*elf.R_SPARC)(nil)), + "R_X86_64": reflect.ValueOf((*elf.R_X86_64)(nil)), + "Rel32": reflect.ValueOf((*elf.Rel32)(nil)), + "Rel64": reflect.ValueOf((*elf.Rel64)(nil)), + "Rela32": reflect.ValueOf((*elf.Rela32)(nil)), + "Rela64": reflect.ValueOf((*elf.Rela64)(nil)), + "Section": reflect.ValueOf((*elf.Section)(nil)), + "Section32": reflect.ValueOf((*elf.Section32)(nil)), + "Section64": reflect.ValueOf((*elf.Section64)(nil)), + "SectionFlag": reflect.ValueOf((*elf.SectionFlag)(nil)), + "SectionHeader": reflect.ValueOf((*elf.SectionHeader)(nil)), + "SectionIndex": reflect.ValueOf((*elf.SectionIndex)(nil)), + "SectionType": reflect.ValueOf((*elf.SectionType)(nil)), + "Sym32": reflect.ValueOf((*elf.Sym32)(nil)), + "Sym64": reflect.ValueOf((*elf.Sym64)(nil)), + "SymBind": reflect.ValueOf((*elf.SymBind)(nil)), + "SymType": reflect.ValueOf((*elf.SymType)(nil)), + "SymVis": reflect.ValueOf((*elf.SymVis)(nil)), + "Symbol": reflect.ValueOf((*elf.Symbol)(nil)), + "Type": reflect.ValueOf((*elf.Type)(nil)), + "Version": reflect.ValueOf((*elf.Version)(nil)), + } +} diff --git a/stdlib/go1_19_debug_gosym.go b/stdlib/go1_19_debug_gosym.go new file mode 100644 index 000000000..ad9857396 --- /dev/null +++ b/stdlib/go1_19_debug_gosym.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract debug/gosym'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/gosym" + "reflect" +) + +func init() { + Symbols["debug/gosym/gosym"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewLineTable": reflect.ValueOf(gosym.NewLineTable), + "NewTable": reflect.ValueOf(gosym.NewTable), + + // type definitions + "DecodingError": reflect.ValueOf((*gosym.DecodingError)(nil)), + "Func": reflect.ValueOf((*gosym.Func)(nil)), + "LineTable": reflect.ValueOf((*gosym.LineTable)(nil)), + "Obj": reflect.ValueOf((*gosym.Obj)(nil)), + "Sym": reflect.ValueOf((*gosym.Sym)(nil)), + "Table": reflect.ValueOf((*gosym.Table)(nil)), + "UnknownFileError": reflect.ValueOf((*gosym.UnknownFileError)(nil)), + "UnknownLineError": reflect.ValueOf((*gosym.UnknownLineError)(nil)), + } +} diff --git a/stdlib/go1_19_debug_macho.go b/stdlib/go1_19_debug_macho.go new file mode 100644 index 000000000..f7e0f1632 --- /dev/null +++ b/stdlib/go1_19_debug_macho.go @@ -0,0 +1,160 @@ +// Code generated by 'yaegi extract debug/macho'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/macho" + "reflect" +) + +func init() { + Symbols["debug/macho/macho"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ARM64_RELOC_ADDEND": reflect.ValueOf(macho.ARM64_RELOC_ADDEND), + "ARM64_RELOC_BRANCH26": reflect.ValueOf(macho.ARM64_RELOC_BRANCH26), + "ARM64_RELOC_GOT_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGE21), + "ARM64_RELOC_GOT_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_GOT_LOAD_PAGEOFF12), + "ARM64_RELOC_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_PAGE21), + "ARM64_RELOC_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_PAGEOFF12), + "ARM64_RELOC_POINTER_TO_GOT": reflect.ValueOf(macho.ARM64_RELOC_POINTER_TO_GOT), + "ARM64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.ARM64_RELOC_SUBTRACTOR), + "ARM64_RELOC_TLVP_LOAD_PAGE21": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGE21), + "ARM64_RELOC_TLVP_LOAD_PAGEOFF12": reflect.ValueOf(macho.ARM64_RELOC_TLVP_LOAD_PAGEOFF12), + "ARM64_RELOC_UNSIGNED": reflect.ValueOf(macho.ARM64_RELOC_UNSIGNED), + "ARM_RELOC_BR24": reflect.ValueOf(macho.ARM_RELOC_BR24), + "ARM_RELOC_HALF": reflect.ValueOf(macho.ARM_RELOC_HALF), + "ARM_RELOC_HALF_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_HALF_SECTDIFF), + "ARM_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_LOCAL_SECTDIFF), + "ARM_RELOC_PAIR": reflect.ValueOf(macho.ARM_RELOC_PAIR), + "ARM_RELOC_PB_LA_PTR": reflect.ValueOf(macho.ARM_RELOC_PB_LA_PTR), + "ARM_RELOC_SECTDIFF": reflect.ValueOf(macho.ARM_RELOC_SECTDIFF), + "ARM_RELOC_VANILLA": reflect.ValueOf(macho.ARM_RELOC_VANILLA), + "ARM_THUMB_32BIT_BRANCH": reflect.ValueOf(macho.ARM_THUMB_32BIT_BRANCH), + "ARM_THUMB_RELOC_BR22": reflect.ValueOf(macho.ARM_THUMB_RELOC_BR22), + "Cpu386": reflect.ValueOf(macho.Cpu386), + "CpuAmd64": reflect.ValueOf(macho.CpuAmd64), + "CpuArm": reflect.ValueOf(macho.CpuArm), + "CpuArm64": reflect.ValueOf(macho.CpuArm64), + "CpuPpc": reflect.ValueOf(macho.CpuPpc), + "CpuPpc64": reflect.ValueOf(macho.CpuPpc64), + "ErrNotFat": reflect.ValueOf(&macho.ErrNotFat).Elem(), + "FlagAllModsBound": reflect.ValueOf(macho.FlagAllModsBound), + "FlagAllowStackExecution": reflect.ValueOf(macho.FlagAllowStackExecution), + "FlagAppExtensionSafe": reflect.ValueOf(macho.FlagAppExtensionSafe), + "FlagBindAtLoad": reflect.ValueOf(macho.FlagBindAtLoad), + "FlagBindsToWeak": reflect.ValueOf(macho.FlagBindsToWeak), + "FlagCanonical": reflect.ValueOf(macho.FlagCanonical), + "FlagDeadStrippableDylib": reflect.ValueOf(macho.FlagDeadStrippableDylib), + "FlagDyldLink": reflect.ValueOf(macho.FlagDyldLink), + "FlagForceFlat": reflect.ValueOf(macho.FlagForceFlat), + "FlagHasTLVDescriptors": reflect.ValueOf(macho.FlagHasTLVDescriptors), + "FlagIncrLink": reflect.ValueOf(macho.FlagIncrLink), + "FlagLazyInit": reflect.ValueOf(macho.FlagLazyInit), + "FlagNoFixPrebinding": reflect.ValueOf(macho.FlagNoFixPrebinding), + "FlagNoHeapExecution": reflect.ValueOf(macho.FlagNoHeapExecution), + "FlagNoMultiDefs": reflect.ValueOf(macho.FlagNoMultiDefs), + "FlagNoReexportedDylibs": reflect.ValueOf(macho.FlagNoReexportedDylibs), + "FlagNoUndefs": reflect.ValueOf(macho.FlagNoUndefs), + "FlagPIE": reflect.ValueOf(macho.FlagPIE), + "FlagPrebindable": reflect.ValueOf(macho.FlagPrebindable), + "FlagPrebound": reflect.ValueOf(macho.FlagPrebound), + "FlagRootSafe": reflect.ValueOf(macho.FlagRootSafe), + "FlagSetuidSafe": reflect.ValueOf(macho.FlagSetuidSafe), + "FlagSplitSegs": reflect.ValueOf(macho.FlagSplitSegs), + "FlagSubsectionsViaSymbols": reflect.ValueOf(macho.FlagSubsectionsViaSymbols), + "FlagTwoLevel": reflect.ValueOf(macho.FlagTwoLevel), + "FlagWeakDefines": reflect.ValueOf(macho.FlagWeakDefines), + "GENERIC_RELOC_LOCAL_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_LOCAL_SECTDIFF), + "GENERIC_RELOC_PAIR": reflect.ValueOf(macho.GENERIC_RELOC_PAIR), + "GENERIC_RELOC_PB_LA_PTR": reflect.ValueOf(macho.GENERIC_RELOC_PB_LA_PTR), + "GENERIC_RELOC_SECTDIFF": reflect.ValueOf(macho.GENERIC_RELOC_SECTDIFF), + "GENERIC_RELOC_TLV": reflect.ValueOf(macho.GENERIC_RELOC_TLV), + "GENERIC_RELOC_VANILLA": reflect.ValueOf(macho.GENERIC_RELOC_VANILLA), + "LoadCmdDylib": reflect.ValueOf(macho.LoadCmdDylib), + "LoadCmdDylinker": reflect.ValueOf(macho.LoadCmdDylinker), + "LoadCmdDysymtab": reflect.ValueOf(macho.LoadCmdDysymtab), + "LoadCmdRpath": reflect.ValueOf(macho.LoadCmdRpath), + "LoadCmdSegment": reflect.ValueOf(macho.LoadCmdSegment), + "LoadCmdSegment64": reflect.ValueOf(macho.LoadCmdSegment64), + "LoadCmdSymtab": reflect.ValueOf(macho.LoadCmdSymtab), + "LoadCmdThread": reflect.ValueOf(macho.LoadCmdThread), + "LoadCmdUnixThread": reflect.ValueOf(macho.LoadCmdUnixThread), + "Magic32": reflect.ValueOf(macho.Magic32), + "Magic64": reflect.ValueOf(macho.Magic64), + "MagicFat": reflect.ValueOf(macho.MagicFat), + "NewFatFile": reflect.ValueOf(macho.NewFatFile), + "NewFile": reflect.ValueOf(macho.NewFile), + "Open": reflect.ValueOf(macho.Open), + "OpenFat": reflect.ValueOf(macho.OpenFat), + "TypeBundle": reflect.ValueOf(macho.TypeBundle), + "TypeDylib": reflect.ValueOf(macho.TypeDylib), + "TypeExec": reflect.ValueOf(macho.TypeExec), + "TypeObj": reflect.ValueOf(macho.TypeObj), + "X86_64_RELOC_BRANCH": reflect.ValueOf(macho.X86_64_RELOC_BRANCH), + "X86_64_RELOC_GOT": reflect.ValueOf(macho.X86_64_RELOC_GOT), + "X86_64_RELOC_GOT_LOAD": reflect.ValueOf(macho.X86_64_RELOC_GOT_LOAD), + "X86_64_RELOC_SIGNED": reflect.ValueOf(macho.X86_64_RELOC_SIGNED), + "X86_64_RELOC_SIGNED_1": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_1), + "X86_64_RELOC_SIGNED_2": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_2), + "X86_64_RELOC_SIGNED_4": reflect.ValueOf(macho.X86_64_RELOC_SIGNED_4), + "X86_64_RELOC_SUBTRACTOR": reflect.ValueOf(macho.X86_64_RELOC_SUBTRACTOR), + "X86_64_RELOC_TLV": reflect.ValueOf(macho.X86_64_RELOC_TLV), + "X86_64_RELOC_UNSIGNED": reflect.ValueOf(macho.X86_64_RELOC_UNSIGNED), + + // type definitions + "Cpu": reflect.ValueOf((*macho.Cpu)(nil)), + "Dylib": reflect.ValueOf((*macho.Dylib)(nil)), + "DylibCmd": reflect.ValueOf((*macho.DylibCmd)(nil)), + "Dysymtab": reflect.ValueOf((*macho.Dysymtab)(nil)), + "DysymtabCmd": reflect.ValueOf((*macho.DysymtabCmd)(nil)), + "FatArch": reflect.ValueOf((*macho.FatArch)(nil)), + "FatArchHeader": reflect.ValueOf((*macho.FatArchHeader)(nil)), + "FatFile": reflect.ValueOf((*macho.FatFile)(nil)), + "File": reflect.ValueOf((*macho.File)(nil)), + "FileHeader": reflect.ValueOf((*macho.FileHeader)(nil)), + "FormatError": reflect.ValueOf((*macho.FormatError)(nil)), + "Load": reflect.ValueOf((*macho.Load)(nil)), + "LoadBytes": reflect.ValueOf((*macho.LoadBytes)(nil)), + "LoadCmd": reflect.ValueOf((*macho.LoadCmd)(nil)), + "Nlist32": reflect.ValueOf((*macho.Nlist32)(nil)), + "Nlist64": reflect.ValueOf((*macho.Nlist64)(nil)), + "Regs386": reflect.ValueOf((*macho.Regs386)(nil)), + "RegsAMD64": reflect.ValueOf((*macho.RegsAMD64)(nil)), + "Reloc": reflect.ValueOf((*macho.Reloc)(nil)), + "RelocTypeARM": reflect.ValueOf((*macho.RelocTypeARM)(nil)), + "RelocTypeARM64": reflect.ValueOf((*macho.RelocTypeARM64)(nil)), + "RelocTypeGeneric": reflect.ValueOf((*macho.RelocTypeGeneric)(nil)), + "RelocTypeX86_64": reflect.ValueOf((*macho.RelocTypeX86_64)(nil)), + "Rpath": reflect.ValueOf((*macho.Rpath)(nil)), + "RpathCmd": reflect.ValueOf((*macho.RpathCmd)(nil)), + "Section": reflect.ValueOf((*macho.Section)(nil)), + "Section32": reflect.ValueOf((*macho.Section32)(nil)), + "Section64": reflect.ValueOf((*macho.Section64)(nil)), + "SectionHeader": reflect.ValueOf((*macho.SectionHeader)(nil)), + "Segment": reflect.ValueOf((*macho.Segment)(nil)), + "Segment32": reflect.ValueOf((*macho.Segment32)(nil)), + "Segment64": reflect.ValueOf((*macho.Segment64)(nil)), + "SegmentHeader": reflect.ValueOf((*macho.SegmentHeader)(nil)), + "Symbol": reflect.ValueOf((*macho.Symbol)(nil)), + "Symtab": reflect.ValueOf((*macho.Symtab)(nil)), + "SymtabCmd": reflect.ValueOf((*macho.SymtabCmd)(nil)), + "Thread": reflect.ValueOf((*macho.Thread)(nil)), + "Type": reflect.ValueOf((*macho.Type)(nil)), + + // interface wrapper definitions + "_Load": reflect.ValueOf((*_debug_macho_Load)(nil)), + } +} + +// _debug_macho_Load is an interface wrapper for Load type +type _debug_macho_Load struct { + IValue interface{} + WRaw func() []byte +} + +func (W _debug_macho_Load) Raw() []byte { + return W.WRaw() +} diff --git a/stdlib/go1_19_debug_pe.go b/stdlib/go1_19_debug_pe.go new file mode 100644 index 000000000..3fd21d17c --- /dev/null +++ b/stdlib/go1_19_debug_pe.go @@ -0,0 +1,132 @@ +// Code generated by 'yaegi extract debug/pe'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/pe" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["debug/pe/pe"] = map[string]reflect.Value{ + // function, constant and variable definitions + "COFFSymbolSize": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IMAGE_COMDAT_SELECT_ANY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_COMDAT_SELECT_ASSOCIATIVE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IMAGE_COMDAT_SELECT_EXACT_MATCH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAGE_COMDAT_SELECT_LARGEST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IMAGE_COMDAT_SELECT_NODUPLICATES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_COMDAT_SELECT_SAME_SIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_ARCHITECTURE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_BASERELOC": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_EXCEPTION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_EXPORT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_GLOBALPTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_IAT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_IMPORT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_RESOURCE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAGE_DIRECTORY_ENTRY_TLS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_APPCONTAINER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_GUARD_CF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NO_BIND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NO_ISOLATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NO_SEH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_NX_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IMAGE_DLLCHARACTERISTICS_WDM_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IMAGE_FILE_32BIT_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IMAGE_FILE_AGGRESIVE_WS_TRIM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IMAGE_FILE_BYTES_REVERSED_HI": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IMAGE_FILE_BYTES_REVERSED_LO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IMAGE_FILE_DEBUG_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IMAGE_FILE_DLL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IMAGE_FILE_EXECUTABLE_IMAGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_FILE_LARGE_ADDRESS_AWARE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IMAGE_FILE_LINE_NUMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAGE_FILE_LOCAL_SYMS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IMAGE_FILE_MACHINE_AM33": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "IMAGE_FILE_MACHINE_AMD64": reflect.ValueOf(constant.MakeFromLiteral("34404", token.INT, 0)), + "IMAGE_FILE_MACHINE_ARM": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "IMAGE_FILE_MACHINE_ARM64": reflect.ValueOf(constant.MakeFromLiteral("43620", token.INT, 0)), + "IMAGE_FILE_MACHINE_ARMNT": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "IMAGE_FILE_MACHINE_EBC": reflect.ValueOf(constant.MakeFromLiteral("3772", token.INT, 0)), + "IMAGE_FILE_MACHINE_I386": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "IMAGE_FILE_MACHINE_IA64": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IMAGE_FILE_MACHINE_LOONGARCH32": reflect.ValueOf(constant.MakeFromLiteral("25138", token.INT, 0)), + "IMAGE_FILE_MACHINE_LOONGARCH64": reflect.ValueOf(constant.MakeFromLiteral("25188", token.INT, 0)), + "IMAGE_FILE_MACHINE_M32R": reflect.ValueOf(constant.MakeFromLiteral("36929", token.INT, 0)), + "IMAGE_FILE_MACHINE_MIPS16": reflect.ValueOf(constant.MakeFromLiteral("614", token.INT, 0)), + "IMAGE_FILE_MACHINE_MIPSFPU": reflect.ValueOf(constant.MakeFromLiteral("870", token.INT, 0)), + "IMAGE_FILE_MACHINE_MIPSFPU16": reflect.ValueOf(constant.MakeFromLiteral("1126", token.INT, 0)), + "IMAGE_FILE_MACHINE_POWERPC": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "IMAGE_FILE_MACHINE_POWERPCFP": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "IMAGE_FILE_MACHINE_R4000": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH3": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH3DSP": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH4": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "IMAGE_FILE_MACHINE_SH5": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "IMAGE_FILE_MACHINE_THUMB": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "IMAGE_FILE_MACHINE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IMAGE_FILE_MACHINE_WCEMIPSV2": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "IMAGE_FILE_NET_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IMAGE_FILE_RELOCS_STRIPPED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IMAGE_FILE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IMAGE_FILE_UP_SYSTEM_ONLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IMAGE_SCN_CNT_CODE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IMAGE_SCN_CNT_INITIALIZED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IMAGE_SCN_CNT_UNINITIALIZED_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IMAGE_SCN_LNK_COMDAT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IMAGE_SCN_MEM_DISCARDABLE": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IMAGE_SCN_MEM_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IMAGE_SCN_MEM_READ": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IMAGE_SCN_MEM_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_ROM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IMAGE_SUBSYSTEM_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IMAGE_SUBSYSTEM_NATIVE_WINDOWS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IMAGE_SUBSYSTEM_OS2_CUI": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IMAGE_SUBSYSTEM_POSIX_CUI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IMAGE_SUBSYSTEM_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_CE_GUI": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_CUI": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IMAGE_SUBSYSTEM_WINDOWS_GUI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IMAGE_SUBSYSTEM_XBOX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NewFile": reflect.ValueOf(pe.NewFile), + "Open": reflect.ValueOf(pe.Open), + + // type definitions + "COFFSymbol": reflect.ValueOf((*pe.COFFSymbol)(nil)), + "COFFSymbolAuxFormat5": reflect.ValueOf((*pe.COFFSymbolAuxFormat5)(nil)), + "DataDirectory": reflect.ValueOf((*pe.DataDirectory)(nil)), + "File": reflect.ValueOf((*pe.File)(nil)), + "FileHeader": reflect.ValueOf((*pe.FileHeader)(nil)), + "FormatError": reflect.ValueOf((*pe.FormatError)(nil)), + "ImportDirectory": reflect.ValueOf((*pe.ImportDirectory)(nil)), + "OptionalHeader32": reflect.ValueOf((*pe.OptionalHeader32)(nil)), + "OptionalHeader64": reflect.ValueOf((*pe.OptionalHeader64)(nil)), + "Reloc": reflect.ValueOf((*pe.Reloc)(nil)), + "Section": reflect.ValueOf((*pe.Section)(nil)), + "SectionHeader": reflect.ValueOf((*pe.SectionHeader)(nil)), + "SectionHeader32": reflect.ValueOf((*pe.SectionHeader32)(nil)), + "StringTable": reflect.ValueOf((*pe.StringTable)(nil)), + "Symbol": reflect.ValueOf((*pe.Symbol)(nil)), + } +} diff --git a/stdlib/go1_19_debug_plan9obj.go b/stdlib/go1_19_debug_plan9obj.go new file mode 100644 index 000000000..ffb172823 --- /dev/null +++ b/stdlib/go1_19_debug_plan9obj.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract debug/plan9obj'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "debug/plan9obj" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["debug/plan9obj/plan9obj"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrNoSymbols": reflect.ValueOf(&plan9obj.ErrNoSymbols).Elem(), + "Magic386": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "Magic64": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MagicAMD64": reflect.ValueOf(constant.MakeFromLiteral("35479", token.INT, 0)), + "MagicARM": reflect.ValueOf(constant.MakeFromLiteral("1607", token.INT, 0)), + "NewFile": reflect.ValueOf(plan9obj.NewFile), + "Open": reflect.ValueOf(plan9obj.Open), + + // type definitions + "File": reflect.ValueOf((*plan9obj.File)(nil)), + "FileHeader": reflect.ValueOf((*plan9obj.FileHeader)(nil)), + "Section": reflect.ValueOf((*plan9obj.Section)(nil)), + "SectionHeader": reflect.ValueOf((*plan9obj.SectionHeader)(nil)), + "Sym": reflect.ValueOf((*plan9obj.Sym)(nil)), + } +} diff --git a/stdlib/go1_19_embed.go b/stdlib/go1_19_embed.go new file mode 100644 index 000000000..5f86263e4 --- /dev/null +++ b/stdlib/go1_19_embed.go @@ -0,0 +1,18 @@ +// Code generated by 'yaegi extract embed'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "embed" + "reflect" +) + +func init() { + Symbols["embed/embed"] = map[string]reflect.Value{ + // type definitions + "FS": reflect.ValueOf((*embed.FS)(nil)), + } +} diff --git a/stdlib/go1_19_encoding.go b/stdlib/go1_19_encoding.go new file mode 100644 index 000000000..bc4b3f18d --- /dev/null +++ b/stdlib/go1_19_encoding.go @@ -0,0 +1,67 @@ +// Code generated by 'yaegi extract encoding'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding" + "reflect" +) + +func init() { + Symbols["encoding/encoding"] = map[string]reflect.Value{ + // type definitions + "BinaryMarshaler": reflect.ValueOf((*encoding.BinaryMarshaler)(nil)), + "BinaryUnmarshaler": reflect.ValueOf((*encoding.BinaryUnmarshaler)(nil)), + "TextMarshaler": reflect.ValueOf((*encoding.TextMarshaler)(nil)), + "TextUnmarshaler": reflect.ValueOf((*encoding.TextUnmarshaler)(nil)), + + // interface wrapper definitions + "_BinaryMarshaler": reflect.ValueOf((*_encoding_BinaryMarshaler)(nil)), + "_BinaryUnmarshaler": reflect.ValueOf((*_encoding_BinaryUnmarshaler)(nil)), + "_TextMarshaler": reflect.ValueOf((*_encoding_TextMarshaler)(nil)), + "_TextUnmarshaler": reflect.ValueOf((*_encoding_TextUnmarshaler)(nil)), + } +} + +// _encoding_BinaryMarshaler is an interface wrapper for BinaryMarshaler type +type _encoding_BinaryMarshaler struct { + IValue interface{} + WMarshalBinary func() (data []byte, err error) +} + +func (W _encoding_BinaryMarshaler) MarshalBinary() (data []byte, err error) { + return W.WMarshalBinary() +} + +// _encoding_BinaryUnmarshaler is an interface wrapper for BinaryUnmarshaler type +type _encoding_BinaryUnmarshaler struct { + IValue interface{} + WUnmarshalBinary func(data []byte) error +} + +func (W _encoding_BinaryUnmarshaler) UnmarshalBinary(data []byte) error { + return W.WUnmarshalBinary(data) +} + +// _encoding_TextMarshaler is an interface wrapper for TextMarshaler type +type _encoding_TextMarshaler struct { + IValue interface{} + WMarshalText func() (text []byte, err error) +} + +func (W _encoding_TextMarshaler) MarshalText() (text []byte, err error) { + return W.WMarshalText() +} + +// _encoding_TextUnmarshaler is an interface wrapper for TextUnmarshaler type +type _encoding_TextUnmarshaler struct { + IValue interface{} + WUnmarshalText func(text []byte) error +} + +func (W _encoding_TextUnmarshaler) UnmarshalText(text []byte) error { + return W.WUnmarshalText(text) +} diff --git a/stdlib/go1_19_encoding_ascii85.go b/stdlib/go1_19_encoding_ascii85.go new file mode 100644 index 000000000..ea29fd2eb --- /dev/null +++ b/stdlib/go1_19_encoding_ascii85.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract encoding/ascii85'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/ascii85" + "reflect" +) + +func init() { + Symbols["encoding/ascii85/ascii85"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(ascii85.Decode), + "Encode": reflect.ValueOf(ascii85.Encode), + "MaxEncodedLen": reflect.ValueOf(ascii85.MaxEncodedLen), + "NewDecoder": reflect.ValueOf(ascii85.NewDecoder), + "NewEncoder": reflect.ValueOf(ascii85.NewEncoder), + + // type definitions + "CorruptInputError": reflect.ValueOf((*ascii85.CorruptInputError)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_asn1.go b/stdlib/go1_19_encoding_asn1.go new file mode 100644 index 000000000..d1a943cae --- /dev/null +++ b/stdlib/go1_19_encoding_asn1.go @@ -0,0 +1,57 @@ +// Code generated by 'yaegi extract encoding/asn1'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/asn1" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["encoding/asn1/asn1"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ClassApplication": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ClassContextSpecific": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ClassPrivate": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ClassUniversal": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Marshal": reflect.ValueOf(asn1.Marshal), + "MarshalWithParams": reflect.ValueOf(asn1.MarshalWithParams), + "NullBytes": reflect.ValueOf(&asn1.NullBytes).Elem(), + "NullRawValue": reflect.ValueOf(&asn1.NullRawValue).Elem(), + "TagBMPString": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "TagBitString": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TagBoolean": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TagEnum": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TagGeneralString": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TagGeneralizedTime": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TagIA5String": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TagInteger": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TagNull": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TagNumericString": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TagOID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TagOctetString": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TagPrintableString": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TagSequence": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TagSet": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TagT61String": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TagUTCTime": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TagUTF8String": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "Unmarshal": reflect.ValueOf(asn1.Unmarshal), + "UnmarshalWithParams": reflect.ValueOf(asn1.UnmarshalWithParams), + + // type definitions + "BitString": reflect.ValueOf((*asn1.BitString)(nil)), + "Enumerated": reflect.ValueOf((*asn1.Enumerated)(nil)), + "Flag": reflect.ValueOf((*asn1.Flag)(nil)), + "ObjectIdentifier": reflect.ValueOf((*asn1.ObjectIdentifier)(nil)), + "RawContent": reflect.ValueOf((*asn1.RawContent)(nil)), + "RawValue": reflect.ValueOf((*asn1.RawValue)(nil)), + "StructuralError": reflect.ValueOf((*asn1.StructuralError)(nil)), + "SyntaxError": reflect.ValueOf((*asn1.SyntaxError)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_base32.go b/stdlib/go1_19_encoding_base32.go new file mode 100644 index 000000000..10184ba43 --- /dev/null +++ b/stdlib/go1_19_encoding_base32.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract encoding/base32'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/base32" + "reflect" +) + +func init() { + Symbols["encoding/base32/base32"] = map[string]reflect.Value{ + // function, constant and variable definitions + "HexEncoding": reflect.ValueOf(&base32.HexEncoding).Elem(), + "NewDecoder": reflect.ValueOf(base32.NewDecoder), + "NewEncoder": reflect.ValueOf(base32.NewEncoder), + "NewEncoding": reflect.ValueOf(base32.NewEncoding), + "NoPadding": reflect.ValueOf(base32.NoPadding), + "StdEncoding": reflect.ValueOf(&base32.StdEncoding).Elem(), + "StdPadding": reflect.ValueOf(base32.StdPadding), + + // type definitions + "CorruptInputError": reflect.ValueOf((*base32.CorruptInputError)(nil)), + "Encoding": reflect.ValueOf((*base32.Encoding)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_base64.go b/stdlib/go1_19_encoding_base64.go new file mode 100644 index 000000000..37c5ef9c9 --- /dev/null +++ b/stdlib/go1_19_encoding_base64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract encoding/base64'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/base64" + "reflect" +) + +func init() { + Symbols["encoding/base64/base64"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewDecoder": reflect.ValueOf(base64.NewDecoder), + "NewEncoder": reflect.ValueOf(base64.NewEncoder), + "NewEncoding": reflect.ValueOf(base64.NewEncoding), + "NoPadding": reflect.ValueOf(base64.NoPadding), + "RawStdEncoding": reflect.ValueOf(&base64.RawStdEncoding).Elem(), + "RawURLEncoding": reflect.ValueOf(&base64.RawURLEncoding).Elem(), + "StdEncoding": reflect.ValueOf(&base64.StdEncoding).Elem(), + "StdPadding": reflect.ValueOf(base64.StdPadding), + "URLEncoding": reflect.ValueOf(&base64.URLEncoding).Elem(), + + // type definitions + "CorruptInputError": reflect.ValueOf((*base64.CorruptInputError)(nil)), + "Encoding": reflect.ValueOf((*base64.Encoding)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_binary.go b/stdlib/go1_19_encoding_binary.go new file mode 100644 index 000000000..712c0478f --- /dev/null +++ b/stdlib/go1_19_encoding_binary.go @@ -0,0 +1,105 @@ +// Code generated by 'yaegi extract encoding/binary'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/binary" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["encoding/binary/binary"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AppendUvarint": reflect.ValueOf(binary.AppendUvarint), + "AppendVarint": reflect.ValueOf(binary.AppendVarint), + "BigEndian": reflect.ValueOf(&binary.BigEndian).Elem(), + "LittleEndian": reflect.ValueOf(&binary.LittleEndian).Elem(), + "MaxVarintLen16": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MaxVarintLen32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MaxVarintLen64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PutUvarint": reflect.ValueOf(binary.PutUvarint), + "PutVarint": reflect.ValueOf(binary.PutVarint), + "Read": reflect.ValueOf(binary.Read), + "ReadUvarint": reflect.ValueOf(binary.ReadUvarint), + "ReadVarint": reflect.ValueOf(binary.ReadVarint), + "Size": reflect.ValueOf(binary.Size), + "Uvarint": reflect.ValueOf(binary.Uvarint), + "Varint": reflect.ValueOf(binary.Varint), + "Write": reflect.ValueOf(binary.Write), + + // type definitions + "AppendByteOrder": reflect.ValueOf((*binary.AppendByteOrder)(nil)), + "ByteOrder": reflect.ValueOf((*binary.ByteOrder)(nil)), + + // interface wrapper definitions + "_AppendByteOrder": reflect.ValueOf((*_encoding_binary_AppendByteOrder)(nil)), + "_ByteOrder": reflect.ValueOf((*_encoding_binary_ByteOrder)(nil)), + } +} + +// _encoding_binary_AppendByteOrder is an interface wrapper for AppendByteOrder type +type _encoding_binary_AppendByteOrder struct { + IValue interface{} + WAppendUint16 func(a0 []byte, a1 uint16) []byte + WAppendUint32 func(a0 []byte, a1 uint32) []byte + WAppendUint64 func(a0 []byte, a1 uint64) []byte + WString func() string +} + +func (W _encoding_binary_AppendByteOrder) AppendUint16(a0 []byte, a1 uint16) []byte { + return W.WAppendUint16(a0, a1) +} +func (W _encoding_binary_AppendByteOrder) AppendUint32(a0 []byte, a1 uint32) []byte { + return W.WAppendUint32(a0, a1) +} +func (W _encoding_binary_AppendByteOrder) AppendUint64(a0 []byte, a1 uint64) []byte { + return W.WAppendUint64(a0, a1) +} +func (W _encoding_binary_AppendByteOrder) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} + +// _encoding_binary_ByteOrder is an interface wrapper for ByteOrder type +type _encoding_binary_ByteOrder struct { + IValue interface{} + WPutUint16 func(a0 []byte, a1 uint16) + WPutUint32 func(a0 []byte, a1 uint32) + WPutUint64 func(a0 []byte, a1 uint64) + WString func() string + WUint16 func(a0 []byte) uint16 + WUint32 func(a0 []byte) uint32 + WUint64 func(a0 []byte) uint64 +} + +func (W _encoding_binary_ByteOrder) PutUint16(a0 []byte, a1 uint16) { + W.WPutUint16(a0, a1) +} +func (W _encoding_binary_ByteOrder) PutUint32(a0 []byte, a1 uint32) { + W.WPutUint32(a0, a1) +} +func (W _encoding_binary_ByteOrder) PutUint64(a0 []byte, a1 uint64) { + W.WPutUint64(a0, a1) +} +func (W _encoding_binary_ByteOrder) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _encoding_binary_ByteOrder) Uint16(a0 []byte) uint16 { + return W.WUint16(a0) +} +func (W _encoding_binary_ByteOrder) Uint32(a0 []byte) uint32 { + return W.WUint32(a0) +} +func (W _encoding_binary_ByteOrder) Uint64(a0 []byte) uint64 { + return W.WUint64(a0) +} diff --git a/stdlib/go1_19_encoding_csv.go b/stdlib/go1_19_encoding_csv.go new file mode 100644 index 000000000..78da39b40 --- /dev/null +++ b/stdlib/go1_19_encoding_csv.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract encoding/csv'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/csv" + "reflect" +) + +func init() { + Symbols["encoding/csv/csv"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrBareQuote": reflect.ValueOf(&csv.ErrBareQuote).Elem(), + "ErrFieldCount": reflect.ValueOf(&csv.ErrFieldCount).Elem(), + "ErrQuote": reflect.ValueOf(&csv.ErrQuote).Elem(), + "ErrTrailingComma": reflect.ValueOf(&csv.ErrTrailingComma).Elem(), + "NewReader": reflect.ValueOf(csv.NewReader), + "NewWriter": reflect.ValueOf(csv.NewWriter), + + // type definitions + "ParseError": reflect.ValueOf((*csv.ParseError)(nil)), + "Reader": reflect.ValueOf((*csv.Reader)(nil)), + "Writer": reflect.ValueOf((*csv.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_gob.go b/stdlib/go1_19_encoding_gob.go new file mode 100644 index 000000000..a4f120a69 --- /dev/null +++ b/stdlib/go1_19_encoding_gob.go @@ -0,0 +1,52 @@ +// Code generated by 'yaegi extract encoding/gob'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/gob" + "reflect" +) + +func init() { + Symbols["encoding/gob/gob"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewDecoder": reflect.ValueOf(gob.NewDecoder), + "NewEncoder": reflect.ValueOf(gob.NewEncoder), + "Register": reflect.ValueOf(gob.Register), + "RegisterName": reflect.ValueOf(gob.RegisterName), + + // type definitions + "CommonType": reflect.ValueOf((*gob.CommonType)(nil)), + "Decoder": reflect.ValueOf((*gob.Decoder)(nil)), + "Encoder": reflect.ValueOf((*gob.Encoder)(nil)), + "GobDecoder": reflect.ValueOf((*gob.GobDecoder)(nil)), + "GobEncoder": reflect.ValueOf((*gob.GobEncoder)(nil)), + + // interface wrapper definitions + "_GobDecoder": reflect.ValueOf((*_encoding_gob_GobDecoder)(nil)), + "_GobEncoder": reflect.ValueOf((*_encoding_gob_GobEncoder)(nil)), + } +} + +// _encoding_gob_GobDecoder is an interface wrapper for GobDecoder type +type _encoding_gob_GobDecoder struct { + IValue interface{} + WGobDecode func(a0 []byte) error +} + +func (W _encoding_gob_GobDecoder) GobDecode(a0 []byte) error { + return W.WGobDecode(a0) +} + +// _encoding_gob_GobEncoder is an interface wrapper for GobEncoder type +type _encoding_gob_GobEncoder struct { + IValue interface{} + WGobEncode func() ([]byte, error) +} + +func (W _encoding_gob_GobEncoder) GobEncode() ([]byte, error) { + return W.WGobEncode() +} diff --git a/stdlib/go1_19_encoding_hex.go b/stdlib/go1_19_encoding_hex.go new file mode 100644 index 000000000..4de0b6b35 --- /dev/null +++ b/stdlib/go1_19_encoding_hex.go @@ -0,0 +1,31 @@ +// Code generated by 'yaegi extract encoding/hex'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/hex" + "reflect" +) + +func init() { + Symbols["encoding/hex/hex"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(hex.Decode), + "DecodeString": reflect.ValueOf(hex.DecodeString), + "DecodedLen": reflect.ValueOf(hex.DecodedLen), + "Dump": reflect.ValueOf(hex.Dump), + "Dumper": reflect.ValueOf(hex.Dumper), + "Encode": reflect.ValueOf(hex.Encode), + "EncodeToString": reflect.ValueOf(hex.EncodeToString), + "EncodedLen": reflect.ValueOf(hex.EncodedLen), + "ErrLength": reflect.ValueOf(&hex.ErrLength).Elem(), + "NewDecoder": reflect.ValueOf(hex.NewDecoder), + "NewEncoder": reflect.ValueOf(hex.NewEncoder), + + // type definitions + "InvalidByteError": reflect.ValueOf((*hex.InvalidByteError)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_json.go b/stdlib/go1_19_encoding_json.go new file mode 100644 index 000000000..726424817 --- /dev/null +++ b/stdlib/go1_19_encoding_json.go @@ -0,0 +1,74 @@ +// Code generated by 'yaegi extract encoding/json'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/json" + "reflect" +) + +func init() { + Symbols["encoding/json/json"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Compact": reflect.ValueOf(json.Compact), + "HTMLEscape": reflect.ValueOf(json.HTMLEscape), + "Indent": reflect.ValueOf(json.Indent), + "Marshal": reflect.ValueOf(json.Marshal), + "MarshalIndent": reflect.ValueOf(json.MarshalIndent), + "NewDecoder": reflect.ValueOf(json.NewDecoder), + "NewEncoder": reflect.ValueOf(json.NewEncoder), + "Unmarshal": reflect.ValueOf(json.Unmarshal), + "Valid": reflect.ValueOf(json.Valid), + + // type definitions + "Decoder": reflect.ValueOf((*json.Decoder)(nil)), + "Delim": reflect.ValueOf((*json.Delim)(nil)), + "Encoder": reflect.ValueOf((*json.Encoder)(nil)), + "InvalidUTF8Error": reflect.ValueOf((*json.InvalidUTF8Error)(nil)), + "InvalidUnmarshalError": reflect.ValueOf((*json.InvalidUnmarshalError)(nil)), + "Marshaler": reflect.ValueOf((*json.Marshaler)(nil)), + "MarshalerError": reflect.ValueOf((*json.MarshalerError)(nil)), + "Number": reflect.ValueOf((*json.Number)(nil)), + "RawMessage": reflect.ValueOf((*json.RawMessage)(nil)), + "SyntaxError": reflect.ValueOf((*json.SyntaxError)(nil)), + "Token": reflect.ValueOf((*json.Token)(nil)), + "UnmarshalFieldError": reflect.ValueOf((*json.UnmarshalFieldError)(nil)), + "UnmarshalTypeError": reflect.ValueOf((*json.UnmarshalTypeError)(nil)), + "Unmarshaler": reflect.ValueOf((*json.Unmarshaler)(nil)), + "UnsupportedTypeError": reflect.ValueOf((*json.UnsupportedTypeError)(nil)), + "UnsupportedValueError": reflect.ValueOf((*json.UnsupportedValueError)(nil)), + + // interface wrapper definitions + "_Marshaler": reflect.ValueOf((*_encoding_json_Marshaler)(nil)), + "_Token": reflect.ValueOf((*_encoding_json_Token)(nil)), + "_Unmarshaler": reflect.ValueOf((*_encoding_json_Unmarshaler)(nil)), + } +} + +// _encoding_json_Marshaler is an interface wrapper for Marshaler type +type _encoding_json_Marshaler struct { + IValue interface{} + WMarshalJSON func() ([]byte, error) +} + +func (W _encoding_json_Marshaler) MarshalJSON() ([]byte, error) { + return W.WMarshalJSON() +} + +// _encoding_json_Token is an interface wrapper for Token type +type _encoding_json_Token struct { + IValue interface{} +} + +// _encoding_json_Unmarshaler is an interface wrapper for Unmarshaler type +type _encoding_json_Unmarshaler struct { + IValue interface{} + WUnmarshalJSON func(a0 []byte) error +} + +func (W _encoding_json_Unmarshaler) UnmarshalJSON(a0 []byte) error { + return W.WUnmarshalJSON(a0) +} diff --git a/stdlib/go1_19_encoding_pem.go b/stdlib/go1_19_encoding_pem.go new file mode 100644 index 000000000..b00acbe74 --- /dev/null +++ b/stdlib/go1_19_encoding_pem.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract encoding/pem'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/pem" + "reflect" +) + +func init() { + Symbols["encoding/pem/pem"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(pem.Decode), + "Encode": reflect.ValueOf(pem.Encode), + "EncodeToMemory": reflect.ValueOf(pem.EncodeToMemory), + + // type definitions + "Block": reflect.ValueOf((*pem.Block)(nil)), + } +} diff --git a/stdlib/go1_19_encoding_xml.go b/stdlib/go1_19_encoding_xml.go new file mode 100644 index 000000000..9f0ab0ece --- /dev/null +++ b/stdlib/go1_19_encoding_xml.go @@ -0,0 +1,116 @@ +// Code generated by 'yaegi extract encoding/xml'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "encoding/xml" + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["encoding/xml/xml"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CopyToken": reflect.ValueOf(xml.CopyToken), + "Escape": reflect.ValueOf(xml.Escape), + "EscapeText": reflect.ValueOf(xml.EscapeText), + "HTMLAutoClose": reflect.ValueOf(&xml.HTMLAutoClose).Elem(), + "HTMLEntity": reflect.ValueOf(&xml.HTMLEntity).Elem(), + "Header": reflect.ValueOf(constant.MakeFromLiteral("\"\\n\"", token.STRING, 0)), + "Marshal": reflect.ValueOf(xml.Marshal), + "MarshalIndent": reflect.ValueOf(xml.MarshalIndent), + "NewDecoder": reflect.ValueOf(xml.NewDecoder), + "NewEncoder": reflect.ValueOf(xml.NewEncoder), + "NewTokenDecoder": reflect.ValueOf(xml.NewTokenDecoder), + "Unmarshal": reflect.ValueOf(xml.Unmarshal), + + // type definitions + "Attr": reflect.ValueOf((*xml.Attr)(nil)), + "CharData": reflect.ValueOf((*xml.CharData)(nil)), + "Comment": reflect.ValueOf((*xml.Comment)(nil)), + "Decoder": reflect.ValueOf((*xml.Decoder)(nil)), + "Directive": reflect.ValueOf((*xml.Directive)(nil)), + "Encoder": reflect.ValueOf((*xml.Encoder)(nil)), + "EndElement": reflect.ValueOf((*xml.EndElement)(nil)), + "Marshaler": reflect.ValueOf((*xml.Marshaler)(nil)), + "MarshalerAttr": reflect.ValueOf((*xml.MarshalerAttr)(nil)), + "Name": reflect.ValueOf((*xml.Name)(nil)), + "ProcInst": reflect.ValueOf((*xml.ProcInst)(nil)), + "StartElement": reflect.ValueOf((*xml.StartElement)(nil)), + "SyntaxError": reflect.ValueOf((*xml.SyntaxError)(nil)), + "TagPathError": reflect.ValueOf((*xml.TagPathError)(nil)), + "Token": reflect.ValueOf((*xml.Token)(nil)), + "TokenReader": reflect.ValueOf((*xml.TokenReader)(nil)), + "UnmarshalError": reflect.ValueOf((*xml.UnmarshalError)(nil)), + "Unmarshaler": reflect.ValueOf((*xml.Unmarshaler)(nil)), + "UnmarshalerAttr": reflect.ValueOf((*xml.UnmarshalerAttr)(nil)), + "UnsupportedTypeError": reflect.ValueOf((*xml.UnsupportedTypeError)(nil)), + + // interface wrapper definitions + "_Marshaler": reflect.ValueOf((*_encoding_xml_Marshaler)(nil)), + "_MarshalerAttr": reflect.ValueOf((*_encoding_xml_MarshalerAttr)(nil)), + "_Token": reflect.ValueOf((*_encoding_xml_Token)(nil)), + "_TokenReader": reflect.ValueOf((*_encoding_xml_TokenReader)(nil)), + "_Unmarshaler": reflect.ValueOf((*_encoding_xml_Unmarshaler)(nil)), + "_UnmarshalerAttr": reflect.ValueOf((*_encoding_xml_UnmarshalerAttr)(nil)), + } +} + +// _encoding_xml_Marshaler is an interface wrapper for Marshaler type +type _encoding_xml_Marshaler struct { + IValue interface{} + WMarshalXML func(e *xml.Encoder, start xml.StartElement) error +} + +func (W _encoding_xml_Marshaler) MarshalXML(e *xml.Encoder, start xml.StartElement) error { + return W.WMarshalXML(e, start) +} + +// _encoding_xml_MarshalerAttr is an interface wrapper for MarshalerAttr type +type _encoding_xml_MarshalerAttr struct { + IValue interface{} + WMarshalXMLAttr func(name xml.Name) (xml.Attr, error) +} + +func (W _encoding_xml_MarshalerAttr) MarshalXMLAttr(name xml.Name) (xml.Attr, error) { + return W.WMarshalXMLAttr(name) +} + +// _encoding_xml_Token is an interface wrapper for Token type +type _encoding_xml_Token struct { + IValue interface{} +} + +// _encoding_xml_TokenReader is an interface wrapper for TokenReader type +type _encoding_xml_TokenReader struct { + IValue interface{} + WToken func() (xml.Token, error) +} + +func (W _encoding_xml_TokenReader) Token() (xml.Token, error) { + return W.WToken() +} + +// _encoding_xml_Unmarshaler is an interface wrapper for Unmarshaler type +type _encoding_xml_Unmarshaler struct { + IValue interface{} + WUnmarshalXML func(d *xml.Decoder, start xml.StartElement) error +} + +func (W _encoding_xml_Unmarshaler) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error { + return W.WUnmarshalXML(d, start) +} + +// _encoding_xml_UnmarshalerAttr is an interface wrapper for UnmarshalerAttr type +type _encoding_xml_UnmarshalerAttr struct { + IValue interface{} + WUnmarshalXMLAttr func(attr xml.Attr) error +} + +func (W _encoding_xml_UnmarshalerAttr) UnmarshalXMLAttr(attr xml.Attr) error { + return W.WUnmarshalXMLAttr(attr) +} diff --git a/stdlib/go1_19_errors.go b/stdlib/go1_19_errors.go new file mode 100644 index 000000000..8c68bc20d --- /dev/null +++ b/stdlib/go1_19_errors.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract errors'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "errors" + "reflect" +) + +func init() { + Symbols["errors/errors"] = map[string]reflect.Value{ + // function, constant and variable definitions + "As": reflect.ValueOf(errors.As), + "Is": reflect.ValueOf(errors.Is), + "New": reflect.ValueOf(errors.New), + "Unwrap": reflect.ValueOf(errors.Unwrap), + } +} diff --git a/stdlib/go1_19_expvar.go b/stdlib/go1_19_expvar.go new file mode 100644 index 000000000..2e39249c7 --- /dev/null +++ b/stdlib/go1_19_expvar.go @@ -0,0 +1,50 @@ +// Code generated by 'yaegi extract expvar'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "expvar" + "reflect" +) + +func init() { + Symbols["expvar/expvar"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Do": reflect.ValueOf(expvar.Do), + "Get": reflect.ValueOf(expvar.Get), + "Handler": reflect.ValueOf(expvar.Handler), + "NewFloat": reflect.ValueOf(expvar.NewFloat), + "NewInt": reflect.ValueOf(expvar.NewInt), + "NewMap": reflect.ValueOf(expvar.NewMap), + "NewString": reflect.ValueOf(expvar.NewString), + "Publish": reflect.ValueOf(expvar.Publish), + + // type definitions + "Float": reflect.ValueOf((*expvar.Float)(nil)), + "Func": reflect.ValueOf((*expvar.Func)(nil)), + "Int": reflect.ValueOf((*expvar.Int)(nil)), + "KeyValue": reflect.ValueOf((*expvar.KeyValue)(nil)), + "Map": reflect.ValueOf((*expvar.Map)(nil)), + "String": reflect.ValueOf((*expvar.String)(nil)), + "Var": reflect.ValueOf((*expvar.Var)(nil)), + + // interface wrapper definitions + "_Var": reflect.ValueOf((*_expvar_Var)(nil)), + } +} + +// _expvar_Var is an interface wrapper for Var type +type _expvar_Var struct { + IValue interface{} + WString func() string +} + +func (W _expvar_Var) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_flag.go b/stdlib/go1_19_flag.go new file mode 100644 index 000000000..8633a62dc --- /dev/null +++ b/stdlib/go1_19_flag.go @@ -0,0 +1,104 @@ +// Code generated by 'yaegi extract flag'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "flag" + "reflect" +) + +func init() { + Symbols["flag/flag"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Arg": reflect.ValueOf(flag.Arg), + "Args": reflect.ValueOf(flag.Args), + "Bool": reflect.ValueOf(flag.Bool), + "BoolVar": reflect.ValueOf(flag.BoolVar), + "CommandLine": reflect.ValueOf(&flag.CommandLine).Elem(), + "ContinueOnError": reflect.ValueOf(flag.ContinueOnError), + "Duration": reflect.ValueOf(flag.Duration), + "DurationVar": reflect.ValueOf(flag.DurationVar), + "ErrHelp": reflect.ValueOf(&flag.ErrHelp).Elem(), + "ExitOnError": reflect.ValueOf(flag.ExitOnError), + "Float64": reflect.ValueOf(flag.Float64), + "Float64Var": reflect.ValueOf(flag.Float64Var), + "Func": reflect.ValueOf(flag.Func), + "Int": reflect.ValueOf(flag.Int), + "Int64": reflect.ValueOf(flag.Int64), + "Int64Var": reflect.ValueOf(flag.Int64Var), + "IntVar": reflect.ValueOf(flag.IntVar), + "Lookup": reflect.ValueOf(flag.Lookup), + "NArg": reflect.ValueOf(flag.NArg), + "NFlag": reflect.ValueOf(flag.NFlag), + "NewFlagSet": reflect.ValueOf(flag.NewFlagSet), + "PanicOnError": reflect.ValueOf(flag.PanicOnError), + "Parse": reflect.ValueOf(flag.Parse), + "Parsed": reflect.ValueOf(flag.Parsed), + "PrintDefaults": reflect.ValueOf(flag.PrintDefaults), + "Set": reflect.ValueOf(flag.Set), + "String": reflect.ValueOf(flag.String), + "StringVar": reflect.ValueOf(flag.StringVar), + "TextVar": reflect.ValueOf(flag.TextVar), + "Uint": reflect.ValueOf(flag.Uint), + "Uint64": reflect.ValueOf(flag.Uint64), + "Uint64Var": reflect.ValueOf(flag.Uint64Var), + "UintVar": reflect.ValueOf(flag.UintVar), + "UnquoteUsage": reflect.ValueOf(flag.UnquoteUsage), + "Usage": reflect.ValueOf(&flag.Usage).Elem(), + "Var": reflect.ValueOf(flag.Var), + "Visit": reflect.ValueOf(flag.Visit), + "VisitAll": reflect.ValueOf(flag.VisitAll), + + // type definitions + "ErrorHandling": reflect.ValueOf((*flag.ErrorHandling)(nil)), + "Flag": reflect.ValueOf((*flag.Flag)(nil)), + "FlagSet": reflect.ValueOf((*flag.FlagSet)(nil)), + "Getter": reflect.ValueOf((*flag.Getter)(nil)), + "Value": reflect.ValueOf((*flag.Value)(nil)), + + // interface wrapper definitions + "_Getter": reflect.ValueOf((*_flag_Getter)(nil)), + "_Value": reflect.ValueOf((*_flag_Value)(nil)), + } +} + +// _flag_Getter is an interface wrapper for Getter type +type _flag_Getter struct { + IValue interface{} + WGet func() any + WSet func(a0 string) error + WString func() string +} + +func (W _flag_Getter) Get() any { + return W.WGet() +} +func (W _flag_Getter) Set(a0 string) error { + return W.WSet(a0) +} +func (W _flag_Getter) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} + +// _flag_Value is an interface wrapper for Value type +type _flag_Value struct { + IValue interface{} + WSet func(a0 string) error + WString func() string +} + +func (W _flag_Value) Set(a0 string) error { + return W.WSet(a0) +} +func (W _flag_Value) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_fmt.go b/stdlib/go1_19_fmt.go new file mode 100644 index 000000000..cd58f1446 --- /dev/null +++ b/stdlib/go1_19_fmt.go @@ -0,0 +1,150 @@ +// Code generated by 'yaegi extract fmt'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "fmt" + "reflect" +) + +func init() { + Symbols["fmt/fmt"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Append": reflect.ValueOf(fmt.Append), + "Appendf": reflect.ValueOf(fmt.Appendf), + "Appendln": reflect.ValueOf(fmt.Appendln), + "Errorf": reflect.ValueOf(fmt.Errorf), + "Fprint": reflect.ValueOf(fmt.Fprint), + "Fprintf": reflect.ValueOf(fmt.Fprintf), + "Fprintln": reflect.ValueOf(fmt.Fprintln), + "Fscan": reflect.ValueOf(fmt.Fscan), + "Fscanf": reflect.ValueOf(fmt.Fscanf), + "Fscanln": reflect.ValueOf(fmt.Fscanln), + "Print": reflect.ValueOf(fmt.Print), + "Printf": reflect.ValueOf(fmt.Printf), + "Println": reflect.ValueOf(fmt.Println), + "Scan": reflect.ValueOf(fmt.Scan), + "Scanf": reflect.ValueOf(fmt.Scanf), + "Scanln": reflect.ValueOf(fmt.Scanln), + "Sprint": reflect.ValueOf(fmt.Sprint), + "Sprintf": reflect.ValueOf(fmt.Sprintf), + "Sprintln": reflect.ValueOf(fmt.Sprintln), + "Sscan": reflect.ValueOf(fmt.Sscan), + "Sscanf": reflect.ValueOf(fmt.Sscanf), + "Sscanln": reflect.ValueOf(fmt.Sscanln), + + // type definitions + "Formatter": reflect.ValueOf((*fmt.Formatter)(nil)), + "GoStringer": reflect.ValueOf((*fmt.GoStringer)(nil)), + "ScanState": reflect.ValueOf((*fmt.ScanState)(nil)), + "Scanner": reflect.ValueOf((*fmt.Scanner)(nil)), + "State": reflect.ValueOf((*fmt.State)(nil)), + "Stringer": reflect.ValueOf((*fmt.Stringer)(nil)), + + // interface wrapper definitions + "_Formatter": reflect.ValueOf((*_fmt_Formatter)(nil)), + "_GoStringer": reflect.ValueOf((*_fmt_GoStringer)(nil)), + "_ScanState": reflect.ValueOf((*_fmt_ScanState)(nil)), + "_Scanner": reflect.ValueOf((*_fmt_Scanner)(nil)), + "_State": reflect.ValueOf((*_fmt_State)(nil)), + "_Stringer": reflect.ValueOf((*_fmt_Stringer)(nil)), + } +} + +// _fmt_Formatter is an interface wrapper for Formatter type +type _fmt_Formatter struct { + IValue interface{} + WFormat func(f fmt.State, verb rune) +} + +func (W _fmt_Formatter) Format(f fmt.State, verb rune) { + W.WFormat(f, verb) +} + +// _fmt_GoStringer is an interface wrapper for GoStringer type +type _fmt_GoStringer struct { + IValue interface{} + WGoString func() string +} + +func (W _fmt_GoStringer) GoString() string { + return W.WGoString() +} + +// _fmt_ScanState is an interface wrapper for ScanState type +type _fmt_ScanState struct { + IValue interface{} + WRead func(buf []byte) (n int, err error) + WReadRune func() (r rune, size int, err error) + WSkipSpace func() + WToken func(skipSpace bool, f func(rune) bool) (token []byte, err error) + WUnreadRune func() error + WWidth func() (wid int, ok bool) +} + +func (W _fmt_ScanState) Read(buf []byte) (n int, err error) { + return W.WRead(buf) +} +func (W _fmt_ScanState) ReadRune() (r rune, size int, err error) { + return W.WReadRune() +} +func (W _fmt_ScanState) SkipSpace() { + W.WSkipSpace() +} +func (W _fmt_ScanState) Token(skipSpace bool, f func(rune) bool) (token []byte, err error) { + return W.WToken(skipSpace, f) +} +func (W _fmt_ScanState) UnreadRune() error { + return W.WUnreadRune() +} +func (W _fmt_ScanState) Width() (wid int, ok bool) { + return W.WWidth() +} + +// _fmt_Scanner is an interface wrapper for Scanner type +type _fmt_Scanner struct { + IValue interface{} + WScan func(state fmt.ScanState, verb rune) error +} + +func (W _fmt_Scanner) Scan(state fmt.ScanState, verb rune) error { + return W.WScan(state, verb) +} + +// _fmt_State is an interface wrapper for State type +type _fmt_State struct { + IValue interface{} + WFlag func(c int) bool + WPrecision func() (prec int, ok bool) + WWidth func() (wid int, ok bool) + WWrite func(b []byte) (n int, err error) +} + +func (W _fmt_State) Flag(c int) bool { + return W.WFlag(c) +} +func (W _fmt_State) Precision() (prec int, ok bool) { + return W.WPrecision() +} +func (W _fmt_State) Width() (wid int, ok bool) { + return W.WWidth() +} +func (W _fmt_State) Write(b []byte) (n int, err error) { + return W.WWrite(b) +} + +// _fmt_Stringer is an interface wrapper for Stringer type +type _fmt_Stringer struct { + IValue interface{} + WString func() string +} + +func (W _fmt_Stringer) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_go_ast.go b/stdlib/go1_19_go_ast.go new file mode 100644 index 000000000..0e7b4c4ae --- /dev/null +++ b/stdlib/go1_19_go_ast.go @@ -0,0 +1,209 @@ +// Code generated by 'yaegi extract go/ast'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/ast" + "go/token" + "reflect" +) + +func init() { + Symbols["go/ast/ast"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Bad": reflect.ValueOf(ast.Bad), + "Con": reflect.ValueOf(ast.Con), + "FileExports": reflect.ValueOf(ast.FileExports), + "FilterDecl": reflect.ValueOf(ast.FilterDecl), + "FilterFile": reflect.ValueOf(ast.FilterFile), + "FilterFuncDuplicates": reflect.ValueOf(ast.FilterFuncDuplicates), + "FilterImportDuplicates": reflect.ValueOf(ast.FilterImportDuplicates), + "FilterPackage": reflect.ValueOf(ast.FilterPackage), + "FilterUnassociatedComments": reflect.ValueOf(ast.FilterUnassociatedComments), + "Fprint": reflect.ValueOf(ast.Fprint), + "Fun": reflect.ValueOf(ast.Fun), + "Inspect": reflect.ValueOf(ast.Inspect), + "IsExported": reflect.ValueOf(ast.IsExported), + "Lbl": reflect.ValueOf(ast.Lbl), + "MergePackageFiles": reflect.ValueOf(ast.MergePackageFiles), + "NewCommentMap": reflect.ValueOf(ast.NewCommentMap), + "NewIdent": reflect.ValueOf(ast.NewIdent), + "NewObj": reflect.ValueOf(ast.NewObj), + "NewPackage": reflect.ValueOf(ast.NewPackage), + "NewScope": reflect.ValueOf(ast.NewScope), + "NotNilFilter": reflect.ValueOf(ast.NotNilFilter), + "PackageExports": reflect.ValueOf(ast.PackageExports), + "Pkg": reflect.ValueOf(ast.Pkg), + "Print": reflect.ValueOf(ast.Print), + "RECV": reflect.ValueOf(ast.RECV), + "SEND": reflect.ValueOf(ast.SEND), + "SortImports": reflect.ValueOf(ast.SortImports), + "Typ": reflect.ValueOf(ast.Typ), + "Var": reflect.ValueOf(ast.Var), + "Walk": reflect.ValueOf(ast.Walk), + + // type definitions + "ArrayType": reflect.ValueOf((*ast.ArrayType)(nil)), + "AssignStmt": reflect.ValueOf((*ast.AssignStmt)(nil)), + "BadDecl": reflect.ValueOf((*ast.BadDecl)(nil)), + "BadExpr": reflect.ValueOf((*ast.BadExpr)(nil)), + "BadStmt": reflect.ValueOf((*ast.BadStmt)(nil)), + "BasicLit": reflect.ValueOf((*ast.BasicLit)(nil)), + "BinaryExpr": reflect.ValueOf((*ast.BinaryExpr)(nil)), + "BlockStmt": reflect.ValueOf((*ast.BlockStmt)(nil)), + "BranchStmt": reflect.ValueOf((*ast.BranchStmt)(nil)), + "CallExpr": reflect.ValueOf((*ast.CallExpr)(nil)), + "CaseClause": reflect.ValueOf((*ast.CaseClause)(nil)), + "ChanDir": reflect.ValueOf((*ast.ChanDir)(nil)), + "ChanType": reflect.ValueOf((*ast.ChanType)(nil)), + "CommClause": reflect.ValueOf((*ast.CommClause)(nil)), + "Comment": reflect.ValueOf((*ast.Comment)(nil)), + "CommentGroup": reflect.ValueOf((*ast.CommentGroup)(nil)), + "CommentMap": reflect.ValueOf((*ast.CommentMap)(nil)), + "CompositeLit": reflect.ValueOf((*ast.CompositeLit)(nil)), + "Decl": reflect.ValueOf((*ast.Decl)(nil)), + "DeclStmt": reflect.ValueOf((*ast.DeclStmt)(nil)), + "DeferStmt": reflect.ValueOf((*ast.DeferStmt)(nil)), + "Ellipsis": reflect.ValueOf((*ast.Ellipsis)(nil)), + "EmptyStmt": reflect.ValueOf((*ast.EmptyStmt)(nil)), + "Expr": reflect.ValueOf((*ast.Expr)(nil)), + "ExprStmt": reflect.ValueOf((*ast.ExprStmt)(nil)), + "Field": reflect.ValueOf((*ast.Field)(nil)), + "FieldFilter": reflect.ValueOf((*ast.FieldFilter)(nil)), + "FieldList": reflect.ValueOf((*ast.FieldList)(nil)), + "File": reflect.ValueOf((*ast.File)(nil)), + "Filter": reflect.ValueOf((*ast.Filter)(nil)), + "ForStmt": reflect.ValueOf((*ast.ForStmt)(nil)), + "FuncDecl": reflect.ValueOf((*ast.FuncDecl)(nil)), + "FuncLit": reflect.ValueOf((*ast.FuncLit)(nil)), + "FuncType": reflect.ValueOf((*ast.FuncType)(nil)), + "GenDecl": reflect.ValueOf((*ast.GenDecl)(nil)), + "GoStmt": reflect.ValueOf((*ast.GoStmt)(nil)), + "Ident": reflect.ValueOf((*ast.Ident)(nil)), + "IfStmt": reflect.ValueOf((*ast.IfStmt)(nil)), + "ImportSpec": reflect.ValueOf((*ast.ImportSpec)(nil)), + "Importer": reflect.ValueOf((*ast.Importer)(nil)), + "IncDecStmt": reflect.ValueOf((*ast.IncDecStmt)(nil)), + "IndexExpr": reflect.ValueOf((*ast.IndexExpr)(nil)), + "IndexListExpr": reflect.ValueOf((*ast.IndexListExpr)(nil)), + "InterfaceType": reflect.ValueOf((*ast.InterfaceType)(nil)), + "KeyValueExpr": reflect.ValueOf((*ast.KeyValueExpr)(nil)), + "LabeledStmt": reflect.ValueOf((*ast.LabeledStmt)(nil)), + "MapType": reflect.ValueOf((*ast.MapType)(nil)), + "MergeMode": reflect.ValueOf((*ast.MergeMode)(nil)), + "Node": reflect.ValueOf((*ast.Node)(nil)), + "ObjKind": reflect.ValueOf((*ast.ObjKind)(nil)), + "Object": reflect.ValueOf((*ast.Object)(nil)), + "Package": reflect.ValueOf((*ast.Package)(nil)), + "ParenExpr": reflect.ValueOf((*ast.ParenExpr)(nil)), + "RangeStmt": reflect.ValueOf((*ast.RangeStmt)(nil)), + "ReturnStmt": reflect.ValueOf((*ast.ReturnStmt)(nil)), + "Scope": reflect.ValueOf((*ast.Scope)(nil)), + "SelectStmt": reflect.ValueOf((*ast.SelectStmt)(nil)), + "SelectorExpr": reflect.ValueOf((*ast.SelectorExpr)(nil)), + "SendStmt": reflect.ValueOf((*ast.SendStmt)(nil)), + "SliceExpr": reflect.ValueOf((*ast.SliceExpr)(nil)), + "Spec": reflect.ValueOf((*ast.Spec)(nil)), + "StarExpr": reflect.ValueOf((*ast.StarExpr)(nil)), + "Stmt": reflect.ValueOf((*ast.Stmt)(nil)), + "StructType": reflect.ValueOf((*ast.StructType)(nil)), + "SwitchStmt": reflect.ValueOf((*ast.SwitchStmt)(nil)), + "TypeAssertExpr": reflect.ValueOf((*ast.TypeAssertExpr)(nil)), + "TypeSpec": reflect.ValueOf((*ast.TypeSpec)(nil)), + "TypeSwitchStmt": reflect.ValueOf((*ast.TypeSwitchStmt)(nil)), + "UnaryExpr": reflect.ValueOf((*ast.UnaryExpr)(nil)), + "ValueSpec": reflect.ValueOf((*ast.ValueSpec)(nil)), + "Visitor": reflect.ValueOf((*ast.Visitor)(nil)), + + // interface wrapper definitions + "_Decl": reflect.ValueOf((*_go_ast_Decl)(nil)), + "_Expr": reflect.ValueOf((*_go_ast_Expr)(nil)), + "_Node": reflect.ValueOf((*_go_ast_Node)(nil)), + "_Spec": reflect.ValueOf((*_go_ast_Spec)(nil)), + "_Stmt": reflect.ValueOf((*_go_ast_Stmt)(nil)), + "_Visitor": reflect.ValueOf((*_go_ast_Visitor)(nil)), + } +} + +// _go_ast_Decl is an interface wrapper for Decl type +type _go_ast_Decl struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Decl) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Decl) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Expr is an interface wrapper for Expr type +type _go_ast_Expr struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Expr) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Expr) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Node is an interface wrapper for Node type +type _go_ast_Node struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Node) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Node) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Spec is an interface wrapper for Spec type +type _go_ast_Spec struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Spec) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Spec) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Stmt is an interface wrapper for Stmt type +type _go_ast_Stmt struct { + IValue interface{} + WEnd func() token.Pos + WPos func() token.Pos +} + +func (W _go_ast_Stmt) End() token.Pos { + return W.WEnd() +} +func (W _go_ast_Stmt) Pos() token.Pos { + return W.WPos() +} + +// _go_ast_Visitor is an interface wrapper for Visitor type +type _go_ast_Visitor struct { + IValue interface{} + WVisit func(node ast.Node) (w ast.Visitor) +} + +func (W _go_ast_Visitor) Visit(node ast.Node) (w ast.Visitor) { + return W.WVisit(node) +} diff --git a/stdlib/go1_19_go_build.go b/stdlib/go1_19_go_build.go new file mode 100644 index 000000000..7b35cb8db --- /dev/null +++ b/stdlib/go1_19_go_build.go @@ -0,0 +1,34 @@ +// Code generated by 'yaegi extract go/build'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/build" + "reflect" +) + +func init() { + Symbols["go/build/build"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllowBinary": reflect.ValueOf(build.AllowBinary), + "ArchChar": reflect.ValueOf(build.ArchChar), + "Default": reflect.ValueOf(&build.Default).Elem(), + "FindOnly": reflect.ValueOf(build.FindOnly), + "IgnoreVendor": reflect.ValueOf(build.IgnoreVendor), + "Import": reflect.ValueOf(build.Import), + "ImportComment": reflect.ValueOf(build.ImportComment), + "ImportDir": reflect.ValueOf(build.ImportDir), + "IsLocalImport": reflect.ValueOf(build.IsLocalImport), + "ToolDir": reflect.ValueOf(&build.ToolDir).Elem(), + + // type definitions + "Context": reflect.ValueOf((*build.Context)(nil)), + "ImportMode": reflect.ValueOf((*build.ImportMode)(nil)), + "MultiplePackageError": reflect.ValueOf((*build.MultiplePackageError)(nil)), + "NoGoError": reflect.ValueOf((*build.NoGoError)(nil)), + "Package": reflect.ValueOf((*build.Package)(nil)), + } +} diff --git a/stdlib/go1_19_go_build_constraint.go b/stdlib/go1_19_go_build_constraint.go new file mode 100644 index 000000000..f55190e03 --- /dev/null +++ b/stdlib/go1_19_go_build_constraint.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract go/build/constraint'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/build/constraint" + "reflect" +) + +func init() { + Symbols["go/build/constraint/constraint"] = map[string]reflect.Value{ + // function, constant and variable definitions + "IsGoBuild": reflect.ValueOf(constraint.IsGoBuild), + "IsPlusBuild": reflect.ValueOf(constraint.IsPlusBuild), + "Parse": reflect.ValueOf(constraint.Parse), + "PlusBuildLines": reflect.ValueOf(constraint.PlusBuildLines), + + // type definitions + "AndExpr": reflect.ValueOf((*constraint.AndExpr)(nil)), + "Expr": reflect.ValueOf((*constraint.Expr)(nil)), + "NotExpr": reflect.ValueOf((*constraint.NotExpr)(nil)), + "OrExpr": reflect.ValueOf((*constraint.OrExpr)(nil)), + "SyntaxError": reflect.ValueOf((*constraint.SyntaxError)(nil)), + "TagExpr": reflect.ValueOf((*constraint.TagExpr)(nil)), + + // interface wrapper definitions + "_Expr": reflect.ValueOf((*_go_build_constraint_Expr)(nil)), + } +} + +// _go_build_constraint_Expr is an interface wrapper for Expr type +type _go_build_constraint_Expr struct { + IValue interface{} + WEval func(ok func(tag string) bool) bool + WString func() string +} + +func (W _go_build_constraint_Expr) Eval(ok func(tag string) bool) bool { + return W.WEval(ok) +} +func (W _go_build_constraint_Expr) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_go_constant.go b/stdlib/go1_19_go_constant.go new file mode 100644 index 000000000..d47752cbd --- /dev/null +++ b/stdlib/go1_19_go_constant.go @@ -0,0 +1,82 @@ +// Code generated by 'yaegi extract go/constant'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "reflect" +) + +func init() { + Symbols["go/constant/constant"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BinaryOp": reflect.ValueOf(constant.BinaryOp), + "BitLen": reflect.ValueOf(constant.BitLen), + "Bool": reflect.ValueOf(constant.Bool), + "BoolVal": reflect.ValueOf(constant.BoolVal), + "Bytes": reflect.ValueOf(constant.Bytes), + "Compare": reflect.ValueOf(constant.Compare), + "Complex": reflect.ValueOf(constant.Complex), + "Denom": reflect.ValueOf(constant.Denom), + "Float": reflect.ValueOf(constant.Float), + "Float32Val": reflect.ValueOf(constant.Float32Val), + "Float64Val": reflect.ValueOf(constant.Float64Val), + "Imag": reflect.ValueOf(constant.Imag), + "Int": reflect.ValueOf(constant.Int), + "Int64Val": reflect.ValueOf(constant.Int64Val), + "Make": reflect.ValueOf(constant.Make), + "MakeBool": reflect.ValueOf(constant.MakeBool), + "MakeFloat64": reflect.ValueOf(constant.MakeFloat64), + "MakeFromBytes": reflect.ValueOf(constant.MakeFromBytes), + "MakeFromLiteral": reflect.ValueOf(constant.MakeFromLiteral), + "MakeImag": reflect.ValueOf(constant.MakeImag), + "MakeInt64": reflect.ValueOf(constant.MakeInt64), + "MakeString": reflect.ValueOf(constant.MakeString), + "MakeUint64": reflect.ValueOf(constant.MakeUint64), + "MakeUnknown": reflect.ValueOf(constant.MakeUnknown), + "Num": reflect.ValueOf(constant.Num), + "Real": reflect.ValueOf(constant.Real), + "Shift": reflect.ValueOf(constant.Shift), + "Sign": reflect.ValueOf(constant.Sign), + "String": reflect.ValueOf(constant.String), + "StringVal": reflect.ValueOf(constant.StringVal), + "ToComplex": reflect.ValueOf(constant.ToComplex), + "ToFloat": reflect.ValueOf(constant.ToFloat), + "ToInt": reflect.ValueOf(constant.ToInt), + "Uint64Val": reflect.ValueOf(constant.Uint64Val), + "UnaryOp": reflect.ValueOf(constant.UnaryOp), + "Unknown": reflect.ValueOf(constant.Unknown), + "Val": reflect.ValueOf(constant.Val), + + // type definitions + "Kind": reflect.ValueOf((*constant.Kind)(nil)), + "Value": reflect.ValueOf((*constant.Value)(nil)), + + // interface wrapper definitions + "_Value": reflect.ValueOf((*_go_constant_Value)(nil)), + } +} + +// _go_constant_Value is an interface wrapper for Value type +type _go_constant_Value struct { + IValue interface{} + WExactString func() string + WKind func() constant.Kind + WString func() string +} + +func (W _go_constant_Value) ExactString() string { + return W.WExactString() +} +func (W _go_constant_Value) Kind() constant.Kind { + return W.WKind() +} +func (W _go_constant_Value) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_go_doc.go b/stdlib/go1_19_go_doc.go new file mode 100644 index 000000000..1fbb034a5 --- /dev/null +++ b/stdlib/go1_19_go_doc.go @@ -0,0 +1,38 @@ +// Code generated by 'yaegi extract go/doc'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/doc" + "reflect" +) + +func init() { + Symbols["go/doc/doc"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllDecls": reflect.ValueOf(doc.AllDecls), + "AllMethods": reflect.ValueOf(doc.AllMethods), + "Examples": reflect.ValueOf(doc.Examples), + "IllegalPrefixes": reflect.ValueOf(&doc.IllegalPrefixes).Elem(), + "IsPredeclared": reflect.ValueOf(doc.IsPredeclared), + "New": reflect.ValueOf(doc.New), + "NewFromFiles": reflect.ValueOf(doc.NewFromFiles), + "PreserveAST": reflect.ValueOf(doc.PreserveAST), + "Synopsis": reflect.ValueOf(doc.Synopsis), + "ToHTML": reflect.ValueOf(doc.ToHTML), + "ToText": reflect.ValueOf(doc.ToText), + + // type definitions + "Example": reflect.ValueOf((*doc.Example)(nil)), + "Filter": reflect.ValueOf((*doc.Filter)(nil)), + "Func": reflect.ValueOf((*doc.Func)(nil)), + "Mode": reflect.ValueOf((*doc.Mode)(nil)), + "Note": reflect.ValueOf((*doc.Note)(nil)), + "Package": reflect.ValueOf((*doc.Package)(nil)), + "Type": reflect.ValueOf((*doc.Type)(nil)), + "Value": reflect.ValueOf((*doc.Value)(nil)), + } +} diff --git a/stdlib/go1_19_go_format.go b/stdlib/go1_19_go_format.go new file mode 100644 index 000000000..aa9d67ab2 --- /dev/null +++ b/stdlib/go1_19_go_format.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract go/format'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/format" + "reflect" +) + +func init() { + Symbols["go/format/format"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Node": reflect.ValueOf(format.Node), + "Source": reflect.ValueOf(format.Source), + } +} diff --git a/stdlib/go1_19_go_importer.go b/stdlib/go1_19_go_importer.go new file mode 100644 index 000000000..b64c01abf --- /dev/null +++ b/stdlib/go1_19_go_importer.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract go/importer'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/importer" + "reflect" +) + +func init() { + Symbols["go/importer/importer"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Default": reflect.ValueOf(importer.Default), + "For": reflect.ValueOf(importer.For), + "ForCompiler": reflect.ValueOf(importer.ForCompiler), + + // type definitions + "Lookup": reflect.ValueOf((*importer.Lookup)(nil)), + } +} diff --git a/stdlib/go1_19_go_parser.go b/stdlib/go1_19_go_parser.go new file mode 100644 index 000000000..4aef2e204 --- /dev/null +++ b/stdlib/go1_19_go_parser.go @@ -0,0 +1,32 @@ +// Code generated by 'yaegi extract go/parser'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/parser" + "reflect" +) + +func init() { + Symbols["go/parser/parser"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllErrors": reflect.ValueOf(parser.AllErrors), + "DeclarationErrors": reflect.ValueOf(parser.DeclarationErrors), + "ImportsOnly": reflect.ValueOf(parser.ImportsOnly), + "PackageClauseOnly": reflect.ValueOf(parser.PackageClauseOnly), + "ParseComments": reflect.ValueOf(parser.ParseComments), + "ParseDir": reflect.ValueOf(parser.ParseDir), + "ParseExpr": reflect.ValueOf(parser.ParseExpr), + "ParseExprFrom": reflect.ValueOf(parser.ParseExprFrom), + "ParseFile": reflect.ValueOf(parser.ParseFile), + "SkipObjectResolution": reflect.ValueOf(parser.SkipObjectResolution), + "SpuriousErrors": reflect.ValueOf(parser.SpuriousErrors), + "Trace": reflect.ValueOf(parser.Trace), + + // type definitions + "Mode": reflect.ValueOf((*parser.Mode)(nil)), + } +} diff --git a/stdlib/go1_19_go_printer.go b/stdlib/go1_19_go_printer.go new file mode 100644 index 000000000..0876e1396 --- /dev/null +++ b/stdlib/go1_19_go_printer.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract go/printer'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/printer" + "reflect" +) + +func init() { + Symbols["go/printer/printer"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Fprint": reflect.ValueOf(printer.Fprint), + "RawFormat": reflect.ValueOf(printer.RawFormat), + "SourcePos": reflect.ValueOf(printer.SourcePos), + "TabIndent": reflect.ValueOf(printer.TabIndent), + "UseSpaces": reflect.ValueOf(printer.UseSpaces), + + // type definitions + "CommentedNode": reflect.ValueOf((*printer.CommentedNode)(nil)), + "Config": reflect.ValueOf((*printer.Config)(nil)), + "Mode": reflect.ValueOf((*printer.Mode)(nil)), + } +} diff --git a/stdlib/go1_19_go_scanner.go b/stdlib/go1_19_go_scanner.go new file mode 100644 index 000000000..467dbd6ba --- /dev/null +++ b/stdlib/go1_19_go_scanner.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract go/scanner'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/scanner" + "reflect" +) + +func init() { + Symbols["go/scanner/scanner"] = map[string]reflect.Value{ + // function, constant and variable definitions + "PrintError": reflect.ValueOf(scanner.PrintError), + "ScanComments": reflect.ValueOf(scanner.ScanComments), + + // type definitions + "Error": reflect.ValueOf((*scanner.Error)(nil)), + "ErrorHandler": reflect.ValueOf((*scanner.ErrorHandler)(nil)), + "ErrorList": reflect.ValueOf((*scanner.ErrorList)(nil)), + "Mode": reflect.ValueOf((*scanner.Mode)(nil)), + "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), + } +} diff --git a/stdlib/go1_19_go_token.go b/stdlib/go1_19_go_token.go new file mode 100644 index 000000000..2a721f601 --- /dev/null +++ b/stdlib/go1_19_go_token.go @@ -0,0 +1,116 @@ +// Code generated by 'yaegi extract go/token'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" +) + +func init() { + Symbols["go/token/token"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ADD": reflect.ValueOf(token.ADD), + "ADD_ASSIGN": reflect.ValueOf(token.ADD_ASSIGN), + "AND": reflect.ValueOf(token.AND), + "AND_ASSIGN": reflect.ValueOf(token.AND_ASSIGN), + "AND_NOT": reflect.ValueOf(token.AND_NOT), + "AND_NOT_ASSIGN": reflect.ValueOf(token.AND_NOT_ASSIGN), + "ARROW": reflect.ValueOf(token.ARROW), + "ASSIGN": reflect.ValueOf(token.ASSIGN), + "BREAK": reflect.ValueOf(token.BREAK), + "CASE": reflect.ValueOf(token.CASE), + "CHAN": reflect.ValueOf(token.CHAN), + "CHAR": reflect.ValueOf(token.CHAR), + "COLON": reflect.ValueOf(token.COLON), + "COMMA": reflect.ValueOf(token.COMMA), + "COMMENT": reflect.ValueOf(token.COMMENT), + "CONST": reflect.ValueOf(token.CONST), + "CONTINUE": reflect.ValueOf(token.CONTINUE), + "DEC": reflect.ValueOf(token.DEC), + "DEFAULT": reflect.ValueOf(token.DEFAULT), + "DEFER": reflect.ValueOf(token.DEFER), + "DEFINE": reflect.ValueOf(token.DEFINE), + "ELLIPSIS": reflect.ValueOf(token.ELLIPSIS), + "ELSE": reflect.ValueOf(token.ELSE), + "EOF": reflect.ValueOf(token.EOF), + "EQL": reflect.ValueOf(token.EQL), + "FALLTHROUGH": reflect.ValueOf(token.FALLTHROUGH), + "FLOAT": reflect.ValueOf(token.FLOAT), + "FOR": reflect.ValueOf(token.FOR), + "FUNC": reflect.ValueOf(token.FUNC), + "GEQ": reflect.ValueOf(token.GEQ), + "GO": reflect.ValueOf(token.GO), + "GOTO": reflect.ValueOf(token.GOTO), + "GTR": reflect.ValueOf(token.GTR), + "HighestPrec": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IDENT": reflect.ValueOf(token.IDENT), + "IF": reflect.ValueOf(token.IF), + "ILLEGAL": reflect.ValueOf(token.ILLEGAL), + "IMAG": reflect.ValueOf(token.IMAG), + "IMPORT": reflect.ValueOf(token.IMPORT), + "INC": reflect.ValueOf(token.INC), + "INT": reflect.ValueOf(token.INT), + "INTERFACE": reflect.ValueOf(token.INTERFACE), + "IsExported": reflect.ValueOf(token.IsExported), + "IsIdentifier": reflect.ValueOf(token.IsIdentifier), + "IsKeyword": reflect.ValueOf(token.IsKeyword), + "LAND": reflect.ValueOf(token.LAND), + "LBRACE": reflect.ValueOf(token.LBRACE), + "LBRACK": reflect.ValueOf(token.LBRACK), + "LEQ": reflect.ValueOf(token.LEQ), + "LOR": reflect.ValueOf(token.LOR), + "LPAREN": reflect.ValueOf(token.LPAREN), + "LSS": reflect.ValueOf(token.LSS), + "Lookup": reflect.ValueOf(token.Lookup), + "LowestPrec": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP": reflect.ValueOf(token.MAP), + "MUL": reflect.ValueOf(token.MUL), + "MUL_ASSIGN": reflect.ValueOf(token.MUL_ASSIGN), + "NEQ": reflect.ValueOf(token.NEQ), + "NOT": reflect.ValueOf(token.NOT), + "NewFileSet": reflect.ValueOf(token.NewFileSet), + "NoPos": reflect.ValueOf(token.NoPos), + "OR": reflect.ValueOf(token.OR), + "OR_ASSIGN": reflect.ValueOf(token.OR_ASSIGN), + "PACKAGE": reflect.ValueOf(token.PACKAGE), + "PERIOD": reflect.ValueOf(token.PERIOD), + "QUO": reflect.ValueOf(token.QUO), + "QUO_ASSIGN": reflect.ValueOf(token.QUO_ASSIGN), + "RANGE": reflect.ValueOf(token.RANGE), + "RBRACE": reflect.ValueOf(token.RBRACE), + "RBRACK": reflect.ValueOf(token.RBRACK), + "REM": reflect.ValueOf(token.REM), + "REM_ASSIGN": reflect.ValueOf(token.REM_ASSIGN), + "RETURN": reflect.ValueOf(token.RETURN), + "RPAREN": reflect.ValueOf(token.RPAREN), + "SELECT": reflect.ValueOf(token.SELECT), + "SEMICOLON": reflect.ValueOf(token.SEMICOLON), + "SHL": reflect.ValueOf(token.SHL), + "SHL_ASSIGN": reflect.ValueOf(token.SHL_ASSIGN), + "SHR": reflect.ValueOf(token.SHR), + "SHR_ASSIGN": reflect.ValueOf(token.SHR_ASSIGN), + "STRING": reflect.ValueOf(token.STRING), + "STRUCT": reflect.ValueOf(token.STRUCT), + "SUB": reflect.ValueOf(token.SUB), + "SUB_ASSIGN": reflect.ValueOf(token.SUB_ASSIGN), + "SWITCH": reflect.ValueOf(token.SWITCH), + "TILDE": reflect.ValueOf(token.TILDE), + "TYPE": reflect.ValueOf(token.TYPE), + "UnaryPrec": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VAR": reflect.ValueOf(token.VAR), + "XOR": reflect.ValueOf(token.XOR), + "XOR_ASSIGN": reflect.ValueOf(token.XOR_ASSIGN), + + // type definitions + "File": reflect.ValueOf((*token.File)(nil)), + "FileSet": reflect.ValueOf((*token.FileSet)(nil)), + "Pos": reflect.ValueOf((*token.Pos)(nil)), + "Position": reflect.ValueOf((*token.Position)(nil)), + "Token": reflect.ValueOf((*token.Token)(nil)), + } +} diff --git a/stdlib/go1_19_go_types.go b/stdlib/go1_19_go_types.go new file mode 100644 index 000000000..c05d563c4 --- /dev/null +++ b/stdlib/go1_19_go_types.go @@ -0,0 +1,276 @@ +// Code generated by 'yaegi extract go/types'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/token" + "go/types" + "reflect" +) + +func init() { + Symbols["go/types/types"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AssertableTo": reflect.ValueOf(types.AssertableTo), + "AssignableTo": reflect.ValueOf(types.AssignableTo), + "Bool": reflect.ValueOf(types.Bool), + "Byte": reflect.ValueOf(types.Byte), + "CheckExpr": reflect.ValueOf(types.CheckExpr), + "Comparable": reflect.ValueOf(types.Comparable), + "Complex128": reflect.ValueOf(types.Complex128), + "Complex64": reflect.ValueOf(types.Complex64), + "ConvertibleTo": reflect.ValueOf(types.ConvertibleTo), + "DefPredeclaredTestFuncs": reflect.ValueOf(types.DefPredeclaredTestFuncs), + "Default": reflect.ValueOf(types.Default), + "Eval": reflect.ValueOf(types.Eval), + "ExprString": reflect.ValueOf(types.ExprString), + "FieldVal": reflect.ValueOf(types.FieldVal), + "Float32": reflect.ValueOf(types.Float32), + "Float64": reflect.ValueOf(types.Float64), + "Id": reflect.ValueOf(types.Id), + "Identical": reflect.ValueOf(types.Identical), + "IdenticalIgnoreTags": reflect.ValueOf(types.IdenticalIgnoreTags), + "Implements": reflect.ValueOf(types.Implements), + "Instantiate": reflect.ValueOf(types.Instantiate), + "Int": reflect.ValueOf(types.Int), + "Int16": reflect.ValueOf(types.Int16), + "Int32": reflect.ValueOf(types.Int32), + "Int64": reflect.ValueOf(types.Int64), + "Int8": reflect.ValueOf(types.Int8), + "Invalid": reflect.ValueOf(types.Invalid), + "IsBoolean": reflect.ValueOf(types.IsBoolean), + "IsComplex": reflect.ValueOf(types.IsComplex), + "IsConstType": reflect.ValueOf(types.IsConstType), + "IsFloat": reflect.ValueOf(types.IsFloat), + "IsInteger": reflect.ValueOf(types.IsInteger), + "IsInterface": reflect.ValueOf(types.IsInterface), + "IsNumeric": reflect.ValueOf(types.IsNumeric), + "IsOrdered": reflect.ValueOf(types.IsOrdered), + "IsString": reflect.ValueOf(types.IsString), + "IsUnsigned": reflect.ValueOf(types.IsUnsigned), + "IsUntyped": reflect.ValueOf(types.IsUntyped), + "LookupFieldOrMethod": reflect.ValueOf(types.LookupFieldOrMethod), + "MethodExpr": reflect.ValueOf(types.MethodExpr), + "MethodVal": reflect.ValueOf(types.MethodVal), + "MissingMethod": reflect.ValueOf(types.MissingMethod), + "NewArray": reflect.ValueOf(types.NewArray), + "NewChan": reflect.ValueOf(types.NewChan), + "NewChecker": reflect.ValueOf(types.NewChecker), + "NewConst": reflect.ValueOf(types.NewConst), + "NewContext": reflect.ValueOf(types.NewContext), + "NewField": reflect.ValueOf(types.NewField), + "NewFunc": reflect.ValueOf(types.NewFunc), + "NewInterface": reflect.ValueOf(types.NewInterface), + "NewInterfaceType": reflect.ValueOf(types.NewInterfaceType), + "NewLabel": reflect.ValueOf(types.NewLabel), + "NewMap": reflect.ValueOf(types.NewMap), + "NewMethodSet": reflect.ValueOf(types.NewMethodSet), + "NewNamed": reflect.ValueOf(types.NewNamed), + "NewPackage": reflect.ValueOf(types.NewPackage), + "NewParam": reflect.ValueOf(types.NewParam), + "NewPkgName": reflect.ValueOf(types.NewPkgName), + "NewPointer": reflect.ValueOf(types.NewPointer), + "NewScope": reflect.ValueOf(types.NewScope), + "NewSignature": reflect.ValueOf(types.NewSignature), + "NewSignatureType": reflect.ValueOf(types.NewSignatureType), + "NewSlice": reflect.ValueOf(types.NewSlice), + "NewStruct": reflect.ValueOf(types.NewStruct), + "NewTerm": reflect.ValueOf(types.NewTerm), + "NewTuple": reflect.ValueOf(types.NewTuple), + "NewTypeName": reflect.ValueOf(types.NewTypeName), + "NewTypeParam": reflect.ValueOf(types.NewTypeParam), + "NewUnion": reflect.ValueOf(types.NewUnion), + "NewVar": reflect.ValueOf(types.NewVar), + "ObjectString": reflect.ValueOf(types.ObjectString), + "RecvOnly": reflect.ValueOf(types.RecvOnly), + "RelativeTo": reflect.ValueOf(types.RelativeTo), + "Rune": reflect.ValueOf(types.Rune), + "SelectionString": reflect.ValueOf(types.SelectionString), + "SendOnly": reflect.ValueOf(types.SendOnly), + "SendRecv": reflect.ValueOf(types.SendRecv), + "SizesFor": reflect.ValueOf(types.SizesFor), + "String": reflect.ValueOf(types.String), + "Typ": reflect.ValueOf(&types.Typ).Elem(), + "TypeString": reflect.ValueOf(types.TypeString), + "Uint": reflect.ValueOf(types.Uint), + "Uint16": reflect.ValueOf(types.Uint16), + "Uint32": reflect.ValueOf(types.Uint32), + "Uint64": reflect.ValueOf(types.Uint64), + "Uint8": reflect.ValueOf(types.Uint8), + "Uintptr": reflect.ValueOf(types.Uintptr), + "Universe": reflect.ValueOf(&types.Universe).Elem(), + "Unsafe": reflect.ValueOf(&types.Unsafe).Elem(), + "UnsafePointer": reflect.ValueOf(types.UnsafePointer), + "UntypedBool": reflect.ValueOf(types.UntypedBool), + "UntypedComplex": reflect.ValueOf(types.UntypedComplex), + "UntypedFloat": reflect.ValueOf(types.UntypedFloat), + "UntypedInt": reflect.ValueOf(types.UntypedInt), + "UntypedNil": reflect.ValueOf(types.UntypedNil), + "UntypedRune": reflect.ValueOf(types.UntypedRune), + "UntypedString": reflect.ValueOf(types.UntypedString), + "WriteExpr": reflect.ValueOf(types.WriteExpr), + "WriteSignature": reflect.ValueOf(types.WriteSignature), + "WriteType": reflect.ValueOf(types.WriteType), + + // type definitions + "ArgumentError": reflect.ValueOf((*types.ArgumentError)(nil)), + "Array": reflect.ValueOf((*types.Array)(nil)), + "Basic": reflect.ValueOf((*types.Basic)(nil)), + "BasicInfo": reflect.ValueOf((*types.BasicInfo)(nil)), + "BasicKind": reflect.ValueOf((*types.BasicKind)(nil)), + "Builtin": reflect.ValueOf((*types.Builtin)(nil)), + "Chan": reflect.ValueOf((*types.Chan)(nil)), + "ChanDir": reflect.ValueOf((*types.ChanDir)(nil)), + "Checker": reflect.ValueOf((*types.Checker)(nil)), + "Config": reflect.ValueOf((*types.Config)(nil)), + "Const": reflect.ValueOf((*types.Const)(nil)), + "Context": reflect.ValueOf((*types.Context)(nil)), + "Error": reflect.ValueOf((*types.Error)(nil)), + "Func": reflect.ValueOf((*types.Func)(nil)), + "ImportMode": reflect.ValueOf((*types.ImportMode)(nil)), + "Importer": reflect.ValueOf((*types.Importer)(nil)), + "ImporterFrom": reflect.ValueOf((*types.ImporterFrom)(nil)), + "Info": reflect.ValueOf((*types.Info)(nil)), + "Initializer": reflect.ValueOf((*types.Initializer)(nil)), + "Instance": reflect.ValueOf((*types.Instance)(nil)), + "Interface": reflect.ValueOf((*types.Interface)(nil)), + "Label": reflect.ValueOf((*types.Label)(nil)), + "Map": reflect.ValueOf((*types.Map)(nil)), + "MethodSet": reflect.ValueOf((*types.MethodSet)(nil)), + "Named": reflect.ValueOf((*types.Named)(nil)), + "Nil": reflect.ValueOf((*types.Nil)(nil)), + "Object": reflect.ValueOf((*types.Object)(nil)), + "Package": reflect.ValueOf((*types.Package)(nil)), + "PkgName": reflect.ValueOf((*types.PkgName)(nil)), + "Pointer": reflect.ValueOf((*types.Pointer)(nil)), + "Qualifier": reflect.ValueOf((*types.Qualifier)(nil)), + "Scope": reflect.ValueOf((*types.Scope)(nil)), + "Selection": reflect.ValueOf((*types.Selection)(nil)), + "SelectionKind": reflect.ValueOf((*types.SelectionKind)(nil)), + "Signature": reflect.ValueOf((*types.Signature)(nil)), + "Sizes": reflect.ValueOf((*types.Sizes)(nil)), + "Slice": reflect.ValueOf((*types.Slice)(nil)), + "StdSizes": reflect.ValueOf((*types.StdSizes)(nil)), + "Struct": reflect.ValueOf((*types.Struct)(nil)), + "Term": reflect.ValueOf((*types.Term)(nil)), + "Tuple": reflect.ValueOf((*types.Tuple)(nil)), + "Type": reflect.ValueOf((*types.Type)(nil)), + "TypeAndValue": reflect.ValueOf((*types.TypeAndValue)(nil)), + "TypeList": reflect.ValueOf((*types.TypeList)(nil)), + "TypeName": reflect.ValueOf((*types.TypeName)(nil)), + "TypeParam": reflect.ValueOf((*types.TypeParam)(nil)), + "TypeParamList": reflect.ValueOf((*types.TypeParamList)(nil)), + "Union": reflect.ValueOf((*types.Union)(nil)), + "Var": reflect.ValueOf((*types.Var)(nil)), + + // interface wrapper definitions + "_Importer": reflect.ValueOf((*_go_types_Importer)(nil)), + "_ImporterFrom": reflect.ValueOf((*_go_types_ImporterFrom)(nil)), + "_Object": reflect.ValueOf((*_go_types_Object)(nil)), + "_Sizes": reflect.ValueOf((*_go_types_Sizes)(nil)), + "_Type": reflect.ValueOf((*_go_types_Type)(nil)), + } +} + +// _go_types_Importer is an interface wrapper for Importer type +type _go_types_Importer struct { + IValue interface{} + WImport func(path string) (*types.Package, error) +} + +func (W _go_types_Importer) Import(path string) (*types.Package, error) { + return W.WImport(path) +} + +// _go_types_ImporterFrom is an interface wrapper for ImporterFrom type +type _go_types_ImporterFrom struct { + IValue interface{} + WImport func(path string) (*types.Package, error) + WImportFrom func(path string, dir string, mode types.ImportMode) (*types.Package, error) +} + +func (W _go_types_ImporterFrom) Import(path string) (*types.Package, error) { + return W.WImport(path) +} +func (W _go_types_ImporterFrom) ImportFrom(path string, dir string, mode types.ImportMode) (*types.Package, error) { + return W.WImportFrom(path, dir, mode) +} + +// _go_types_Object is an interface wrapper for Object type +type _go_types_Object struct { + IValue interface{} + WExported func() bool + WId func() string + WName func() string + WParent func() *types.Scope + WPkg func() *types.Package + WPos func() token.Pos + WString func() string + WType func() types.Type +} + +func (W _go_types_Object) Exported() bool { + return W.WExported() +} +func (W _go_types_Object) Id() string { + return W.WId() +} +func (W _go_types_Object) Name() string { + return W.WName() +} +func (W _go_types_Object) Parent() *types.Scope { + return W.WParent() +} +func (W _go_types_Object) Pkg() *types.Package { + return W.WPkg() +} +func (W _go_types_Object) Pos() token.Pos { + return W.WPos() +} +func (W _go_types_Object) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _go_types_Object) Type() types.Type { + return W.WType() +} + +// _go_types_Sizes is an interface wrapper for Sizes type +type _go_types_Sizes struct { + IValue interface{} + WAlignof func(T types.Type) int64 + WOffsetsof func(fields []*types.Var) []int64 + WSizeof func(T types.Type) int64 +} + +func (W _go_types_Sizes) Alignof(T types.Type) int64 { + return W.WAlignof(T) +} +func (W _go_types_Sizes) Offsetsof(fields []*types.Var) []int64 { + return W.WOffsetsof(fields) +} +func (W _go_types_Sizes) Sizeof(T types.Type) int64 { + return W.WSizeof(T) +} + +// _go_types_Type is an interface wrapper for Type type +type _go_types_Type struct { + IValue interface{} + WString func() string + WUnderlying func() types.Type +} + +func (W _go_types_Type) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _go_types_Type) Underlying() types.Type { + return W.WUnderlying() +} diff --git a/stdlib/go1_19_hash.go b/stdlib/go1_19_hash.go new file mode 100644 index 000000000..d73a9c2ad --- /dev/null +++ b/stdlib/go1_19_hash.go @@ -0,0 +1,111 @@ +// Code generated by 'yaegi extract hash'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "hash" + "reflect" +) + +func init() { + Symbols["hash/hash"] = map[string]reflect.Value{ + // type definitions + "Hash": reflect.ValueOf((*hash.Hash)(nil)), + "Hash32": reflect.ValueOf((*hash.Hash32)(nil)), + "Hash64": reflect.ValueOf((*hash.Hash64)(nil)), + + // interface wrapper definitions + "_Hash": reflect.ValueOf((*_hash_Hash)(nil)), + "_Hash32": reflect.ValueOf((*_hash_Hash32)(nil)), + "_Hash64": reflect.ValueOf((*_hash_Hash64)(nil)), + } +} + +// _hash_Hash is an interface wrapper for Hash type +type _hash_Hash struct { + IValue interface{} + WBlockSize func() int + WReset func() + WSize func() int + WSum func(b []byte) []byte + WWrite func(p []byte) (n int, err error) +} + +func (W _hash_Hash) BlockSize() int { + return W.WBlockSize() +} +func (W _hash_Hash) Reset() { + W.WReset() +} +func (W _hash_Hash) Size() int { + return W.WSize() +} +func (W _hash_Hash) Sum(b []byte) []byte { + return W.WSum(b) +} +func (W _hash_Hash) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _hash_Hash32 is an interface wrapper for Hash32 type +type _hash_Hash32 struct { + IValue interface{} + WBlockSize func() int + WReset func() + WSize func() int + WSum func(b []byte) []byte + WSum32 func() uint32 + WWrite func(p []byte) (n int, err error) +} + +func (W _hash_Hash32) BlockSize() int { + return W.WBlockSize() +} +func (W _hash_Hash32) Reset() { + W.WReset() +} +func (W _hash_Hash32) Size() int { + return W.WSize() +} +func (W _hash_Hash32) Sum(b []byte) []byte { + return W.WSum(b) +} +func (W _hash_Hash32) Sum32() uint32 { + return W.WSum32() +} +func (W _hash_Hash32) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _hash_Hash64 is an interface wrapper for Hash64 type +type _hash_Hash64 struct { + IValue interface{} + WBlockSize func() int + WReset func() + WSize func() int + WSum func(b []byte) []byte + WSum64 func() uint64 + WWrite func(p []byte) (n int, err error) +} + +func (W _hash_Hash64) BlockSize() int { + return W.WBlockSize() +} +func (W _hash_Hash64) Reset() { + W.WReset() +} +func (W _hash_Hash64) Size() int { + return W.WSize() +} +func (W _hash_Hash64) Sum(b []byte) []byte { + return W.WSum(b) +} +func (W _hash_Hash64) Sum64() uint64 { + return W.WSum64() +} +func (W _hash_Hash64) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} diff --git a/stdlib/go1_19_hash_adler32.go b/stdlib/go1_19_hash_adler32.go new file mode 100644 index 000000000..97e920bf9 --- /dev/null +++ b/stdlib/go1_19_hash_adler32.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract hash/adler32'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "hash/adler32" + "reflect" +) + +func init() { + Symbols["hash/adler32/adler32"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Checksum": reflect.ValueOf(adler32.Checksum), + "New": reflect.ValueOf(adler32.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + } +} diff --git a/stdlib/go1_19_hash_crc32.go b/stdlib/go1_19_hash_crc32.go new file mode 100644 index 000000000..325548cf8 --- /dev/null +++ b/stdlib/go1_19_hash_crc32.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract hash/crc32'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "hash/crc32" + "reflect" +) + +func init() { + Symbols["hash/crc32/crc32"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Castagnoli": reflect.ValueOf(constant.MakeFromLiteral("2197175160", token.INT, 0)), + "Checksum": reflect.ValueOf(crc32.Checksum), + "ChecksumIEEE": reflect.ValueOf(crc32.ChecksumIEEE), + "IEEE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "IEEETable": reflect.ValueOf(&crc32.IEEETable).Elem(), + "Koopman": reflect.ValueOf(constant.MakeFromLiteral("3945912366", token.INT, 0)), + "MakeTable": reflect.ValueOf(crc32.MakeTable), + "New": reflect.ValueOf(crc32.New), + "NewIEEE": reflect.ValueOf(crc32.NewIEEE), + "Size": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Update": reflect.ValueOf(crc32.Update), + + // type definitions + "Table": reflect.ValueOf((*crc32.Table)(nil)), + } +} diff --git a/stdlib/go1_19_hash_crc64.go b/stdlib/go1_19_hash_crc64.go new file mode 100644 index 000000000..5e83c3e70 --- /dev/null +++ b/stdlib/go1_19_hash_crc64.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract hash/crc64'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "hash/crc64" + "reflect" +) + +func init() { + Symbols["hash/crc64/crc64"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Checksum": reflect.ValueOf(crc64.Checksum), + "ECMA": reflect.ValueOf(constant.MakeFromLiteral("14514072000185962306", token.INT, 0)), + "ISO": reflect.ValueOf(constant.MakeFromLiteral("15564440312192434176", token.INT, 0)), + "MakeTable": reflect.ValueOf(crc64.MakeTable), + "New": reflect.ValueOf(crc64.New), + "Size": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Update": reflect.ValueOf(crc64.Update), + + // type definitions + "Table": reflect.ValueOf((*crc64.Table)(nil)), + } +} diff --git a/stdlib/go1_19_hash_fnv.go b/stdlib/go1_19_hash_fnv.go new file mode 100644 index 000000000..f5471abe6 --- /dev/null +++ b/stdlib/go1_19_hash_fnv.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract hash/fnv'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "hash/fnv" + "reflect" +) + +func init() { + Symbols["hash/fnv/fnv"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New128": reflect.ValueOf(fnv.New128), + "New128a": reflect.ValueOf(fnv.New128a), + "New32": reflect.ValueOf(fnv.New32), + "New32a": reflect.ValueOf(fnv.New32a), + "New64": reflect.ValueOf(fnv.New64), + "New64a": reflect.ValueOf(fnv.New64a), + } +} diff --git a/stdlib/go1_19_hash_maphash.go b/stdlib/go1_19_hash_maphash.go new file mode 100644 index 000000000..dc5d464b6 --- /dev/null +++ b/stdlib/go1_19_hash_maphash.go @@ -0,0 +1,24 @@ +// Code generated by 'yaegi extract hash/maphash'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "hash/maphash" + "reflect" +) + +func init() { + Symbols["hash/maphash/maphash"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Bytes": reflect.ValueOf(maphash.Bytes), + "MakeSeed": reflect.ValueOf(maphash.MakeSeed), + "String": reflect.ValueOf(maphash.String), + + // type definitions + "Hash": reflect.ValueOf((*maphash.Hash)(nil)), + "Seed": reflect.ValueOf((*maphash.Seed)(nil)), + } +} diff --git a/stdlib/go1_19_html.go b/stdlib/go1_19_html.go new file mode 100644 index 000000000..7f070e13d --- /dev/null +++ b/stdlib/go1_19_html.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract html'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "html" + "reflect" +) + +func init() { + Symbols["html/html"] = map[string]reflect.Value{ + // function, constant and variable definitions + "EscapeString": reflect.ValueOf(html.EscapeString), + "UnescapeString": reflect.ValueOf(html.UnescapeString), + } +} diff --git a/stdlib/go1_19_html_template.go b/stdlib/go1_19_html_template.go new file mode 100644 index 000000000..a660bb98f --- /dev/null +++ b/stdlib/go1_19_html_template.go @@ -0,0 +1,55 @@ +// Code generated by 'yaegi extract html/template'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "html/template" + "reflect" +) + +func init() { + Symbols["html/template/template"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrAmbigContext": reflect.ValueOf(template.ErrAmbigContext), + "ErrBadHTML": reflect.ValueOf(template.ErrBadHTML), + "ErrBranchEnd": reflect.ValueOf(template.ErrBranchEnd), + "ErrEndContext": reflect.ValueOf(template.ErrEndContext), + "ErrNoSuchTemplate": reflect.ValueOf(template.ErrNoSuchTemplate), + "ErrOutputContext": reflect.ValueOf(template.ErrOutputContext), + "ErrPartialCharset": reflect.ValueOf(template.ErrPartialCharset), + "ErrPartialEscape": reflect.ValueOf(template.ErrPartialEscape), + "ErrPredefinedEscaper": reflect.ValueOf(template.ErrPredefinedEscaper), + "ErrRangeLoopReentry": reflect.ValueOf(template.ErrRangeLoopReentry), + "ErrSlashAmbig": reflect.ValueOf(template.ErrSlashAmbig), + "HTMLEscape": reflect.ValueOf(template.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), + "IsTrue": reflect.ValueOf(template.IsTrue), + "JSEscape": reflect.ValueOf(template.JSEscape), + "JSEscapeString": reflect.ValueOf(template.JSEscapeString), + "JSEscaper": reflect.ValueOf(template.JSEscaper), + "Must": reflect.ValueOf(template.Must), + "New": reflect.ValueOf(template.New), + "OK": reflect.ValueOf(template.OK), + "ParseFS": reflect.ValueOf(template.ParseFS), + "ParseFiles": reflect.ValueOf(template.ParseFiles), + "ParseGlob": reflect.ValueOf(template.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), + + // type definitions + "CSS": reflect.ValueOf((*template.CSS)(nil)), + "Error": reflect.ValueOf((*template.Error)(nil)), + "ErrorCode": reflect.ValueOf((*template.ErrorCode)(nil)), + "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), + "HTML": reflect.ValueOf((*template.HTML)(nil)), + "HTMLAttr": reflect.ValueOf((*template.HTMLAttr)(nil)), + "JS": reflect.ValueOf((*template.JS)(nil)), + "JSStr": reflect.ValueOf((*template.JSStr)(nil)), + "Srcset": reflect.ValueOf((*template.Srcset)(nil)), + "Template": reflect.ValueOf((*template.Template)(nil)), + "URL": reflect.ValueOf((*template.URL)(nil)), + } +} diff --git a/stdlib/go1_19_image.go b/stdlib/go1_19_image.go new file mode 100644 index 000000000..cbda85fc0 --- /dev/null +++ b/stdlib/go1_19_image.go @@ -0,0 +1,138 @@ +// Code generated by 'yaegi extract image'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "image" + "image/color" + "reflect" +) + +func init() { + Symbols["image/image"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Black": reflect.ValueOf(&image.Black).Elem(), + "Decode": reflect.ValueOf(image.Decode), + "DecodeConfig": reflect.ValueOf(image.DecodeConfig), + "ErrFormat": reflect.ValueOf(&image.ErrFormat).Elem(), + "NewAlpha": reflect.ValueOf(image.NewAlpha), + "NewAlpha16": reflect.ValueOf(image.NewAlpha16), + "NewCMYK": reflect.ValueOf(image.NewCMYK), + "NewGray": reflect.ValueOf(image.NewGray), + "NewGray16": reflect.ValueOf(image.NewGray16), + "NewNRGBA": reflect.ValueOf(image.NewNRGBA), + "NewNRGBA64": reflect.ValueOf(image.NewNRGBA64), + "NewNYCbCrA": reflect.ValueOf(image.NewNYCbCrA), + "NewPaletted": reflect.ValueOf(image.NewPaletted), + "NewRGBA": reflect.ValueOf(image.NewRGBA), + "NewRGBA64": reflect.ValueOf(image.NewRGBA64), + "NewUniform": reflect.ValueOf(image.NewUniform), + "NewYCbCr": reflect.ValueOf(image.NewYCbCr), + "Opaque": reflect.ValueOf(&image.Opaque).Elem(), + "Pt": reflect.ValueOf(image.Pt), + "Rect": reflect.ValueOf(image.Rect), + "RegisterFormat": reflect.ValueOf(image.RegisterFormat), + "Transparent": reflect.ValueOf(&image.Transparent).Elem(), + "White": reflect.ValueOf(&image.White).Elem(), + "YCbCrSubsampleRatio410": reflect.ValueOf(image.YCbCrSubsampleRatio410), + "YCbCrSubsampleRatio411": reflect.ValueOf(image.YCbCrSubsampleRatio411), + "YCbCrSubsampleRatio420": reflect.ValueOf(image.YCbCrSubsampleRatio420), + "YCbCrSubsampleRatio422": reflect.ValueOf(image.YCbCrSubsampleRatio422), + "YCbCrSubsampleRatio440": reflect.ValueOf(image.YCbCrSubsampleRatio440), + "YCbCrSubsampleRatio444": reflect.ValueOf(image.YCbCrSubsampleRatio444), + "ZP": reflect.ValueOf(&image.ZP).Elem(), + "ZR": reflect.ValueOf(&image.ZR).Elem(), + + // type definitions + "Alpha": reflect.ValueOf((*image.Alpha)(nil)), + "Alpha16": reflect.ValueOf((*image.Alpha16)(nil)), + "CMYK": reflect.ValueOf((*image.CMYK)(nil)), + "Config": reflect.ValueOf((*image.Config)(nil)), + "Gray": reflect.ValueOf((*image.Gray)(nil)), + "Gray16": reflect.ValueOf((*image.Gray16)(nil)), + "Image": reflect.ValueOf((*image.Image)(nil)), + "NRGBA": reflect.ValueOf((*image.NRGBA)(nil)), + "NRGBA64": reflect.ValueOf((*image.NRGBA64)(nil)), + "NYCbCrA": reflect.ValueOf((*image.NYCbCrA)(nil)), + "Paletted": reflect.ValueOf((*image.Paletted)(nil)), + "PalettedImage": reflect.ValueOf((*image.PalettedImage)(nil)), + "Point": reflect.ValueOf((*image.Point)(nil)), + "RGBA": reflect.ValueOf((*image.RGBA)(nil)), + "RGBA64": reflect.ValueOf((*image.RGBA64)(nil)), + "RGBA64Image": reflect.ValueOf((*image.RGBA64Image)(nil)), + "Rectangle": reflect.ValueOf((*image.Rectangle)(nil)), + "Uniform": reflect.ValueOf((*image.Uniform)(nil)), + "YCbCr": reflect.ValueOf((*image.YCbCr)(nil)), + "YCbCrSubsampleRatio": reflect.ValueOf((*image.YCbCrSubsampleRatio)(nil)), + + // interface wrapper definitions + "_Image": reflect.ValueOf((*_image_Image)(nil)), + "_PalettedImage": reflect.ValueOf((*_image_PalettedImage)(nil)), + "_RGBA64Image": reflect.ValueOf((*_image_RGBA64Image)(nil)), + } +} + +// _image_Image is an interface wrapper for Image type +type _image_Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model +} + +func (W _image_Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_Image) ColorModel() color.Model { + return W.WColorModel() +} + +// _image_PalettedImage is an interface wrapper for PalettedImage type +type _image_PalettedImage struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorIndexAt func(x int, y int) uint8 + WColorModel func() color.Model +} + +func (W _image_PalettedImage) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_PalettedImage) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_PalettedImage) ColorIndexAt(x int, y int) uint8 { + return W.WColorIndexAt(x, y) +} +func (W _image_PalettedImage) ColorModel() color.Model { + return W.WColorModel() +} + +// _image_RGBA64Image is an interface wrapper for RGBA64Image type +type _image_RGBA64Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model + WRGBA64At func(x int, y int) color.RGBA64 +} + +func (W _image_RGBA64Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_RGBA64Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_RGBA64Image) ColorModel() color.Model { + return W.WColorModel() +} +func (W _image_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { + return W.WRGBA64At(x, y) +} diff --git a/stdlib/go1_19_image_color.go b/stdlib/go1_19_image_color.go new file mode 100644 index 000000000..9d78055bf --- /dev/null +++ b/stdlib/go1_19_image_color.go @@ -0,0 +1,77 @@ +// Code generated by 'yaegi extract image/color'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "image/color" + "reflect" +) + +func init() { + Symbols["image/color/color"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Alpha16Model": reflect.ValueOf(&color.Alpha16Model).Elem(), + "AlphaModel": reflect.ValueOf(&color.AlphaModel).Elem(), + "Black": reflect.ValueOf(&color.Black).Elem(), + "CMYKModel": reflect.ValueOf(&color.CMYKModel).Elem(), + "CMYKToRGB": reflect.ValueOf(color.CMYKToRGB), + "Gray16Model": reflect.ValueOf(&color.Gray16Model).Elem(), + "GrayModel": reflect.ValueOf(&color.GrayModel).Elem(), + "ModelFunc": reflect.ValueOf(color.ModelFunc), + "NRGBA64Model": reflect.ValueOf(&color.NRGBA64Model).Elem(), + "NRGBAModel": reflect.ValueOf(&color.NRGBAModel).Elem(), + "NYCbCrAModel": reflect.ValueOf(&color.NYCbCrAModel).Elem(), + "Opaque": reflect.ValueOf(&color.Opaque).Elem(), + "RGBA64Model": reflect.ValueOf(&color.RGBA64Model).Elem(), + "RGBAModel": reflect.ValueOf(&color.RGBAModel).Elem(), + "RGBToCMYK": reflect.ValueOf(color.RGBToCMYK), + "RGBToYCbCr": reflect.ValueOf(color.RGBToYCbCr), + "Transparent": reflect.ValueOf(&color.Transparent).Elem(), + "White": reflect.ValueOf(&color.White).Elem(), + "YCbCrModel": reflect.ValueOf(&color.YCbCrModel).Elem(), + "YCbCrToRGB": reflect.ValueOf(color.YCbCrToRGB), + + // type definitions + "Alpha": reflect.ValueOf((*color.Alpha)(nil)), + "Alpha16": reflect.ValueOf((*color.Alpha16)(nil)), + "CMYK": reflect.ValueOf((*color.CMYK)(nil)), + "Color": reflect.ValueOf((*color.Color)(nil)), + "Gray": reflect.ValueOf((*color.Gray)(nil)), + "Gray16": reflect.ValueOf((*color.Gray16)(nil)), + "Model": reflect.ValueOf((*color.Model)(nil)), + "NRGBA": reflect.ValueOf((*color.NRGBA)(nil)), + "NRGBA64": reflect.ValueOf((*color.NRGBA64)(nil)), + "NYCbCrA": reflect.ValueOf((*color.NYCbCrA)(nil)), + "Palette": reflect.ValueOf((*color.Palette)(nil)), + "RGBA": reflect.ValueOf((*color.RGBA)(nil)), + "RGBA64": reflect.ValueOf((*color.RGBA64)(nil)), + "YCbCr": reflect.ValueOf((*color.YCbCr)(nil)), + + // interface wrapper definitions + "_Color": reflect.ValueOf((*_image_color_Color)(nil)), + "_Model": reflect.ValueOf((*_image_color_Model)(nil)), + } +} + +// _image_color_Color is an interface wrapper for Color type +type _image_color_Color struct { + IValue interface{} + WRGBA func() (r uint32, g uint32, b uint32, a uint32) +} + +func (W _image_color_Color) RGBA() (r uint32, g uint32, b uint32, a uint32) { + return W.WRGBA() +} + +// _image_color_Model is an interface wrapper for Model type +type _image_color_Model struct { + IValue interface{} + WConvert func(c color.Color) color.Color +} + +func (W _image_color_Model) Convert(c color.Color) color.Color { + return W.WConvert(c) +} diff --git a/stdlib/go1_19_image_color_palette.go b/stdlib/go1_19_image_color_palette.go new file mode 100644 index 000000000..50001ddaf --- /dev/null +++ b/stdlib/go1_19_image_color_palette.go @@ -0,0 +1,19 @@ +// Code generated by 'yaegi extract image/color/palette'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "image/color/palette" + "reflect" +) + +func init() { + Symbols["image/color/palette/palette"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Plan9": reflect.ValueOf(&palette.Plan9).Elem(), + "WebSafe": reflect.ValueOf(&palette.WebSafe).Elem(), + } +} diff --git a/stdlib/go1_19_image_draw.go b/stdlib/go1_19_image_draw.go new file mode 100644 index 000000000..d298dded9 --- /dev/null +++ b/stdlib/go1_19_image_draw.go @@ -0,0 +1,109 @@ +// Code generated by 'yaegi extract image/draw'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "image" + "image/color" + "image/draw" + "reflect" +) + +func init() { + Symbols["image/draw/draw"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Draw": reflect.ValueOf(draw.Draw), + "DrawMask": reflect.ValueOf(draw.DrawMask), + "FloydSteinberg": reflect.ValueOf(&draw.FloydSteinberg).Elem(), + "Over": reflect.ValueOf(draw.Over), + "Src": reflect.ValueOf(draw.Src), + + // type definitions + "Drawer": reflect.ValueOf((*draw.Drawer)(nil)), + "Image": reflect.ValueOf((*draw.Image)(nil)), + "Op": reflect.ValueOf((*draw.Op)(nil)), + "Quantizer": reflect.ValueOf((*draw.Quantizer)(nil)), + "RGBA64Image": reflect.ValueOf((*draw.RGBA64Image)(nil)), + + // interface wrapper definitions + "_Drawer": reflect.ValueOf((*_image_draw_Drawer)(nil)), + "_Image": reflect.ValueOf((*_image_draw_Image)(nil)), + "_Quantizer": reflect.ValueOf((*_image_draw_Quantizer)(nil)), + "_RGBA64Image": reflect.ValueOf((*_image_draw_RGBA64Image)(nil)), + } +} + +// _image_draw_Drawer is an interface wrapper for Drawer type +type _image_draw_Drawer struct { + IValue interface{} + WDraw func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) +} + +func (W _image_draw_Drawer) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) { + W.WDraw(dst, r, src, sp) +} + +// _image_draw_Image is an interface wrapper for Image type +type _image_draw_Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model + WSet func(x int, y int, c color.Color) +} + +func (W _image_draw_Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_draw_Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_draw_Image) ColorModel() color.Model { + return W.WColorModel() +} +func (W _image_draw_Image) Set(x int, y int, c color.Color) { + W.WSet(x, y, c) +} + +// _image_draw_Quantizer is an interface wrapper for Quantizer type +type _image_draw_Quantizer struct { + IValue interface{} + WQuantize func(p color.Palette, m image.Image) color.Palette +} + +func (W _image_draw_Quantizer) Quantize(p color.Palette, m image.Image) color.Palette { + return W.WQuantize(p, m) +} + +// _image_draw_RGBA64Image is an interface wrapper for RGBA64Image type +type _image_draw_RGBA64Image struct { + IValue interface{} + WAt func(x int, y int) color.Color + WBounds func() image.Rectangle + WColorModel func() color.Model + WRGBA64At func(x int, y int) color.RGBA64 + WSet func(x int, y int, c color.Color) + WSetRGBA64 func(x int, y int, c color.RGBA64) +} + +func (W _image_draw_RGBA64Image) At(x int, y int) color.Color { + return W.WAt(x, y) +} +func (W _image_draw_RGBA64Image) Bounds() image.Rectangle { + return W.WBounds() +} +func (W _image_draw_RGBA64Image) ColorModel() color.Model { + return W.WColorModel() +} +func (W _image_draw_RGBA64Image) RGBA64At(x int, y int) color.RGBA64 { + return W.WRGBA64At(x, y) +} +func (W _image_draw_RGBA64Image) Set(x int, y int, c color.Color) { + W.WSet(x, y, c) +} +func (W _image_draw_RGBA64Image) SetRGBA64(x int, y int, c color.RGBA64) { + W.WSetRGBA64(x, y, c) +} diff --git a/stdlib/go1_19_image_gif.go b/stdlib/go1_19_image_gif.go new file mode 100644 index 000000000..e13d32a63 --- /dev/null +++ b/stdlib/go1_19_image_gif.go @@ -0,0 +1,31 @@ +// Code generated by 'yaegi extract image/gif'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "image/gif" + "reflect" +) + +func init() { + Symbols["image/gif/gif"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(gif.Decode), + "DecodeAll": reflect.ValueOf(gif.DecodeAll), + "DecodeConfig": reflect.ValueOf(gif.DecodeConfig), + "DisposalBackground": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DisposalNone": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DisposalPrevious": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Encode": reflect.ValueOf(gif.Encode), + "EncodeAll": reflect.ValueOf(gif.EncodeAll), + + // type definitions + "GIF": reflect.ValueOf((*gif.GIF)(nil)), + "Options": reflect.ValueOf((*gif.Options)(nil)), + } +} diff --git a/stdlib/go1_19_image_jpeg.go b/stdlib/go1_19_image_jpeg.go new file mode 100644 index 000000000..e028fe0e6 --- /dev/null +++ b/stdlib/go1_19_image_jpeg.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract image/jpeg'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "image/jpeg" + "reflect" +) + +func init() { + Symbols["image/jpeg/jpeg"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(jpeg.Decode), + "DecodeConfig": reflect.ValueOf(jpeg.DecodeConfig), + "DefaultQuality": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "Encode": reflect.ValueOf(jpeg.Encode), + + // type definitions + "FormatError": reflect.ValueOf((*jpeg.FormatError)(nil)), + "Options": reflect.ValueOf((*jpeg.Options)(nil)), + "Reader": reflect.ValueOf((*jpeg.Reader)(nil)), + "UnsupportedError": reflect.ValueOf((*jpeg.UnsupportedError)(nil)), + + // interface wrapper definitions + "_Reader": reflect.ValueOf((*_image_jpeg_Reader)(nil)), + } +} + +// _image_jpeg_Reader is an interface wrapper for Reader type +type _image_jpeg_Reader struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WReadByte func() (byte, error) +} + +func (W _image_jpeg_Reader) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _image_jpeg_Reader) ReadByte() (byte, error) { + return W.WReadByte() +} diff --git a/stdlib/go1_19_image_png.go b/stdlib/go1_19_image_png.go new file mode 100644 index 000000000..db866e0a4 --- /dev/null +++ b/stdlib/go1_19_image_png.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract image/png'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "image/png" + "reflect" +) + +func init() { + Symbols["image/png/png"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BestCompression": reflect.ValueOf(png.BestCompression), + "BestSpeed": reflect.ValueOf(png.BestSpeed), + "Decode": reflect.ValueOf(png.Decode), + "DecodeConfig": reflect.ValueOf(png.DecodeConfig), + "DefaultCompression": reflect.ValueOf(png.DefaultCompression), + "Encode": reflect.ValueOf(png.Encode), + "NoCompression": reflect.ValueOf(png.NoCompression), + + // type definitions + "CompressionLevel": reflect.ValueOf((*png.CompressionLevel)(nil)), + "Encoder": reflect.ValueOf((*png.Encoder)(nil)), + "EncoderBuffer": reflect.ValueOf((*png.EncoderBuffer)(nil)), + "EncoderBufferPool": reflect.ValueOf((*png.EncoderBufferPool)(nil)), + "FormatError": reflect.ValueOf((*png.FormatError)(nil)), + "UnsupportedError": reflect.ValueOf((*png.UnsupportedError)(nil)), + + // interface wrapper definitions + "_EncoderBufferPool": reflect.ValueOf((*_image_png_EncoderBufferPool)(nil)), + } +} + +// _image_png_EncoderBufferPool is an interface wrapper for EncoderBufferPool type +type _image_png_EncoderBufferPool struct { + IValue interface{} + WGet func() *png.EncoderBuffer + WPut func(a0 *png.EncoderBuffer) +} + +func (W _image_png_EncoderBufferPool) Get() *png.EncoderBuffer { + return W.WGet() +} +func (W _image_png_EncoderBufferPool) Put(a0 *png.EncoderBuffer) { + W.WPut(a0) +} diff --git a/stdlib/go1_19_index_suffixarray.go b/stdlib/go1_19_index_suffixarray.go new file mode 100644 index 000000000..3125548a4 --- /dev/null +++ b/stdlib/go1_19_index_suffixarray.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract index/suffixarray'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "index/suffixarray" + "reflect" +) + +func init() { + Symbols["index/suffixarray/suffixarray"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(suffixarray.New), + + // type definitions + "Index": reflect.ValueOf((*suffixarray.Index)(nil)), + } +} diff --git a/stdlib/go1_19_io.go b/stdlib/go1_19_io.go new file mode 100644 index 000000000..83ffbd5f3 --- /dev/null +++ b/stdlib/go1_19_io.go @@ -0,0 +1,367 @@ +// Code generated by 'yaegi extract io'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "io" + "reflect" +) + +func init() { + Symbols["io/io"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Copy": reflect.ValueOf(io.Copy), + "CopyBuffer": reflect.ValueOf(io.CopyBuffer), + "CopyN": reflect.ValueOf(io.CopyN), + "Discard": reflect.ValueOf(&io.Discard).Elem(), + "EOF": reflect.ValueOf(&io.EOF).Elem(), + "ErrClosedPipe": reflect.ValueOf(&io.ErrClosedPipe).Elem(), + "ErrNoProgress": reflect.ValueOf(&io.ErrNoProgress).Elem(), + "ErrShortBuffer": reflect.ValueOf(&io.ErrShortBuffer).Elem(), + "ErrShortWrite": reflect.ValueOf(&io.ErrShortWrite).Elem(), + "ErrUnexpectedEOF": reflect.ValueOf(&io.ErrUnexpectedEOF).Elem(), + "LimitReader": reflect.ValueOf(io.LimitReader), + "MultiReader": reflect.ValueOf(io.MultiReader), + "MultiWriter": reflect.ValueOf(io.MultiWriter), + "NewSectionReader": reflect.ValueOf(io.NewSectionReader), + "NopCloser": reflect.ValueOf(io.NopCloser), + "Pipe": reflect.ValueOf(io.Pipe), + "ReadAll": reflect.ValueOf(io.ReadAll), + "ReadAtLeast": reflect.ValueOf(io.ReadAtLeast), + "ReadFull": reflect.ValueOf(io.ReadFull), + "SeekCurrent": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SeekEnd": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SeekStart": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TeeReader": reflect.ValueOf(io.TeeReader), + "WriteString": reflect.ValueOf(io.WriteString), + + // type definitions + "ByteReader": reflect.ValueOf((*io.ByteReader)(nil)), + "ByteScanner": reflect.ValueOf((*io.ByteScanner)(nil)), + "ByteWriter": reflect.ValueOf((*io.ByteWriter)(nil)), + "Closer": reflect.ValueOf((*io.Closer)(nil)), + "LimitedReader": reflect.ValueOf((*io.LimitedReader)(nil)), + "PipeReader": reflect.ValueOf((*io.PipeReader)(nil)), + "PipeWriter": reflect.ValueOf((*io.PipeWriter)(nil)), + "ReadCloser": reflect.ValueOf((*io.ReadCloser)(nil)), + "ReadSeekCloser": reflect.ValueOf((*io.ReadSeekCloser)(nil)), + "ReadSeeker": reflect.ValueOf((*io.ReadSeeker)(nil)), + "ReadWriteCloser": reflect.ValueOf((*io.ReadWriteCloser)(nil)), + "ReadWriteSeeker": reflect.ValueOf((*io.ReadWriteSeeker)(nil)), + "ReadWriter": reflect.ValueOf((*io.ReadWriter)(nil)), + "Reader": reflect.ValueOf((*io.Reader)(nil)), + "ReaderAt": reflect.ValueOf((*io.ReaderAt)(nil)), + "ReaderFrom": reflect.ValueOf((*io.ReaderFrom)(nil)), + "RuneReader": reflect.ValueOf((*io.RuneReader)(nil)), + "RuneScanner": reflect.ValueOf((*io.RuneScanner)(nil)), + "SectionReader": reflect.ValueOf((*io.SectionReader)(nil)), + "Seeker": reflect.ValueOf((*io.Seeker)(nil)), + "StringWriter": reflect.ValueOf((*io.StringWriter)(nil)), + "WriteCloser": reflect.ValueOf((*io.WriteCloser)(nil)), + "WriteSeeker": reflect.ValueOf((*io.WriteSeeker)(nil)), + "Writer": reflect.ValueOf((*io.Writer)(nil)), + "WriterAt": reflect.ValueOf((*io.WriterAt)(nil)), + "WriterTo": reflect.ValueOf((*io.WriterTo)(nil)), + + // interface wrapper definitions + "_ByteReader": reflect.ValueOf((*_io_ByteReader)(nil)), + "_ByteScanner": reflect.ValueOf((*_io_ByteScanner)(nil)), + "_ByteWriter": reflect.ValueOf((*_io_ByteWriter)(nil)), + "_Closer": reflect.ValueOf((*_io_Closer)(nil)), + "_ReadCloser": reflect.ValueOf((*_io_ReadCloser)(nil)), + "_ReadSeekCloser": reflect.ValueOf((*_io_ReadSeekCloser)(nil)), + "_ReadSeeker": reflect.ValueOf((*_io_ReadSeeker)(nil)), + "_ReadWriteCloser": reflect.ValueOf((*_io_ReadWriteCloser)(nil)), + "_ReadWriteSeeker": reflect.ValueOf((*_io_ReadWriteSeeker)(nil)), + "_ReadWriter": reflect.ValueOf((*_io_ReadWriter)(nil)), + "_Reader": reflect.ValueOf((*_io_Reader)(nil)), + "_ReaderAt": reflect.ValueOf((*_io_ReaderAt)(nil)), + "_ReaderFrom": reflect.ValueOf((*_io_ReaderFrom)(nil)), + "_RuneReader": reflect.ValueOf((*_io_RuneReader)(nil)), + "_RuneScanner": reflect.ValueOf((*_io_RuneScanner)(nil)), + "_Seeker": reflect.ValueOf((*_io_Seeker)(nil)), + "_StringWriter": reflect.ValueOf((*_io_StringWriter)(nil)), + "_WriteCloser": reflect.ValueOf((*_io_WriteCloser)(nil)), + "_WriteSeeker": reflect.ValueOf((*_io_WriteSeeker)(nil)), + "_Writer": reflect.ValueOf((*_io_Writer)(nil)), + "_WriterAt": reflect.ValueOf((*_io_WriterAt)(nil)), + "_WriterTo": reflect.ValueOf((*_io_WriterTo)(nil)), + } +} + +// _io_ByteReader is an interface wrapper for ByteReader type +type _io_ByteReader struct { + IValue interface{} + WReadByte func() (byte, error) +} + +func (W _io_ByteReader) ReadByte() (byte, error) { + return W.WReadByte() +} + +// _io_ByteScanner is an interface wrapper for ByteScanner type +type _io_ByteScanner struct { + IValue interface{} + WReadByte func() (byte, error) + WUnreadByte func() error +} + +func (W _io_ByteScanner) ReadByte() (byte, error) { + return W.WReadByte() +} +func (W _io_ByteScanner) UnreadByte() error { + return W.WUnreadByte() +} + +// _io_ByteWriter is an interface wrapper for ByteWriter type +type _io_ByteWriter struct { + IValue interface{} + WWriteByte func(c byte) error +} + +func (W _io_ByteWriter) WriteByte(c byte) error { + return W.WWriteByte(c) +} + +// _io_Closer is an interface wrapper for Closer type +type _io_Closer struct { + IValue interface{} + WClose func() error +} + +func (W _io_Closer) Close() error { + return W.WClose() +} + +// _io_ReadCloser is an interface wrapper for ReadCloser type +type _io_ReadCloser struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) +} + +func (W _io_ReadCloser) Close() error { + return W.WClose() +} +func (W _io_ReadCloser) Read(p []byte) (n int, err error) { + return W.WRead(p) +} + +// _io_ReadSeekCloser is an interface wrapper for ReadSeekCloser type +type _io_ReadSeekCloser struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _io_ReadSeekCloser) Close() error { + return W.WClose() +} +func (W _io_ReadSeekCloser) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadSeekCloser) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} + +// _io_ReadSeeker is an interface wrapper for ReadSeeker type +type _io_ReadSeeker struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _io_ReadSeeker) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadSeeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} + +// _io_ReadWriteCloser is an interface wrapper for ReadWriteCloser type +type _io_ReadWriteCloser struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_ReadWriteCloser) Close() error { + return W.WClose() +} +func (W _io_ReadWriteCloser) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadWriteCloser) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_ReadWriteSeeker is an interface wrapper for ReadWriteSeeker type +type _io_ReadWriteSeeker struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_ReadWriteSeeker) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadWriteSeeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} +func (W _io_ReadWriteSeeker) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_ReadWriter is an interface wrapper for ReadWriter type +type _io_ReadWriter struct { + IValue interface{} + WRead func(p []byte) (n int, err error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_ReadWriter) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _io_ReadWriter) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_Reader is an interface wrapper for Reader type +type _io_Reader struct { + IValue interface{} + WRead func(p []byte) (n int, err error) +} + +func (W _io_Reader) Read(p []byte) (n int, err error) { + return W.WRead(p) +} + +// _io_ReaderAt is an interface wrapper for ReaderAt type +type _io_ReaderAt struct { + IValue interface{} + WReadAt func(p []byte, off int64) (n int, err error) +} + +func (W _io_ReaderAt) ReadAt(p []byte, off int64) (n int, err error) { + return W.WReadAt(p, off) +} + +// _io_ReaderFrom is an interface wrapper for ReaderFrom type +type _io_ReaderFrom struct { + IValue interface{} + WReadFrom func(r io.Reader) (n int64, err error) +} + +func (W _io_ReaderFrom) ReadFrom(r io.Reader) (n int64, err error) { + return W.WReadFrom(r) +} + +// _io_RuneReader is an interface wrapper for RuneReader type +type _io_RuneReader struct { + IValue interface{} + WReadRune func() (r rune, size int, err error) +} + +func (W _io_RuneReader) ReadRune() (r rune, size int, err error) { + return W.WReadRune() +} + +// _io_RuneScanner is an interface wrapper for RuneScanner type +type _io_RuneScanner struct { + IValue interface{} + WReadRune func() (r rune, size int, err error) + WUnreadRune func() error +} + +func (W _io_RuneScanner) ReadRune() (r rune, size int, err error) { + return W.WReadRune() +} +func (W _io_RuneScanner) UnreadRune() error { + return W.WUnreadRune() +} + +// _io_Seeker is an interface wrapper for Seeker type +type _io_Seeker struct { + IValue interface{} + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _io_Seeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} + +// _io_StringWriter is an interface wrapper for StringWriter type +type _io_StringWriter struct { + IValue interface{} + WWriteString func(s string) (n int, err error) +} + +func (W _io_StringWriter) WriteString(s string) (n int, err error) { + return W.WWriteString(s) +} + +// _io_WriteCloser is an interface wrapper for WriteCloser type +type _io_WriteCloser struct { + IValue interface{} + WClose func() error + WWrite func(p []byte) (n int, err error) +} + +func (W _io_WriteCloser) Close() error { + return W.WClose() +} +func (W _io_WriteCloser) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_WriteSeeker is an interface wrapper for WriteSeeker type +type _io_WriteSeeker struct { + IValue interface{} + WSeek func(offset int64, whence int) (int64, error) + WWrite func(p []byte) (n int, err error) +} + +func (W _io_WriteSeeker) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} +func (W _io_WriteSeeker) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_Writer is an interface wrapper for Writer type +type _io_Writer struct { + IValue interface{} + WWrite func(p []byte) (n int, err error) +} + +func (W _io_Writer) Write(p []byte) (n int, err error) { + return W.WWrite(p) +} + +// _io_WriterAt is an interface wrapper for WriterAt type +type _io_WriterAt struct { + IValue interface{} + WWriteAt func(p []byte, off int64) (n int, err error) +} + +func (W _io_WriterAt) WriteAt(p []byte, off int64) (n int, err error) { + return W.WWriteAt(p, off) +} + +// _io_WriterTo is an interface wrapper for WriterTo type +type _io_WriterTo struct { + IValue interface{} + WWriteTo func(w io.Writer) (n int64, err error) +} + +func (W _io_WriterTo) WriteTo(w io.Writer) (n int64, err error) { + return W.WWriteTo(w) +} diff --git a/stdlib/go1_19_io_fs.go b/stdlib/go1_19_io_fs.go new file mode 100644 index 000000000..1effe3e9b --- /dev/null +++ b/stdlib/go1_19_io_fs.go @@ -0,0 +1,246 @@ +// Code generated by 'yaegi extract io/fs'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "io/fs" + "reflect" + "time" +) + +func init() { + Symbols["io/fs/fs"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrClosed": reflect.ValueOf(&fs.ErrClosed).Elem(), + "ErrExist": reflect.ValueOf(&fs.ErrExist).Elem(), + "ErrInvalid": reflect.ValueOf(&fs.ErrInvalid).Elem(), + "ErrNotExist": reflect.ValueOf(&fs.ErrNotExist).Elem(), + "ErrPermission": reflect.ValueOf(&fs.ErrPermission).Elem(), + "FileInfoToDirEntry": reflect.ValueOf(fs.FileInfoToDirEntry), + "Glob": reflect.ValueOf(fs.Glob), + "ModeAppend": reflect.ValueOf(fs.ModeAppend), + "ModeCharDevice": reflect.ValueOf(fs.ModeCharDevice), + "ModeDevice": reflect.ValueOf(fs.ModeDevice), + "ModeDir": reflect.ValueOf(fs.ModeDir), + "ModeExclusive": reflect.ValueOf(fs.ModeExclusive), + "ModeIrregular": reflect.ValueOf(fs.ModeIrregular), + "ModeNamedPipe": reflect.ValueOf(fs.ModeNamedPipe), + "ModePerm": reflect.ValueOf(fs.ModePerm), + "ModeSetgid": reflect.ValueOf(fs.ModeSetgid), + "ModeSetuid": reflect.ValueOf(fs.ModeSetuid), + "ModeSocket": reflect.ValueOf(fs.ModeSocket), + "ModeSticky": reflect.ValueOf(fs.ModeSticky), + "ModeSymlink": reflect.ValueOf(fs.ModeSymlink), + "ModeTemporary": reflect.ValueOf(fs.ModeTemporary), + "ModeType": reflect.ValueOf(fs.ModeType), + "ReadDir": reflect.ValueOf(fs.ReadDir), + "ReadFile": reflect.ValueOf(fs.ReadFile), + "SkipDir": reflect.ValueOf(&fs.SkipDir).Elem(), + "Stat": reflect.ValueOf(fs.Stat), + "Sub": reflect.ValueOf(fs.Sub), + "ValidPath": reflect.ValueOf(fs.ValidPath), + "WalkDir": reflect.ValueOf(fs.WalkDir), + + // type definitions + "DirEntry": reflect.ValueOf((*fs.DirEntry)(nil)), + "FS": reflect.ValueOf((*fs.FS)(nil)), + "File": reflect.ValueOf((*fs.File)(nil)), + "FileInfo": reflect.ValueOf((*fs.FileInfo)(nil)), + "FileMode": reflect.ValueOf((*fs.FileMode)(nil)), + "GlobFS": reflect.ValueOf((*fs.GlobFS)(nil)), + "PathError": reflect.ValueOf((*fs.PathError)(nil)), + "ReadDirFS": reflect.ValueOf((*fs.ReadDirFS)(nil)), + "ReadDirFile": reflect.ValueOf((*fs.ReadDirFile)(nil)), + "ReadFileFS": reflect.ValueOf((*fs.ReadFileFS)(nil)), + "StatFS": reflect.ValueOf((*fs.StatFS)(nil)), + "SubFS": reflect.ValueOf((*fs.SubFS)(nil)), + "WalkDirFunc": reflect.ValueOf((*fs.WalkDirFunc)(nil)), + + // interface wrapper definitions + "_DirEntry": reflect.ValueOf((*_io_fs_DirEntry)(nil)), + "_FS": reflect.ValueOf((*_io_fs_FS)(nil)), + "_File": reflect.ValueOf((*_io_fs_File)(nil)), + "_FileInfo": reflect.ValueOf((*_io_fs_FileInfo)(nil)), + "_GlobFS": reflect.ValueOf((*_io_fs_GlobFS)(nil)), + "_ReadDirFS": reflect.ValueOf((*_io_fs_ReadDirFS)(nil)), + "_ReadDirFile": reflect.ValueOf((*_io_fs_ReadDirFile)(nil)), + "_ReadFileFS": reflect.ValueOf((*_io_fs_ReadFileFS)(nil)), + "_StatFS": reflect.ValueOf((*_io_fs_StatFS)(nil)), + "_SubFS": reflect.ValueOf((*_io_fs_SubFS)(nil)), + } +} + +// _io_fs_DirEntry is an interface wrapper for DirEntry type +type _io_fs_DirEntry struct { + IValue interface{} + WInfo func() (fs.FileInfo, error) + WIsDir func() bool + WName func() string + WType func() fs.FileMode +} + +func (W _io_fs_DirEntry) Info() (fs.FileInfo, error) { + return W.WInfo() +} +func (W _io_fs_DirEntry) IsDir() bool { + return W.WIsDir() +} +func (W _io_fs_DirEntry) Name() string { + return W.WName() +} +func (W _io_fs_DirEntry) Type() fs.FileMode { + return W.WType() +} + +// _io_fs_FS is an interface wrapper for FS type +type _io_fs_FS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) +} + +func (W _io_fs_FS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} + +// _io_fs_File is an interface wrapper for File type +type _io_fs_File struct { + IValue interface{} + WClose func() error + WRead func(a0 []byte) (int, error) + WStat func() (fs.FileInfo, error) +} + +func (W _io_fs_File) Close() error { + return W.WClose() +} +func (W _io_fs_File) Read(a0 []byte) (int, error) { + return W.WRead(a0) +} +func (W _io_fs_File) Stat() (fs.FileInfo, error) { + return W.WStat() +} + +// _io_fs_FileInfo is an interface wrapper for FileInfo type +type _io_fs_FileInfo struct { + IValue interface{} + WIsDir func() bool + WModTime func() time.Time + WMode func() fs.FileMode + WName func() string + WSize func() int64 + WSys func() any +} + +func (W _io_fs_FileInfo) IsDir() bool { + return W.WIsDir() +} +func (W _io_fs_FileInfo) ModTime() time.Time { + return W.WModTime() +} +func (W _io_fs_FileInfo) Mode() fs.FileMode { + return W.WMode() +} +func (W _io_fs_FileInfo) Name() string { + return W.WName() +} +func (W _io_fs_FileInfo) Size() int64 { + return W.WSize() +} +func (W _io_fs_FileInfo) Sys() any { + return W.WSys() +} + +// _io_fs_GlobFS is an interface wrapper for GlobFS type +type _io_fs_GlobFS struct { + IValue interface{} + WGlob func(pattern string) ([]string, error) + WOpen func(name string) (fs.File, error) +} + +func (W _io_fs_GlobFS) Glob(pattern string) ([]string, error) { + return W.WGlob(pattern) +} +func (W _io_fs_GlobFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} + +// _io_fs_ReadDirFS is an interface wrapper for ReadDirFS type +type _io_fs_ReadDirFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WReadDir func(name string) ([]fs.DirEntry, error) +} + +func (W _io_fs_ReadDirFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_ReadDirFS) ReadDir(name string) ([]fs.DirEntry, error) { + return W.WReadDir(name) +} + +// _io_fs_ReadDirFile is an interface wrapper for ReadDirFile type +type _io_fs_ReadDirFile struct { + IValue interface{} + WClose func() error + WRead func(a0 []byte) (int, error) + WReadDir func(n int) ([]fs.DirEntry, error) + WStat func() (fs.FileInfo, error) +} + +func (W _io_fs_ReadDirFile) Close() error { + return W.WClose() +} +func (W _io_fs_ReadDirFile) Read(a0 []byte) (int, error) { + return W.WRead(a0) +} +func (W _io_fs_ReadDirFile) ReadDir(n int) ([]fs.DirEntry, error) { + return W.WReadDir(n) +} +func (W _io_fs_ReadDirFile) Stat() (fs.FileInfo, error) { + return W.WStat() +} + +// _io_fs_ReadFileFS is an interface wrapper for ReadFileFS type +type _io_fs_ReadFileFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WReadFile func(name string) ([]byte, error) +} + +func (W _io_fs_ReadFileFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_ReadFileFS) ReadFile(name string) ([]byte, error) { + return W.WReadFile(name) +} + +// _io_fs_StatFS is an interface wrapper for StatFS type +type _io_fs_StatFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WStat func(name string) (fs.FileInfo, error) +} + +func (W _io_fs_StatFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_StatFS) Stat(name string) (fs.FileInfo, error) { + return W.WStat(name) +} + +// _io_fs_SubFS is an interface wrapper for SubFS type +type _io_fs_SubFS struct { + IValue interface{} + WOpen func(name string) (fs.File, error) + WSub func(dir string) (fs.FS, error) +} + +func (W _io_fs_SubFS) Open(name string) (fs.File, error) { + return W.WOpen(name) +} +func (W _io_fs_SubFS) Sub(dir string) (fs.FS, error) { + return W.WSub(dir) +} diff --git a/stdlib/go1_19_io_ioutil.go b/stdlib/go1_19_io_ioutil.go new file mode 100644 index 000000000..3c5d54a9b --- /dev/null +++ b/stdlib/go1_19_io_ioutil.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract io/ioutil'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "io/ioutil" + "reflect" +) + +func init() { + Symbols["io/ioutil/ioutil"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Discard": reflect.ValueOf(&ioutil.Discard).Elem(), + "NopCloser": reflect.ValueOf(ioutil.NopCloser), + "ReadAll": reflect.ValueOf(ioutil.ReadAll), + "ReadDir": reflect.ValueOf(ioutil.ReadDir), + "ReadFile": reflect.ValueOf(ioutil.ReadFile), + "TempDir": reflect.ValueOf(ioutil.TempDir), + "TempFile": reflect.ValueOf(ioutil.TempFile), + "WriteFile": reflect.ValueOf(ioutil.WriteFile), + } +} diff --git a/stdlib/go1_19_log.go b/stdlib/go1_19_log.go new file mode 100644 index 000000000..a6aa32429 --- /dev/null +++ b/stdlib/go1_19_log.go @@ -0,0 +1,48 @@ +// Code generated by 'yaegi extract log'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "log" + "reflect" +) + +func init() { + Symbols["log/log"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Default": reflect.ValueOf(log.Default), + "Fatal": reflect.ValueOf(logFatal), + "Fatalf": reflect.ValueOf(logFatalf), + "Fatalln": reflect.ValueOf(logFatalln), + "Flags": reflect.ValueOf(log.Flags), + "LUTC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Ldate": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Llongfile": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lmicroseconds": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Lmsgprefix": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Lshortfile": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "LstdFlags": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Ltime": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "New": reflect.ValueOf(logNew), + "Output": reflect.ValueOf(log.Output), + "Panic": reflect.ValueOf(log.Panic), + "Panicf": reflect.ValueOf(log.Panicf), + "Panicln": reflect.ValueOf(log.Panicln), + "Prefix": reflect.ValueOf(log.Prefix), + "Print": reflect.ValueOf(log.Print), + "Printf": reflect.ValueOf(log.Printf), + "Println": reflect.ValueOf(log.Println), + "SetFlags": reflect.ValueOf(log.SetFlags), + "SetOutput": reflect.ValueOf(log.SetOutput), + "SetPrefix": reflect.ValueOf(log.SetPrefix), + "Writer": reflect.ValueOf(log.Writer), + + // type definitions + "Logger": reflect.ValueOf((*logLogger)(nil)), + } +} diff --git a/stdlib/go1_19_log_syslog.go b/stdlib/go1_19_log_syslog.go new file mode 100644 index 000000000..1b691e1ed --- /dev/null +++ b/stdlib/go1_19_log_syslog.go @@ -0,0 +1,52 @@ +// Code generated by 'yaegi extract log/syslog'. DO NOT EDIT. + +//go:build go1.19 && !windows && !nacl && !plan9 +// +build go1.19,!windows,!nacl,!plan9 + +package stdlib + +import ( + "log/syslog" + "reflect" +) + +func init() { + Symbols["log/syslog/syslog"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Dial": reflect.ValueOf(syslog.Dial), + "LOG_ALERT": reflect.ValueOf(syslog.LOG_ALERT), + "LOG_AUTH": reflect.ValueOf(syslog.LOG_AUTH), + "LOG_AUTHPRIV": reflect.ValueOf(syslog.LOG_AUTHPRIV), + "LOG_CRIT": reflect.ValueOf(syslog.LOG_CRIT), + "LOG_CRON": reflect.ValueOf(syslog.LOG_CRON), + "LOG_DAEMON": reflect.ValueOf(syslog.LOG_DAEMON), + "LOG_DEBUG": reflect.ValueOf(syslog.LOG_DEBUG), + "LOG_EMERG": reflect.ValueOf(syslog.LOG_EMERG), + "LOG_ERR": reflect.ValueOf(syslog.LOG_ERR), + "LOG_FTP": reflect.ValueOf(syslog.LOG_FTP), + "LOG_INFO": reflect.ValueOf(syslog.LOG_INFO), + "LOG_KERN": reflect.ValueOf(syslog.LOG_KERN), + "LOG_LOCAL0": reflect.ValueOf(syslog.LOG_LOCAL0), + "LOG_LOCAL1": reflect.ValueOf(syslog.LOG_LOCAL1), + "LOG_LOCAL2": reflect.ValueOf(syslog.LOG_LOCAL2), + "LOG_LOCAL3": reflect.ValueOf(syslog.LOG_LOCAL3), + "LOG_LOCAL4": reflect.ValueOf(syslog.LOG_LOCAL4), + "LOG_LOCAL5": reflect.ValueOf(syslog.LOG_LOCAL5), + "LOG_LOCAL6": reflect.ValueOf(syslog.LOG_LOCAL6), + "LOG_LOCAL7": reflect.ValueOf(syslog.LOG_LOCAL7), + "LOG_LPR": reflect.ValueOf(syslog.LOG_LPR), + "LOG_MAIL": reflect.ValueOf(syslog.LOG_MAIL), + "LOG_NEWS": reflect.ValueOf(syslog.LOG_NEWS), + "LOG_NOTICE": reflect.ValueOf(syslog.LOG_NOTICE), + "LOG_SYSLOG": reflect.ValueOf(syslog.LOG_SYSLOG), + "LOG_USER": reflect.ValueOf(syslog.LOG_USER), + "LOG_UUCP": reflect.ValueOf(syslog.LOG_UUCP), + "LOG_WARNING": reflect.ValueOf(syslog.LOG_WARNING), + "New": reflect.ValueOf(syslog.New), + "NewLogger": reflect.ValueOf(syslog.NewLogger), + + // type definitions + "Priority": reflect.ValueOf((*syslog.Priority)(nil)), + "Writer": reflect.ValueOf((*syslog.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_math.go b/stdlib/go1_19_math.go new file mode 100644 index 000000000..70258ed86 --- /dev/null +++ b/stdlib/go1_19_math.go @@ -0,0 +1,116 @@ +// Code generated by 'yaegi extract math'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "math" + "reflect" +) + +func init() { + Symbols["math/math"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Abs": reflect.ValueOf(math.Abs), + "Acos": reflect.ValueOf(math.Acos), + "Acosh": reflect.ValueOf(math.Acosh), + "Asin": reflect.ValueOf(math.Asin), + "Asinh": reflect.ValueOf(math.Asinh), + "Atan": reflect.ValueOf(math.Atan), + "Atan2": reflect.ValueOf(math.Atan2), + "Atanh": reflect.ValueOf(math.Atanh), + "Cbrt": reflect.ValueOf(math.Cbrt), + "Ceil": reflect.ValueOf(math.Ceil), + "Copysign": reflect.ValueOf(math.Copysign), + "Cos": reflect.ValueOf(math.Cos), + "Cosh": reflect.ValueOf(math.Cosh), + "Dim": reflect.ValueOf(math.Dim), + "E": reflect.ValueOf(constant.MakeFromLiteral("2.71828182845904523536028747135266249775724709369995957496696762566337824315673231520670375558666729784504486779277967997696994772644702281675346915668215131895555530285035761295375777990557253360748291015625", token.FLOAT, 0)), + "Erf": reflect.ValueOf(math.Erf), + "Erfc": reflect.ValueOf(math.Erfc), + "Erfcinv": reflect.ValueOf(math.Erfcinv), + "Erfinv": reflect.ValueOf(math.Erfinv), + "Exp": reflect.ValueOf(math.Exp), + "Exp2": reflect.ValueOf(math.Exp2), + "Expm1": reflect.ValueOf(math.Expm1), + "FMA": reflect.ValueOf(math.FMA), + "Float32bits": reflect.ValueOf(math.Float32bits), + "Float32frombits": reflect.ValueOf(math.Float32frombits), + "Float64bits": reflect.ValueOf(math.Float64bits), + "Float64frombits": reflect.ValueOf(math.Float64frombits), + "Floor": reflect.ValueOf(math.Floor), + "Frexp": reflect.ValueOf(math.Frexp), + "Gamma": reflect.ValueOf(math.Gamma), + "Hypot": reflect.ValueOf(math.Hypot), + "Ilogb": reflect.ValueOf(math.Ilogb), + "Inf": reflect.ValueOf(math.Inf), + "IsInf": reflect.ValueOf(math.IsInf), + "IsNaN": reflect.ValueOf(math.IsNaN), + "J0": reflect.ValueOf(math.J0), + "J1": reflect.ValueOf(math.J1), + "Jn": reflect.ValueOf(math.Jn), + "Ldexp": reflect.ValueOf(math.Ldexp), + "Lgamma": reflect.ValueOf(math.Lgamma), + "Ln10": reflect.ValueOf(constant.MakeFromLiteral("2.30258509299404568401799145468436420760110148862877297603332784146804725494827975466552490443295866962642372461496758838959542646932914211937012833592062802600362869664962772731087170541286468505859375", token.FLOAT, 0)), + "Ln2": reflect.ValueOf(constant.MakeFromLiteral("0.6931471805599453094172321214581765680755001343602552541206800092715999496201383079363438206637927920954189307729314303884387720696314608777673678644642390655170150035209453154294578780536539852619171142578125", token.FLOAT, 0)), + "Log": reflect.ValueOf(math.Log), + "Log10": reflect.ValueOf(math.Log10), + "Log10E": reflect.ValueOf(constant.MakeFromLiteral("0.43429448190325182765112891891660508229439700580366656611445378416636798190620320263064286300825210972160277489744884502676719847561509639618196799746596688688378591625127711495224502868950366973876953125", token.FLOAT, 0)), + "Log1p": reflect.ValueOf(math.Log1p), + "Log2": reflect.ValueOf(math.Log2), + "Log2E": reflect.ValueOf(constant.MakeFromLiteral("1.44269504088896340735992468100189213742664595415298593413544940772066427768997545329060870636212628972710992130324953463427359402479619301286929040235571747101382214539290471666532766903401352465152740478515625", token.FLOAT, 0)), + "Logb": reflect.ValueOf(math.Logb), + "Max": reflect.ValueOf(math.Max), + "MaxFloat32": reflect.ValueOf(constant.MakeFromLiteral("340282346638528859811704183484516925440", token.FLOAT, 0)), + "MaxFloat64": reflect.ValueOf(constant.MakeFromLiteral("179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368", token.FLOAT, 0)), + "MaxInt": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "MaxInt16": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "MaxInt32": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "MaxInt64": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "MaxInt8": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "MaxUint": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), + "MaxUint16": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "MaxUint32": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "MaxUint64": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), + "MaxUint8": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "Min": reflect.ValueOf(math.Min), + "MinInt": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), + "MinInt16": reflect.ValueOf(constant.MakeFromLiteral("-32768", token.INT, 0)), + "MinInt32": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MinInt64": reflect.ValueOf(constant.MakeFromLiteral("-9223372036854775808", token.INT, 0)), + "MinInt8": reflect.ValueOf(constant.MakeFromLiteral("-128", token.INT, 0)), + "Mod": reflect.ValueOf(math.Mod), + "Modf": reflect.ValueOf(math.Modf), + "NaN": reflect.ValueOf(math.NaN), + "Nextafter": reflect.ValueOf(math.Nextafter), + "Nextafter32": reflect.ValueOf(math.Nextafter32), + "Phi": reflect.ValueOf(constant.MakeFromLiteral("1.6180339887498948482045868343656381177203091798057628621354486119746080982153796619881086049305501566952211682590824739205931370737029882996587050475921915678674035433959321750307935872115194797515869140625", token.FLOAT, 0)), + "Pi": reflect.ValueOf(constant.MakeFromLiteral("3.141592653589793238462643383279502884197169399375105820974944594789982923695635954704435713335896673485663389728754819466702315787113662862838515639906529162340867271374644786874341662041842937469482421875", token.FLOAT, 0)), + "Pow": reflect.ValueOf(math.Pow), + "Pow10": reflect.ValueOf(math.Pow10), + "Remainder": reflect.ValueOf(math.Remainder), + "Round": reflect.ValueOf(math.Round), + "RoundToEven": reflect.ValueOf(math.RoundToEven), + "Signbit": reflect.ValueOf(math.Signbit), + "Sin": reflect.ValueOf(math.Sin), + "Sincos": reflect.ValueOf(math.Sincos), + "Sinh": reflect.ValueOf(math.Sinh), + "SmallestNonzeroFloat32": reflect.ValueOf(constant.MakeFromLiteral("1.40129846432481707092372958328991613128026194187651577175706828388979108268586060148663818836212158203125e-45", token.FLOAT, 0)), + "SmallestNonzeroFloat64": reflect.ValueOf(constant.MakeFromLiteral("4.940656458412465441765687928682213723650598026143247644255856825006755072702087518652998363616359923797965646954457177309266567103559397963987747960107818781263007131903114045278458171678489821036887186360569987307230500063874091535649843873124733972731696151400317153853980741262385655911710266585566867681870395603106249319452715914924553293054565444011274801297099995419319894090804165633245247571478690147267801593552386115501348035264934720193790268107107491703332226844753335720832431936092382893458368060106011506169809753078342277318329247904982524730776375927247874656084778203734469699533647017972677717585125660551199131504891101451037862738167250955837389733598993664809941164205702637090279242767544565229087538682506419718265533447265625e-324", token.FLOAT, 0)), + "Sqrt": reflect.ValueOf(math.Sqrt), + "Sqrt2": reflect.ValueOf(constant.MakeFromLiteral("1.414213562373095048801688724209698078569671875376948073176679739576083351575381440094441524123797447886801949755143139115339040409162552642832693297721230919563348109313505318596071447245776653289794921875", token.FLOAT, 0)), + "SqrtE": reflect.ValueOf(constant.MakeFromLiteral("1.64872127070012814684865078781416357165377610071014801157507931167328763229187870850146925823776361770041160388013884200789716007979526823569827080974091691342077871211546646890155898290686309337615966796875", token.FLOAT, 0)), + "SqrtPhi": reflect.ValueOf(constant.MakeFromLiteral("1.2720196495140689642524224617374914917156080418400962486166403754616080542166459302584536396369727769747312116100875915825863540562126478288118732191412003988041797518382391984914647764526307582855224609375", token.FLOAT, 0)), + "SqrtPi": reflect.ValueOf(constant.MakeFromLiteral("1.772453850905516027298167483341145182797549456122387128213807789740599698370237052541269446184448945647349951047154197675245574635259260134350885938555625028620527962319730619356050738133490085601806640625", token.FLOAT, 0)), + "Tan": reflect.ValueOf(math.Tan), + "Tanh": reflect.ValueOf(math.Tanh), + "Trunc": reflect.ValueOf(math.Trunc), + "Y0": reflect.ValueOf(math.Y0), + "Y1": reflect.ValueOf(math.Y1), + "Yn": reflect.ValueOf(math.Yn), + } +} diff --git a/stdlib/go1_19_math_big.go b/stdlib/go1_19_math_big.go new file mode 100644 index 000000000..ca24c526a --- /dev/null +++ b/stdlib/go1_19_math_big.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract math/big'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "math/big" + "reflect" +) + +func init() { + Symbols["math/big/big"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Above": reflect.ValueOf(big.Above), + "AwayFromZero": reflect.ValueOf(big.AwayFromZero), + "Below": reflect.ValueOf(big.Below), + "Exact": reflect.ValueOf(big.Exact), + "Jacobi": reflect.ValueOf(big.Jacobi), + "MaxBase": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "MaxExp": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "MaxPrec": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "MinExp": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "NewFloat": reflect.ValueOf(big.NewFloat), + "NewInt": reflect.ValueOf(big.NewInt), + "NewRat": reflect.ValueOf(big.NewRat), + "ParseFloat": reflect.ValueOf(big.ParseFloat), + "ToNearestAway": reflect.ValueOf(big.ToNearestAway), + "ToNearestEven": reflect.ValueOf(big.ToNearestEven), + "ToNegativeInf": reflect.ValueOf(big.ToNegativeInf), + "ToPositiveInf": reflect.ValueOf(big.ToPositiveInf), + "ToZero": reflect.ValueOf(big.ToZero), + + // type definitions + "Accuracy": reflect.ValueOf((*big.Accuracy)(nil)), + "ErrNaN": reflect.ValueOf((*big.ErrNaN)(nil)), + "Float": reflect.ValueOf((*big.Float)(nil)), + "Int": reflect.ValueOf((*big.Int)(nil)), + "Rat": reflect.ValueOf((*big.Rat)(nil)), + "RoundingMode": reflect.ValueOf((*big.RoundingMode)(nil)), + "Word": reflect.ValueOf((*big.Word)(nil)), + } +} diff --git a/stdlib/go1_19_math_bits.go b/stdlib/go1_19_math_bits.go new file mode 100644 index 000000000..247c5f3e0 --- /dev/null +++ b/stdlib/go1_19_math_bits.go @@ -0,0 +1,69 @@ +// Code generated by 'yaegi extract math/bits'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "math/bits" + "reflect" +) + +func init() { + Symbols["math/bits/bits"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Add": reflect.ValueOf(bits.Add), + "Add32": reflect.ValueOf(bits.Add32), + "Add64": reflect.ValueOf(bits.Add64), + "Div": reflect.ValueOf(bits.Div), + "Div32": reflect.ValueOf(bits.Div32), + "Div64": reflect.ValueOf(bits.Div64), + "LeadingZeros": reflect.ValueOf(bits.LeadingZeros), + "LeadingZeros16": reflect.ValueOf(bits.LeadingZeros16), + "LeadingZeros32": reflect.ValueOf(bits.LeadingZeros32), + "LeadingZeros64": reflect.ValueOf(bits.LeadingZeros64), + "LeadingZeros8": reflect.ValueOf(bits.LeadingZeros8), + "Len": reflect.ValueOf(bits.Len), + "Len16": reflect.ValueOf(bits.Len16), + "Len32": reflect.ValueOf(bits.Len32), + "Len64": reflect.ValueOf(bits.Len64), + "Len8": reflect.ValueOf(bits.Len8), + "Mul": reflect.ValueOf(bits.Mul), + "Mul32": reflect.ValueOf(bits.Mul32), + "Mul64": reflect.ValueOf(bits.Mul64), + "OnesCount": reflect.ValueOf(bits.OnesCount), + "OnesCount16": reflect.ValueOf(bits.OnesCount16), + "OnesCount32": reflect.ValueOf(bits.OnesCount32), + "OnesCount64": reflect.ValueOf(bits.OnesCount64), + "OnesCount8": reflect.ValueOf(bits.OnesCount8), + "Rem": reflect.ValueOf(bits.Rem), + "Rem32": reflect.ValueOf(bits.Rem32), + "Rem64": reflect.ValueOf(bits.Rem64), + "Reverse": reflect.ValueOf(bits.Reverse), + "Reverse16": reflect.ValueOf(bits.Reverse16), + "Reverse32": reflect.ValueOf(bits.Reverse32), + "Reverse64": reflect.ValueOf(bits.Reverse64), + "Reverse8": reflect.ValueOf(bits.Reverse8), + "ReverseBytes": reflect.ValueOf(bits.ReverseBytes), + "ReverseBytes16": reflect.ValueOf(bits.ReverseBytes16), + "ReverseBytes32": reflect.ValueOf(bits.ReverseBytes32), + "ReverseBytes64": reflect.ValueOf(bits.ReverseBytes64), + "RotateLeft": reflect.ValueOf(bits.RotateLeft), + "RotateLeft16": reflect.ValueOf(bits.RotateLeft16), + "RotateLeft32": reflect.ValueOf(bits.RotateLeft32), + "RotateLeft64": reflect.ValueOf(bits.RotateLeft64), + "RotateLeft8": reflect.ValueOf(bits.RotateLeft8), + "Sub": reflect.ValueOf(bits.Sub), + "Sub32": reflect.ValueOf(bits.Sub32), + "Sub64": reflect.ValueOf(bits.Sub64), + "TrailingZeros": reflect.ValueOf(bits.TrailingZeros), + "TrailingZeros16": reflect.ValueOf(bits.TrailingZeros16), + "TrailingZeros32": reflect.ValueOf(bits.TrailingZeros32), + "TrailingZeros64": reflect.ValueOf(bits.TrailingZeros64), + "TrailingZeros8": reflect.ValueOf(bits.TrailingZeros8), + "UintSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + } +} diff --git a/stdlib/go1_19_math_cmplx.go b/stdlib/go1_19_math_cmplx.go new file mode 100644 index 000000000..ab5b4c9e9 --- /dev/null +++ b/stdlib/go1_19_math_cmplx.go @@ -0,0 +1,44 @@ +// Code generated by 'yaegi extract math/cmplx'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "math/cmplx" + "reflect" +) + +func init() { + Symbols["math/cmplx/cmplx"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Abs": reflect.ValueOf(cmplx.Abs), + "Acos": reflect.ValueOf(cmplx.Acos), + "Acosh": reflect.ValueOf(cmplx.Acosh), + "Asin": reflect.ValueOf(cmplx.Asin), + "Asinh": reflect.ValueOf(cmplx.Asinh), + "Atan": reflect.ValueOf(cmplx.Atan), + "Atanh": reflect.ValueOf(cmplx.Atanh), + "Conj": reflect.ValueOf(cmplx.Conj), + "Cos": reflect.ValueOf(cmplx.Cos), + "Cosh": reflect.ValueOf(cmplx.Cosh), + "Cot": reflect.ValueOf(cmplx.Cot), + "Exp": reflect.ValueOf(cmplx.Exp), + "Inf": reflect.ValueOf(cmplx.Inf), + "IsInf": reflect.ValueOf(cmplx.IsInf), + "IsNaN": reflect.ValueOf(cmplx.IsNaN), + "Log": reflect.ValueOf(cmplx.Log), + "Log10": reflect.ValueOf(cmplx.Log10), + "NaN": reflect.ValueOf(cmplx.NaN), + "Phase": reflect.ValueOf(cmplx.Phase), + "Polar": reflect.ValueOf(cmplx.Polar), + "Pow": reflect.ValueOf(cmplx.Pow), + "Rect": reflect.ValueOf(cmplx.Rect), + "Sin": reflect.ValueOf(cmplx.Sin), + "Sinh": reflect.ValueOf(cmplx.Sinh), + "Sqrt": reflect.ValueOf(cmplx.Sqrt), + "Tan": reflect.ValueOf(cmplx.Tan), + "Tanh": reflect.ValueOf(cmplx.Tanh), + } +} diff --git a/stdlib/go1_19_math_rand.go b/stdlib/go1_19_math_rand.go new file mode 100644 index 000000000..b25ad36f1 --- /dev/null +++ b/stdlib/go1_19_math_rand.go @@ -0,0 +1,78 @@ +// Code generated by 'yaegi extract math/rand'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "math/rand" + "reflect" +) + +func init() { + Symbols["math/rand/rand"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ExpFloat64": reflect.ValueOf(rand.ExpFloat64), + "Float32": reflect.ValueOf(rand.Float32), + "Float64": reflect.ValueOf(rand.Float64), + "Int": reflect.ValueOf(rand.Int), + "Int31": reflect.ValueOf(rand.Int31), + "Int31n": reflect.ValueOf(rand.Int31n), + "Int63": reflect.ValueOf(rand.Int63), + "Int63n": reflect.ValueOf(rand.Int63n), + "Intn": reflect.ValueOf(rand.Intn), + "New": reflect.ValueOf(rand.New), + "NewSource": reflect.ValueOf(rand.NewSource), + "NewZipf": reflect.ValueOf(rand.NewZipf), + "NormFloat64": reflect.ValueOf(rand.NormFloat64), + "Perm": reflect.ValueOf(rand.Perm), + "Read": reflect.ValueOf(rand.Read), + "Seed": reflect.ValueOf(rand.Seed), + "Shuffle": reflect.ValueOf(rand.Shuffle), + "Uint32": reflect.ValueOf(rand.Uint32), + "Uint64": reflect.ValueOf(rand.Uint64), + + // type definitions + "Rand": reflect.ValueOf((*rand.Rand)(nil)), + "Source": reflect.ValueOf((*rand.Source)(nil)), + "Source64": reflect.ValueOf((*rand.Source64)(nil)), + "Zipf": reflect.ValueOf((*rand.Zipf)(nil)), + + // interface wrapper definitions + "_Source": reflect.ValueOf((*_math_rand_Source)(nil)), + "_Source64": reflect.ValueOf((*_math_rand_Source64)(nil)), + } +} + +// _math_rand_Source is an interface wrapper for Source type +type _math_rand_Source struct { + IValue interface{} + WInt63 func() int64 + WSeed func(seed int64) +} + +func (W _math_rand_Source) Int63() int64 { + return W.WInt63() +} +func (W _math_rand_Source) Seed(seed int64) { + W.WSeed(seed) +} + +// _math_rand_Source64 is an interface wrapper for Source64 type +type _math_rand_Source64 struct { + IValue interface{} + WInt63 func() int64 + WSeed func(seed int64) + WUint64 func() uint64 +} + +func (W _math_rand_Source64) Int63() int64 { + return W.WInt63() +} +func (W _math_rand_Source64) Seed(seed int64) { + W.WSeed(seed) +} +func (W _math_rand_Source64) Uint64() uint64 { + return W.WUint64() +} diff --git a/stdlib/go1_19_mime.go b/stdlib/go1_19_mime.go new file mode 100644 index 000000000..e8dd5aae6 --- /dev/null +++ b/stdlib/go1_19_mime.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract mime'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "mime" + "reflect" +) + +func init() { + Symbols["mime/mime"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AddExtensionType": reflect.ValueOf(mime.AddExtensionType), + "BEncoding": reflect.ValueOf(mime.BEncoding), + "ErrInvalidMediaParameter": reflect.ValueOf(&mime.ErrInvalidMediaParameter).Elem(), + "ExtensionsByType": reflect.ValueOf(mime.ExtensionsByType), + "FormatMediaType": reflect.ValueOf(mime.FormatMediaType), + "ParseMediaType": reflect.ValueOf(mime.ParseMediaType), + "QEncoding": reflect.ValueOf(mime.QEncoding), + "TypeByExtension": reflect.ValueOf(mime.TypeByExtension), + + // type definitions + "WordDecoder": reflect.ValueOf((*mime.WordDecoder)(nil)), + "WordEncoder": reflect.ValueOf((*mime.WordEncoder)(nil)), + } +} diff --git a/stdlib/go1_19_mime_multipart.go b/stdlib/go1_19_mime_multipart.go new file mode 100644 index 000000000..a324b6184 --- /dev/null +++ b/stdlib/go1_19_mime_multipart.go @@ -0,0 +1,53 @@ +// Code generated by 'yaegi extract mime/multipart'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "mime/multipart" + "reflect" +) + +func init() { + Symbols["mime/multipart/multipart"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrMessageTooLarge": reflect.ValueOf(&multipart.ErrMessageTooLarge).Elem(), + "NewReader": reflect.ValueOf(multipart.NewReader), + "NewWriter": reflect.ValueOf(multipart.NewWriter), + + // type definitions + "File": reflect.ValueOf((*multipart.File)(nil)), + "FileHeader": reflect.ValueOf((*multipart.FileHeader)(nil)), + "Form": reflect.ValueOf((*multipart.Form)(nil)), + "Part": reflect.ValueOf((*multipart.Part)(nil)), + "Reader": reflect.ValueOf((*multipart.Reader)(nil)), + "Writer": reflect.ValueOf((*multipart.Writer)(nil)), + + // interface wrapper definitions + "_File": reflect.ValueOf((*_mime_multipart_File)(nil)), + } +} + +// _mime_multipart_File is an interface wrapper for File type +type _mime_multipart_File struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WReadAt func(p []byte, off int64) (n int, err error) + WSeek func(offset int64, whence int) (int64, error) +} + +func (W _mime_multipart_File) Close() error { + return W.WClose() +} +func (W _mime_multipart_File) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _mime_multipart_File) ReadAt(p []byte, off int64) (n int, err error) { + return W.WReadAt(p, off) +} +func (W _mime_multipart_File) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} diff --git a/stdlib/go1_19_mime_quotedprintable.go b/stdlib/go1_19_mime_quotedprintable.go new file mode 100644 index 000000000..28aa61ef7 --- /dev/null +++ b/stdlib/go1_19_mime_quotedprintable.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract mime/quotedprintable'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "mime/quotedprintable" + "reflect" +) + +func init() { + Symbols["mime/quotedprintable/quotedprintable"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewReader": reflect.ValueOf(quotedprintable.NewReader), + "NewWriter": reflect.ValueOf(quotedprintable.NewWriter), + + // type definitions + "Reader": reflect.ValueOf((*quotedprintable.Reader)(nil)), + "Writer": reflect.ValueOf((*quotedprintable.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_net.go b/stdlib/go1_19_net.go new file mode 100644 index 000000000..3419be6e5 --- /dev/null +++ b/stdlib/go1_19_net.go @@ -0,0 +1,254 @@ +// Code generated by 'yaegi extract net'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "net" + "reflect" + "time" +) + +func init() { + Symbols["net/net"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CIDRMask": reflect.ValueOf(net.CIDRMask), + "DefaultResolver": reflect.ValueOf(&net.DefaultResolver).Elem(), + "Dial": reflect.ValueOf(net.Dial), + "DialIP": reflect.ValueOf(net.DialIP), + "DialTCP": reflect.ValueOf(net.DialTCP), + "DialTimeout": reflect.ValueOf(net.DialTimeout), + "DialUDP": reflect.ValueOf(net.DialUDP), + "DialUnix": reflect.ValueOf(net.DialUnix), + "ErrClosed": reflect.ValueOf(&net.ErrClosed).Elem(), + "ErrWriteToConnected": reflect.ValueOf(&net.ErrWriteToConnected).Elem(), + "FileConn": reflect.ValueOf(net.FileConn), + "FileListener": reflect.ValueOf(net.FileListener), + "FilePacketConn": reflect.ValueOf(net.FilePacketConn), + "FlagBroadcast": reflect.ValueOf(net.FlagBroadcast), + "FlagLoopback": reflect.ValueOf(net.FlagLoopback), + "FlagMulticast": reflect.ValueOf(net.FlagMulticast), + "FlagPointToPoint": reflect.ValueOf(net.FlagPointToPoint), + "FlagUp": reflect.ValueOf(net.FlagUp), + "IPv4": reflect.ValueOf(net.IPv4), + "IPv4Mask": reflect.ValueOf(net.IPv4Mask), + "IPv4allrouter": reflect.ValueOf(&net.IPv4allrouter).Elem(), + "IPv4allsys": reflect.ValueOf(&net.IPv4allsys).Elem(), + "IPv4bcast": reflect.ValueOf(&net.IPv4bcast).Elem(), + "IPv4len": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPv4zero": reflect.ValueOf(&net.IPv4zero).Elem(), + "IPv6interfacelocalallnodes": reflect.ValueOf(&net.IPv6interfacelocalallnodes).Elem(), + "IPv6len": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPv6linklocalallnodes": reflect.ValueOf(&net.IPv6linklocalallnodes).Elem(), + "IPv6linklocalallrouters": reflect.ValueOf(&net.IPv6linklocalallrouters).Elem(), + "IPv6loopback": reflect.ValueOf(&net.IPv6loopback).Elem(), + "IPv6unspecified": reflect.ValueOf(&net.IPv6unspecified).Elem(), + "IPv6zero": reflect.ValueOf(&net.IPv6zero).Elem(), + "InterfaceAddrs": reflect.ValueOf(net.InterfaceAddrs), + "InterfaceByIndex": reflect.ValueOf(net.InterfaceByIndex), + "InterfaceByName": reflect.ValueOf(net.InterfaceByName), + "Interfaces": reflect.ValueOf(net.Interfaces), + "JoinHostPort": reflect.ValueOf(net.JoinHostPort), + "Listen": reflect.ValueOf(net.Listen), + "ListenIP": reflect.ValueOf(net.ListenIP), + "ListenMulticastUDP": reflect.ValueOf(net.ListenMulticastUDP), + "ListenPacket": reflect.ValueOf(net.ListenPacket), + "ListenTCP": reflect.ValueOf(net.ListenTCP), + "ListenUDP": reflect.ValueOf(net.ListenUDP), + "ListenUnix": reflect.ValueOf(net.ListenUnix), + "ListenUnixgram": reflect.ValueOf(net.ListenUnixgram), + "LookupAddr": reflect.ValueOf(net.LookupAddr), + "LookupCNAME": reflect.ValueOf(net.LookupCNAME), + "LookupHost": reflect.ValueOf(net.LookupHost), + "LookupIP": reflect.ValueOf(net.LookupIP), + "LookupMX": reflect.ValueOf(net.LookupMX), + "LookupNS": reflect.ValueOf(net.LookupNS), + "LookupPort": reflect.ValueOf(net.LookupPort), + "LookupSRV": reflect.ValueOf(net.LookupSRV), + "LookupTXT": reflect.ValueOf(net.LookupTXT), + "ParseCIDR": reflect.ValueOf(net.ParseCIDR), + "ParseIP": reflect.ValueOf(net.ParseIP), + "ParseMAC": reflect.ValueOf(net.ParseMAC), + "Pipe": reflect.ValueOf(net.Pipe), + "ResolveIPAddr": reflect.ValueOf(net.ResolveIPAddr), + "ResolveTCPAddr": reflect.ValueOf(net.ResolveTCPAddr), + "ResolveUDPAddr": reflect.ValueOf(net.ResolveUDPAddr), + "ResolveUnixAddr": reflect.ValueOf(net.ResolveUnixAddr), + "SplitHostPort": reflect.ValueOf(net.SplitHostPort), + "TCPAddrFromAddrPort": reflect.ValueOf(net.TCPAddrFromAddrPort), + "UDPAddrFromAddrPort": reflect.ValueOf(net.UDPAddrFromAddrPort), + + // type definitions + "Addr": reflect.ValueOf((*net.Addr)(nil)), + "AddrError": reflect.ValueOf((*net.AddrError)(nil)), + "Buffers": reflect.ValueOf((*net.Buffers)(nil)), + "Conn": reflect.ValueOf((*net.Conn)(nil)), + "DNSConfigError": reflect.ValueOf((*net.DNSConfigError)(nil)), + "DNSError": reflect.ValueOf((*net.DNSError)(nil)), + "Dialer": reflect.ValueOf((*net.Dialer)(nil)), + "Error": reflect.ValueOf((*net.Error)(nil)), + "Flags": reflect.ValueOf((*net.Flags)(nil)), + "HardwareAddr": reflect.ValueOf((*net.HardwareAddr)(nil)), + "IP": reflect.ValueOf((*net.IP)(nil)), + "IPAddr": reflect.ValueOf((*net.IPAddr)(nil)), + "IPConn": reflect.ValueOf((*net.IPConn)(nil)), + "IPMask": reflect.ValueOf((*net.IPMask)(nil)), + "IPNet": reflect.ValueOf((*net.IPNet)(nil)), + "Interface": reflect.ValueOf((*net.Interface)(nil)), + "InvalidAddrError": reflect.ValueOf((*net.InvalidAddrError)(nil)), + "ListenConfig": reflect.ValueOf((*net.ListenConfig)(nil)), + "Listener": reflect.ValueOf((*net.Listener)(nil)), + "MX": reflect.ValueOf((*net.MX)(nil)), + "NS": reflect.ValueOf((*net.NS)(nil)), + "OpError": reflect.ValueOf((*net.OpError)(nil)), + "PacketConn": reflect.ValueOf((*net.PacketConn)(nil)), + "ParseError": reflect.ValueOf((*net.ParseError)(nil)), + "Resolver": reflect.ValueOf((*net.Resolver)(nil)), + "SRV": reflect.ValueOf((*net.SRV)(nil)), + "TCPAddr": reflect.ValueOf((*net.TCPAddr)(nil)), + "TCPConn": reflect.ValueOf((*net.TCPConn)(nil)), + "TCPListener": reflect.ValueOf((*net.TCPListener)(nil)), + "UDPAddr": reflect.ValueOf((*net.UDPAddr)(nil)), + "UDPConn": reflect.ValueOf((*net.UDPConn)(nil)), + "UnixAddr": reflect.ValueOf((*net.UnixAddr)(nil)), + "UnixConn": reflect.ValueOf((*net.UnixConn)(nil)), + "UnixListener": reflect.ValueOf((*net.UnixListener)(nil)), + "UnknownNetworkError": reflect.ValueOf((*net.UnknownNetworkError)(nil)), + + // interface wrapper definitions + "_Addr": reflect.ValueOf((*_net_Addr)(nil)), + "_Conn": reflect.ValueOf((*_net_Conn)(nil)), + "_Error": reflect.ValueOf((*_net_Error)(nil)), + "_Listener": reflect.ValueOf((*_net_Listener)(nil)), + "_PacketConn": reflect.ValueOf((*_net_PacketConn)(nil)), + } +} + +// _net_Addr is an interface wrapper for Addr type +type _net_Addr struct { + IValue interface{} + WNetwork func() string + WString func() string +} + +func (W _net_Addr) Network() string { + return W.WNetwork() +} +func (W _net_Addr) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} + +// _net_Conn is an interface wrapper for Conn type +type _net_Conn struct { + IValue interface{} + WClose func() error + WLocalAddr func() net.Addr + WRead func(b []byte) (n int, err error) + WRemoteAddr func() net.Addr + WSetDeadline func(t time.Time) error + WSetReadDeadline func(t time.Time) error + WSetWriteDeadline func(t time.Time) error + WWrite func(b []byte) (n int, err error) +} + +func (W _net_Conn) Close() error { + return W.WClose() +} +func (W _net_Conn) LocalAddr() net.Addr { + return W.WLocalAddr() +} +func (W _net_Conn) Read(b []byte) (n int, err error) { + return W.WRead(b) +} +func (W _net_Conn) RemoteAddr() net.Addr { + return W.WRemoteAddr() +} +func (W _net_Conn) SetDeadline(t time.Time) error { + return W.WSetDeadline(t) +} +func (W _net_Conn) SetReadDeadline(t time.Time) error { + return W.WSetReadDeadline(t) +} +func (W _net_Conn) SetWriteDeadline(t time.Time) error { + return W.WSetWriteDeadline(t) +} +func (W _net_Conn) Write(b []byte) (n int, err error) { + return W.WWrite(b) +} + +// _net_Error is an interface wrapper for Error type +type _net_Error struct { + IValue interface{} + WError func() string + WTemporary func() bool + WTimeout func() bool +} + +func (W _net_Error) Error() string { + return W.WError() +} +func (W _net_Error) Temporary() bool { + return W.WTemporary() +} +func (W _net_Error) Timeout() bool { + return W.WTimeout() +} + +// _net_Listener is an interface wrapper for Listener type +type _net_Listener struct { + IValue interface{} + WAccept func() (net.Conn, error) + WAddr func() net.Addr + WClose func() error +} + +func (W _net_Listener) Accept() (net.Conn, error) { + return W.WAccept() +} +func (W _net_Listener) Addr() net.Addr { + return W.WAddr() +} +func (W _net_Listener) Close() error { + return W.WClose() +} + +// _net_PacketConn is an interface wrapper for PacketConn type +type _net_PacketConn struct { + IValue interface{} + WClose func() error + WLocalAddr func() net.Addr + WReadFrom func(p []byte) (n int, addr net.Addr, err error) + WSetDeadline func(t time.Time) error + WSetReadDeadline func(t time.Time) error + WSetWriteDeadline func(t time.Time) error + WWriteTo func(p []byte, addr net.Addr) (n int, err error) +} + +func (W _net_PacketConn) Close() error { + return W.WClose() +} +func (W _net_PacketConn) LocalAddr() net.Addr { + return W.WLocalAddr() +} +func (W _net_PacketConn) ReadFrom(p []byte) (n int, addr net.Addr, err error) { + return W.WReadFrom(p) +} +func (W _net_PacketConn) SetDeadline(t time.Time) error { + return W.WSetDeadline(t) +} +func (W _net_PacketConn) SetReadDeadline(t time.Time) error { + return W.WSetReadDeadline(t) +} +func (W _net_PacketConn) SetWriteDeadline(t time.Time) error { + return W.WSetWriteDeadline(t) +} +func (W _net_PacketConn) WriteTo(p []byte, addr net.Addr) (n int, err error) { + return W.WWriteTo(p, addr) +} diff --git a/stdlib/go1_19_net_http.go b/stdlib/go1_19_net_http.go new file mode 100644 index 000000000..5e0fcc726 --- /dev/null +++ b/stdlib/go1_19_net_http.go @@ -0,0 +1,339 @@ +// Code generated by 'yaegi extract net/http'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "bufio" + "go/constant" + "go/token" + "io/fs" + "net" + "net/http" + "net/url" + "reflect" +) + +func init() { + Symbols["net/http/http"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllowQuerySemicolons": reflect.ValueOf(http.AllowQuerySemicolons), + "CanonicalHeaderKey": reflect.ValueOf(http.CanonicalHeaderKey), + "DefaultClient": reflect.ValueOf(&http.DefaultClient).Elem(), + "DefaultMaxHeaderBytes": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "DefaultMaxIdleConnsPerHost": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DefaultServeMux": reflect.ValueOf(&http.DefaultServeMux).Elem(), + "DefaultTransport": reflect.ValueOf(&http.DefaultTransport).Elem(), + "DetectContentType": reflect.ValueOf(http.DetectContentType), + "ErrAbortHandler": reflect.ValueOf(&http.ErrAbortHandler).Elem(), + "ErrBodyNotAllowed": reflect.ValueOf(&http.ErrBodyNotAllowed).Elem(), + "ErrBodyReadAfterClose": reflect.ValueOf(&http.ErrBodyReadAfterClose).Elem(), + "ErrContentLength": reflect.ValueOf(&http.ErrContentLength).Elem(), + "ErrHandlerTimeout": reflect.ValueOf(&http.ErrHandlerTimeout).Elem(), + "ErrHeaderTooLong": reflect.ValueOf(&http.ErrHeaderTooLong).Elem(), + "ErrHijacked": reflect.ValueOf(&http.ErrHijacked).Elem(), + "ErrLineTooLong": reflect.ValueOf(&http.ErrLineTooLong).Elem(), + "ErrMissingBoundary": reflect.ValueOf(&http.ErrMissingBoundary).Elem(), + "ErrMissingContentLength": reflect.ValueOf(&http.ErrMissingContentLength).Elem(), + "ErrMissingFile": reflect.ValueOf(&http.ErrMissingFile).Elem(), + "ErrNoCookie": reflect.ValueOf(&http.ErrNoCookie).Elem(), + "ErrNoLocation": reflect.ValueOf(&http.ErrNoLocation).Elem(), + "ErrNotMultipart": reflect.ValueOf(&http.ErrNotMultipart).Elem(), + "ErrNotSupported": reflect.ValueOf(&http.ErrNotSupported).Elem(), + "ErrServerClosed": reflect.ValueOf(&http.ErrServerClosed).Elem(), + "ErrShortBody": reflect.ValueOf(&http.ErrShortBody).Elem(), + "ErrSkipAltProtocol": reflect.ValueOf(&http.ErrSkipAltProtocol).Elem(), + "ErrUnexpectedTrailer": reflect.ValueOf(&http.ErrUnexpectedTrailer).Elem(), + "ErrUseLastResponse": reflect.ValueOf(&http.ErrUseLastResponse).Elem(), + "ErrWriteAfterFlush": reflect.ValueOf(&http.ErrWriteAfterFlush).Elem(), + "Error": reflect.ValueOf(http.Error), + "FS": reflect.ValueOf(http.FS), + "FileServer": reflect.ValueOf(http.FileServer), + "Get": reflect.ValueOf(http.Get), + "Handle": reflect.ValueOf(http.Handle), + "HandleFunc": reflect.ValueOf(http.HandleFunc), + "Head": reflect.ValueOf(http.Head), + "ListenAndServe": reflect.ValueOf(http.ListenAndServe), + "ListenAndServeTLS": reflect.ValueOf(http.ListenAndServeTLS), + "LocalAddrContextKey": reflect.ValueOf(&http.LocalAddrContextKey).Elem(), + "MaxBytesHandler": reflect.ValueOf(http.MaxBytesHandler), + "MaxBytesReader": reflect.ValueOf(http.MaxBytesReader), + "MethodConnect": reflect.ValueOf(constant.MakeFromLiteral("\"CONNECT\"", token.STRING, 0)), + "MethodDelete": reflect.ValueOf(constant.MakeFromLiteral("\"DELETE\"", token.STRING, 0)), + "MethodGet": reflect.ValueOf(constant.MakeFromLiteral("\"GET\"", token.STRING, 0)), + "MethodHead": reflect.ValueOf(constant.MakeFromLiteral("\"HEAD\"", token.STRING, 0)), + "MethodOptions": reflect.ValueOf(constant.MakeFromLiteral("\"OPTIONS\"", token.STRING, 0)), + "MethodPatch": reflect.ValueOf(constant.MakeFromLiteral("\"PATCH\"", token.STRING, 0)), + "MethodPost": reflect.ValueOf(constant.MakeFromLiteral("\"POST\"", token.STRING, 0)), + "MethodPut": reflect.ValueOf(constant.MakeFromLiteral("\"PUT\"", token.STRING, 0)), + "MethodTrace": reflect.ValueOf(constant.MakeFromLiteral("\"TRACE\"", token.STRING, 0)), + "NewFileTransport": reflect.ValueOf(http.NewFileTransport), + "NewRequest": reflect.ValueOf(http.NewRequest), + "NewRequestWithContext": reflect.ValueOf(http.NewRequestWithContext), + "NewServeMux": reflect.ValueOf(http.NewServeMux), + "NoBody": reflect.ValueOf(&http.NoBody).Elem(), + "NotFound": reflect.ValueOf(http.NotFound), + "NotFoundHandler": reflect.ValueOf(http.NotFoundHandler), + "ParseHTTPVersion": reflect.ValueOf(http.ParseHTTPVersion), + "ParseTime": reflect.ValueOf(http.ParseTime), + "Post": reflect.ValueOf(http.Post), + "PostForm": reflect.ValueOf(http.PostForm), + "ProxyFromEnvironment": reflect.ValueOf(http.ProxyFromEnvironment), + "ProxyURL": reflect.ValueOf(http.ProxyURL), + "ReadRequest": reflect.ValueOf(http.ReadRequest), + "ReadResponse": reflect.ValueOf(http.ReadResponse), + "Redirect": reflect.ValueOf(http.Redirect), + "RedirectHandler": reflect.ValueOf(http.RedirectHandler), + "SameSiteDefaultMode": reflect.ValueOf(http.SameSiteDefaultMode), + "SameSiteLaxMode": reflect.ValueOf(http.SameSiteLaxMode), + "SameSiteNoneMode": reflect.ValueOf(http.SameSiteNoneMode), + "SameSiteStrictMode": reflect.ValueOf(http.SameSiteStrictMode), + "Serve": reflect.ValueOf(http.Serve), + "ServeContent": reflect.ValueOf(http.ServeContent), + "ServeFile": reflect.ValueOf(http.ServeFile), + "ServeTLS": reflect.ValueOf(http.ServeTLS), + "ServerContextKey": reflect.ValueOf(&http.ServerContextKey).Elem(), + "SetCookie": reflect.ValueOf(http.SetCookie), + "StateActive": reflect.ValueOf(http.StateActive), + "StateClosed": reflect.ValueOf(http.StateClosed), + "StateHijacked": reflect.ValueOf(http.StateHijacked), + "StateIdle": reflect.ValueOf(http.StateIdle), + "StateNew": reflect.ValueOf(http.StateNew), + "StatusAccepted": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "StatusAlreadyReported": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "StatusBadGateway": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "StatusBadRequest": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "StatusConflict": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "StatusContinue": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "StatusCreated": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "StatusEarlyHints": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "StatusExpectationFailed": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "StatusFailedDependency": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "StatusForbidden": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "StatusFound": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "StatusGatewayTimeout": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "StatusGone": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "StatusHTTPVersionNotSupported": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), + "StatusIMUsed": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "StatusInsufficientStorage": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "StatusInternalServerError": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "StatusLengthRequired": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "StatusLocked": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "StatusLoopDetected": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "StatusMethodNotAllowed": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "StatusMisdirectedRequest": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "StatusMovedPermanently": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "StatusMultiStatus": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "StatusMultipleChoices": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "StatusNetworkAuthenticationRequired": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "StatusNoContent": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "StatusNonAuthoritativeInfo": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "StatusNotAcceptable": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "StatusNotExtended": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), + "StatusNotFound": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "StatusNotImplemented": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "StatusNotModified": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "StatusOK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "StatusPartialContent": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "StatusPaymentRequired": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "StatusPermanentRedirect": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "StatusPreconditionFailed": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "StatusPreconditionRequired": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "StatusProcessing": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "StatusProxyAuthRequired": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "StatusRequestEntityTooLarge": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "StatusRequestHeaderFieldsTooLarge": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "StatusRequestTimeout": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "StatusRequestURITooLong": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "StatusRequestedRangeNotSatisfiable": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "StatusResetContent": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "StatusSeeOther": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "StatusServiceUnavailable": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "StatusSwitchingProtocols": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "StatusTeapot": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "StatusTemporaryRedirect": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "StatusText": reflect.ValueOf(http.StatusText), + "StatusTooEarly": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "StatusTooManyRequests": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "StatusUnauthorized": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "StatusUnavailableForLegalReasons": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "StatusUnprocessableEntity": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "StatusUnsupportedMediaType": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "StatusUpgradeRequired": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "StatusUseProxy": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "StatusVariantAlsoNegotiates": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "StripPrefix": reflect.ValueOf(http.StripPrefix), + "TimeFormat": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 GMT\"", token.STRING, 0)), + "TimeoutHandler": reflect.ValueOf(http.TimeoutHandler), + "TrailerPrefix": reflect.ValueOf(constant.MakeFromLiteral("\"Trailer:\"", token.STRING, 0)), + + // type definitions + "Client": reflect.ValueOf((*http.Client)(nil)), + "CloseNotifier": reflect.ValueOf((*http.CloseNotifier)(nil)), + "ConnState": reflect.ValueOf((*http.ConnState)(nil)), + "Cookie": reflect.ValueOf((*http.Cookie)(nil)), + "CookieJar": reflect.ValueOf((*http.CookieJar)(nil)), + "Dir": reflect.ValueOf((*http.Dir)(nil)), + "File": reflect.ValueOf((*http.File)(nil)), + "FileSystem": reflect.ValueOf((*http.FileSystem)(nil)), + "Flusher": reflect.ValueOf((*http.Flusher)(nil)), + "Handler": reflect.ValueOf((*http.Handler)(nil)), + "HandlerFunc": reflect.ValueOf((*http.HandlerFunc)(nil)), + "Header": reflect.ValueOf((*http.Header)(nil)), + "Hijacker": reflect.ValueOf((*http.Hijacker)(nil)), + "MaxBytesError": reflect.ValueOf((*http.MaxBytesError)(nil)), + "ProtocolError": reflect.ValueOf((*http.ProtocolError)(nil)), + "PushOptions": reflect.ValueOf((*http.PushOptions)(nil)), + "Pusher": reflect.ValueOf((*http.Pusher)(nil)), + "Request": reflect.ValueOf((*http.Request)(nil)), + "Response": reflect.ValueOf((*http.Response)(nil)), + "ResponseWriter": reflect.ValueOf((*http.ResponseWriter)(nil)), + "RoundTripper": reflect.ValueOf((*http.RoundTripper)(nil)), + "SameSite": reflect.ValueOf((*http.SameSite)(nil)), + "ServeMux": reflect.ValueOf((*http.ServeMux)(nil)), + "Server": reflect.ValueOf((*http.Server)(nil)), + "Transport": reflect.ValueOf((*http.Transport)(nil)), + + // interface wrapper definitions + "_CloseNotifier": reflect.ValueOf((*_net_http_CloseNotifier)(nil)), + "_CookieJar": reflect.ValueOf((*_net_http_CookieJar)(nil)), + "_File": reflect.ValueOf((*_net_http_File)(nil)), + "_FileSystem": reflect.ValueOf((*_net_http_FileSystem)(nil)), + "_Flusher": reflect.ValueOf((*_net_http_Flusher)(nil)), + "_Handler": reflect.ValueOf((*_net_http_Handler)(nil)), + "_Hijacker": reflect.ValueOf((*_net_http_Hijacker)(nil)), + "_Pusher": reflect.ValueOf((*_net_http_Pusher)(nil)), + "_ResponseWriter": reflect.ValueOf((*_net_http_ResponseWriter)(nil)), + "_RoundTripper": reflect.ValueOf((*_net_http_RoundTripper)(nil)), + } +} + +// _net_http_CloseNotifier is an interface wrapper for CloseNotifier type +type _net_http_CloseNotifier struct { + IValue interface{} + WCloseNotify func() <-chan bool +} + +func (W _net_http_CloseNotifier) CloseNotify() <-chan bool { + return W.WCloseNotify() +} + +// _net_http_CookieJar is an interface wrapper for CookieJar type +type _net_http_CookieJar struct { + IValue interface{} + WCookies func(u *url.URL) []*http.Cookie + WSetCookies func(u *url.URL, cookies []*http.Cookie) +} + +func (W _net_http_CookieJar) Cookies(u *url.URL) []*http.Cookie { + return W.WCookies(u) +} +func (W _net_http_CookieJar) SetCookies(u *url.URL, cookies []*http.Cookie) { + W.WSetCookies(u, cookies) +} + +// _net_http_File is an interface wrapper for File type +type _net_http_File struct { + IValue interface{} + WClose func() error + WRead func(p []byte) (n int, err error) + WReaddir func(count int) ([]fs.FileInfo, error) + WSeek func(offset int64, whence int) (int64, error) + WStat func() (fs.FileInfo, error) +} + +func (W _net_http_File) Close() error { + return W.WClose() +} +func (W _net_http_File) Read(p []byte) (n int, err error) { + return W.WRead(p) +} +func (W _net_http_File) Readdir(count int) ([]fs.FileInfo, error) { + return W.WReaddir(count) +} +func (W _net_http_File) Seek(offset int64, whence int) (int64, error) { + return W.WSeek(offset, whence) +} +func (W _net_http_File) Stat() (fs.FileInfo, error) { + return W.WStat() +} + +// _net_http_FileSystem is an interface wrapper for FileSystem type +type _net_http_FileSystem struct { + IValue interface{} + WOpen func(name string) (http.File, error) +} + +func (W _net_http_FileSystem) Open(name string) (http.File, error) { + return W.WOpen(name) +} + +// _net_http_Flusher is an interface wrapper for Flusher type +type _net_http_Flusher struct { + IValue interface{} + WFlush func() +} + +func (W _net_http_Flusher) Flush() { + W.WFlush() +} + +// _net_http_Handler is an interface wrapper for Handler type +type _net_http_Handler struct { + IValue interface{} + WServeHTTP func(a0 http.ResponseWriter, a1 *http.Request) +} + +func (W _net_http_Handler) ServeHTTP(a0 http.ResponseWriter, a1 *http.Request) { + W.WServeHTTP(a0, a1) +} + +// _net_http_Hijacker is an interface wrapper for Hijacker type +type _net_http_Hijacker struct { + IValue interface{} + WHijack func() (net.Conn, *bufio.ReadWriter, error) +} + +func (W _net_http_Hijacker) Hijack() (net.Conn, *bufio.ReadWriter, error) { + return W.WHijack() +} + +// _net_http_Pusher is an interface wrapper for Pusher type +type _net_http_Pusher struct { + IValue interface{} + WPush func(target string, opts *http.PushOptions) error +} + +func (W _net_http_Pusher) Push(target string, opts *http.PushOptions) error { + return W.WPush(target, opts) +} + +// _net_http_ResponseWriter is an interface wrapper for ResponseWriter type +type _net_http_ResponseWriter struct { + IValue interface{} + WHeader func() http.Header + WWrite func(a0 []byte) (int, error) + WWriteHeader func(statusCode int) +} + +func (W _net_http_ResponseWriter) Header() http.Header { + return W.WHeader() +} +func (W _net_http_ResponseWriter) Write(a0 []byte) (int, error) { + return W.WWrite(a0) +} +func (W _net_http_ResponseWriter) WriteHeader(statusCode int) { + W.WWriteHeader(statusCode) +} + +// _net_http_RoundTripper is an interface wrapper for RoundTripper type +type _net_http_RoundTripper struct { + IValue interface{} + WRoundTrip func(a0 *http.Request) (*http.Response, error) +} + +func (W _net_http_RoundTripper) RoundTrip(a0 *http.Request) (*http.Response, error) { + return W.WRoundTrip(a0) +} diff --git a/stdlib/go1_19_net_http_cgi.go b/stdlib/go1_19_net_http_cgi.go new file mode 100644 index 000000000..6e1d2316a --- /dev/null +++ b/stdlib/go1_19_net_http_cgi.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract net/http/cgi'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/http/cgi" + "reflect" +) + +func init() { + Symbols["net/http/cgi/cgi"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Request": reflect.ValueOf(cgi.Request), + "RequestFromMap": reflect.ValueOf(cgi.RequestFromMap), + "Serve": reflect.ValueOf(cgi.Serve), + + // type definitions + "Handler": reflect.ValueOf((*cgi.Handler)(nil)), + } +} diff --git a/stdlib/go1_19_net_http_cookiejar.go b/stdlib/go1_19_net_http_cookiejar.go new file mode 100644 index 000000000..94fb01c64 --- /dev/null +++ b/stdlib/go1_19_net_http_cookiejar.go @@ -0,0 +1,43 @@ +// Code generated by 'yaegi extract net/http/cookiejar'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/http/cookiejar" + "reflect" +) + +func init() { + Symbols["net/http/cookiejar/cookiejar"] = map[string]reflect.Value{ + // function, constant and variable definitions + "New": reflect.ValueOf(cookiejar.New), + + // type definitions + "Jar": reflect.ValueOf((*cookiejar.Jar)(nil)), + "Options": reflect.ValueOf((*cookiejar.Options)(nil)), + "PublicSuffixList": reflect.ValueOf((*cookiejar.PublicSuffixList)(nil)), + + // interface wrapper definitions + "_PublicSuffixList": reflect.ValueOf((*_net_http_cookiejar_PublicSuffixList)(nil)), + } +} + +// _net_http_cookiejar_PublicSuffixList is an interface wrapper for PublicSuffixList type +type _net_http_cookiejar_PublicSuffixList struct { + IValue interface{} + WPublicSuffix func(domain string) string + WString func() string +} + +func (W _net_http_cookiejar_PublicSuffixList) PublicSuffix(domain string) string { + return W.WPublicSuffix(domain) +} +func (W _net_http_cookiejar_PublicSuffixList) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_net_http_fcgi.go b/stdlib/go1_19_net_http_fcgi.go new file mode 100644 index 000000000..34c895167 --- /dev/null +++ b/stdlib/go1_19_net_http_fcgi.go @@ -0,0 +1,21 @@ +// Code generated by 'yaegi extract net/http/fcgi'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/http/fcgi" + "reflect" +) + +func init() { + Symbols["net/http/fcgi/fcgi"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrConnClosed": reflect.ValueOf(&fcgi.ErrConnClosed).Elem(), + "ErrRequestAborted": reflect.ValueOf(&fcgi.ErrRequestAborted).Elem(), + "ProcessEnv": reflect.ValueOf(fcgi.ProcessEnv), + "Serve": reflect.ValueOf(fcgi.Serve), + } +} diff --git a/stdlib/go1_19_net_http_httptest.go b/stdlib/go1_19_net_http_httptest.go new file mode 100644 index 000000000..ec603d139 --- /dev/null +++ b/stdlib/go1_19_net_http_httptest.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract net/http/httptest'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "net/http/httptest" + "reflect" +) + +func init() { + Symbols["net/http/httptest/httptest"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DefaultRemoteAddr": reflect.ValueOf(constant.MakeFromLiteral("\"1.2.3.4\"", token.STRING, 0)), + "NewRecorder": reflect.ValueOf(httptest.NewRecorder), + "NewRequest": reflect.ValueOf(httptest.NewRequest), + "NewServer": reflect.ValueOf(httptest.NewServer), + "NewTLSServer": reflect.ValueOf(httptest.NewTLSServer), + "NewUnstartedServer": reflect.ValueOf(httptest.NewUnstartedServer), + + // type definitions + "ResponseRecorder": reflect.ValueOf((*httptest.ResponseRecorder)(nil)), + "Server": reflect.ValueOf((*httptest.Server)(nil)), + } +} diff --git a/stdlib/go1_19_net_http_httptrace.go b/stdlib/go1_19_net_http_httptrace.go new file mode 100644 index 000000000..26fcc6ec1 --- /dev/null +++ b/stdlib/go1_19_net_http_httptrace.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract net/http/httptrace'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/http/httptrace" + "reflect" +) + +func init() { + Symbols["net/http/httptrace/httptrace"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ContextClientTrace": reflect.ValueOf(httptrace.ContextClientTrace), + "WithClientTrace": reflect.ValueOf(httptrace.WithClientTrace), + + // type definitions + "ClientTrace": reflect.ValueOf((*httptrace.ClientTrace)(nil)), + "DNSDoneInfo": reflect.ValueOf((*httptrace.DNSDoneInfo)(nil)), + "DNSStartInfo": reflect.ValueOf((*httptrace.DNSStartInfo)(nil)), + "GotConnInfo": reflect.ValueOf((*httptrace.GotConnInfo)(nil)), + "WroteRequestInfo": reflect.ValueOf((*httptrace.WroteRequestInfo)(nil)), + } +} diff --git a/stdlib/go1_19_net_http_httputil.go b/stdlib/go1_19_net_http_httputil.go new file mode 100644 index 000000000..d3d5cb681 --- /dev/null +++ b/stdlib/go1_19_net_http_httputil.go @@ -0,0 +1,53 @@ +// Code generated by 'yaegi extract net/http/httputil'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/http/httputil" + "reflect" +) + +func init() { + Symbols["net/http/httputil/httputil"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DumpRequest": reflect.ValueOf(httputil.DumpRequest), + "DumpRequestOut": reflect.ValueOf(httputil.DumpRequestOut), + "DumpResponse": reflect.ValueOf(httputil.DumpResponse), + "ErrClosed": reflect.ValueOf(&httputil.ErrClosed).Elem(), + "ErrLineTooLong": reflect.ValueOf(&httputil.ErrLineTooLong).Elem(), + "ErrPersistEOF": reflect.ValueOf(&httputil.ErrPersistEOF).Elem(), + "ErrPipeline": reflect.ValueOf(&httputil.ErrPipeline).Elem(), + "NewChunkedReader": reflect.ValueOf(httputil.NewChunkedReader), + "NewChunkedWriter": reflect.ValueOf(httputil.NewChunkedWriter), + "NewClientConn": reflect.ValueOf(httputil.NewClientConn), + "NewProxyClientConn": reflect.ValueOf(httputil.NewProxyClientConn), + "NewServerConn": reflect.ValueOf(httputil.NewServerConn), + "NewSingleHostReverseProxy": reflect.ValueOf(httputil.NewSingleHostReverseProxy), + + // type definitions + "BufferPool": reflect.ValueOf((*httputil.BufferPool)(nil)), + "ClientConn": reflect.ValueOf((*httputil.ClientConn)(nil)), + "ReverseProxy": reflect.ValueOf((*httputil.ReverseProxy)(nil)), + "ServerConn": reflect.ValueOf((*httputil.ServerConn)(nil)), + + // interface wrapper definitions + "_BufferPool": reflect.ValueOf((*_net_http_httputil_BufferPool)(nil)), + } +} + +// _net_http_httputil_BufferPool is an interface wrapper for BufferPool type +type _net_http_httputil_BufferPool struct { + IValue interface{} + WGet func() []byte + WPut func(a0 []byte) +} + +func (W _net_http_httputil_BufferPool) Get() []byte { + return W.WGet() +} +func (W _net_http_httputil_BufferPool) Put(a0 []byte) { + W.WPut(a0) +} diff --git a/stdlib/go1_19_net_http_pprof.go b/stdlib/go1_19_net_http_pprof.go new file mode 100644 index 000000000..f8db3ab3a --- /dev/null +++ b/stdlib/go1_19_net_http_pprof.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract net/http/pprof'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/http/pprof" + "reflect" +) + +func init() { + Symbols["net/http/pprof/pprof"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Cmdline": reflect.ValueOf(pprof.Cmdline), + "Handler": reflect.ValueOf(pprof.Handler), + "Index": reflect.ValueOf(pprof.Index), + "Profile": reflect.ValueOf(pprof.Profile), + "Symbol": reflect.ValueOf(pprof.Symbol), + "Trace": reflect.ValueOf(pprof.Trace), + } +} diff --git a/stdlib/go1_19_net_mail.go b/stdlib/go1_19_net_mail.go new file mode 100644 index 000000000..e25b8d373 --- /dev/null +++ b/stdlib/go1_19_net_mail.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract net/mail'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/mail" + "reflect" +) + +func init() { + Symbols["net/mail/mail"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ErrHeaderNotPresent": reflect.ValueOf(&mail.ErrHeaderNotPresent).Elem(), + "ParseAddress": reflect.ValueOf(mail.ParseAddress), + "ParseAddressList": reflect.ValueOf(mail.ParseAddressList), + "ParseDate": reflect.ValueOf(mail.ParseDate), + "ReadMessage": reflect.ValueOf(mail.ReadMessage), + + // type definitions + "Address": reflect.ValueOf((*mail.Address)(nil)), + "AddressParser": reflect.ValueOf((*mail.AddressParser)(nil)), + "Header": reflect.ValueOf((*mail.Header)(nil)), + "Message": reflect.ValueOf((*mail.Message)(nil)), + } +} diff --git a/stdlib/go1_19_net_netip.go b/stdlib/go1_19_net_netip.go new file mode 100644 index 000000000..ceaf1ad06 --- /dev/null +++ b/stdlib/go1_19_net_netip.go @@ -0,0 +1,36 @@ +// Code generated by 'yaegi extract net/netip'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/netip" + "reflect" +) + +func init() { + Symbols["net/netip/netip"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AddrFrom16": reflect.ValueOf(netip.AddrFrom16), + "AddrFrom4": reflect.ValueOf(netip.AddrFrom4), + "AddrFromSlice": reflect.ValueOf(netip.AddrFromSlice), + "AddrPortFrom": reflect.ValueOf(netip.AddrPortFrom), + "IPv4Unspecified": reflect.ValueOf(netip.IPv4Unspecified), + "IPv6LinkLocalAllNodes": reflect.ValueOf(netip.IPv6LinkLocalAllNodes), + "IPv6Unspecified": reflect.ValueOf(netip.IPv6Unspecified), + "MustParseAddr": reflect.ValueOf(netip.MustParseAddr), + "MustParseAddrPort": reflect.ValueOf(netip.MustParseAddrPort), + "MustParsePrefix": reflect.ValueOf(netip.MustParsePrefix), + "ParseAddr": reflect.ValueOf(netip.ParseAddr), + "ParseAddrPort": reflect.ValueOf(netip.ParseAddrPort), + "ParsePrefix": reflect.ValueOf(netip.ParsePrefix), + "PrefixFrom": reflect.ValueOf(netip.PrefixFrom), + + // type definitions + "Addr": reflect.ValueOf((*netip.Addr)(nil)), + "AddrPort": reflect.ValueOf((*netip.AddrPort)(nil)), + "Prefix": reflect.ValueOf((*netip.Prefix)(nil)), + } +} diff --git a/stdlib/go1_19_net_rpc.go b/stdlib/go1_19_net_rpc.go new file mode 100644 index 000000000..394713f86 --- /dev/null +++ b/stdlib/go1_19_net_rpc.go @@ -0,0 +1,94 @@ +// Code generated by 'yaegi extract net/rpc'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "net/rpc" + "reflect" +) + +func init() { + Symbols["net/rpc/rpc"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Accept": reflect.ValueOf(rpc.Accept), + "DefaultDebugPath": reflect.ValueOf(constant.MakeFromLiteral("\"/debug/rpc\"", token.STRING, 0)), + "DefaultRPCPath": reflect.ValueOf(constant.MakeFromLiteral("\"/_goRPC_\"", token.STRING, 0)), + "DefaultServer": reflect.ValueOf(&rpc.DefaultServer).Elem(), + "Dial": reflect.ValueOf(rpc.Dial), + "DialHTTP": reflect.ValueOf(rpc.DialHTTP), + "DialHTTPPath": reflect.ValueOf(rpc.DialHTTPPath), + "ErrShutdown": reflect.ValueOf(&rpc.ErrShutdown).Elem(), + "HandleHTTP": reflect.ValueOf(rpc.HandleHTTP), + "NewClient": reflect.ValueOf(rpc.NewClient), + "NewClientWithCodec": reflect.ValueOf(rpc.NewClientWithCodec), + "NewServer": reflect.ValueOf(rpc.NewServer), + "Register": reflect.ValueOf(rpc.Register), + "RegisterName": reflect.ValueOf(rpc.RegisterName), + "ServeCodec": reflect.ValueOf(rpc.ServeCodec), + "ServeConn": reflect.ValueOf(rpc.ServeConn), + "ServeRequest": reflect.ValueOf(rpc.ServeRequest), + + // type definitions + "Call": reflect.ValueOf((*rpc.Call)(nil)), + "Client": reflect.ValueOf((*rpc.Client)(nil)), + "ClientCodec": reflect.ValueOf((*rpc.ClientCodec)(nil)), + "Request": reflect.ValueOf((*rpc.Request)(nil)), + "Response": reflect.ValueOf((*rpc.Response)(nil)), + "Server": reflect.ValueOf((*rpc.Server)(nil)), + "ServerCodec": reflect.ValueOf((*rpc.ServerCodec)(nil)), + "ServerError": reflect.ValueOf((*rpc.ServerError)(nil)), + + // interface wrapper definitions + "_ClientCodec": reflect.ValueOf((*_net_rpc_ClientCodec)(nil)), + "_ServerCodec": reflect.ValueOf((*_net_rpc_ServerCodec)(nil)), + } +} + +// _net_rpc_ClientCodec is an interface wrapper for ClientCodec type +type _net_rpc_ClientCodec struct { + IValue interface{} + WClose func() error + WReadResponseBody func(a0 any) error + WReadResponseHeader func(a0 *rpc.Response) error + WWriteRequest func(a0 *rpc.Request, a1 any) error +} + +func (W _net_rpc_ClientCodec) Close() error { + return W.WClose() +} +func (W _net_rpc_ClientCodec) ReadResponseBody(a0 any) error { + return W.WReadResponseBody(a0) +} +func (W _net_rpc_ClientCodec) ReadResponseHeader(a0 *rpc.Response) error { + return W.WReadResponseHeader(a0) +} +func (W _net_rpc_ClientCodec) WriteRequest(a0 *rpc.Request, a1 any) error { + return W.WWriteRequest(a0, a1) +} + +// _net_rpc_ServerCodec is an interface wrapper for ServerCodec type +type _net_rpc_ServerCodec struct { + IValue interface{} + WClose func() error + WReadRequestBody func(a0 any) error + WReadRequestHeader func(a0 *rpc.Request) error + WWriteResponse func(a0 *rpc.Response, a1 any) error +} + +func (W _net_rpc_ServerCodec) Close() error { + return W.WClose() +} +func (W _net_rpc_ServerCodec) ReadRequestBody(a0 any) error { + return W.WReadRequestBody(a0) +} +func (W _net_rpc_ServerCodec) ReadRequestHeader(a0 *rpc.Request) error { + return W.WReadRequestHeader(a0) +} +func (W _net_rpc_ServerCodec) WriteResponse(a0 *rpc.Response, a1 any) error { + return W.WWriteResponse(a0, a1) +} diff --git a/stdlib/go1_19_net_rpc_jsonrpc.go b/stdlib/go1_19_net_rpc_jsonrpc.go new file mode 100644 index 000000000..6eb7e1cde --- /dev/null +++ b/stdlib/go1_19_net_rpc_jsonrpc.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract net/rpc/jsonrpc'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/rpc/jsonrpc" + "reflect" +) + +func init() { + Symbols["net/rpc/jsonrpc/jsonrpc"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Dial": reflect.ValueOf(jsonrpc.Dial), + "NewClient": reflect.ValueOf(jsonrpc.NewClient), + "NewClientCodec": reflect.ValueOf(jsonrpc.NewClientCodec), + "NewServerCodec": reflect.ValueOf(jsonrpc.NewServerCodec), + "ServeConn": reflect.ValueOf(jsonrpc.ServeConn), + } +} diff --git a/stdlib/go1_19_net_smtp.go b/stdlib/go1_19_net_smtp.go new file mode 100644 index 000000000..41fb884c9 --- /dev/null +++ b/stdlib/go1_19_net_smtp.go @@ -0,0 +1,44 @@ +// Code generated by 'yaegi extract net/smtp'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/smtp" + "reflect" +) + +func init() { + Symbols["net/smtp/smtp"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CRAMMD5Auth": reflect.ValueOf(smtp.CRAMMD5Auth), + "Dial": reflect.ValueOf(smtp.Dial), + "NewClient": reflect.ValueOf(smtp.NewClient), + "PlainAuth": reflect.ValueOf(smtp.PlainAuth), + "SendMail": reflect.ValueOf(smtp.SendMail), + + // type definitions + "Auth": reflect.ValueOf((*smtp.Auth)(nil)), + "Client": reflect.ValueOf((*smtp.Client)(nil)), + "ServerInfo": reflect.ValueOf((*smtp.ServerInfo)(nil)), + + // interface wrapper definitions + "_Auth": reflect.ValueOf((*_net_smtp_Auth)(nil)), + } +} + +// _net_smtp_Auth is an interface wrapper for Auth type +type _net_smtp_Auth struct { + IValue interface{} + WNext func(fromServer []byte, more bool) (toServer []byte, err error) + WStart func(server *smtp.ServerInfo) (proto string, toServer []byte, err error) +} + +func (W _net_smtp_Auth) Next(fromServer []byte, more bool) (toServer []byte, err error) { + return W.WNext(fromServer, more) +} +func (W _net_smtp_Auth) Start(server *smtp.ServerInfo) (proto string, toServer []byte, err error) { + return W.WStart(server) +} diff --git a/stdlib/go1_19_net_textproto.go b/stdlib/go1_19_net_textproto.go new file mode 100644 index 000000000..870a6e886 --- /dev/null +++ b/stdlib/go1_19_net_textproto.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract net/textproto'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/textproto" + "reflect" +) + +func init() { + Symbols["net/textproto/textproto"] = map[string]reflect.Value{ + // function, constant and variable definitions + "CanonicalMIMEHeaderKey": reflect.ValueOf(textproto.CanonicalMIMEHeaderKey), + "Dial": reflect.ValueOf(textproto.Dial), + "NewConn": reflect.ValueOf(textproto.NewConn), + "NewReader": reflect.ValueOf(textproto.NewReader), + "NewWriter": reflect.ValueOf(textproto.NewWriter), + "TrimBytes": reflect.ValueOf(textproto.TrimBytes), + "TrimString": reflect.ValueOf(textproto.TrimString), + + // type definitions + "Conn": reflect.ValueOf((*textproto.Conn)(nil)), + "Error": reflect.ValueOf((*textproto.Error)(nil)), + "MIMEHeader": reflect.ValueOf((*textproto.MIMEHeader)(nil)), + "Pipeline": reflect.ValueOf((*textproto.Pipeline)(nil)), + "ProtocolError": reflect.ValueOf((*textproto.ProtocolError)(nil)), + "Reader": reflect.ValueOf((*textproto.Reader)(nil)), + "Writer": reflect.ValueOf((*textproto.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_net_url.go b/stdlib/go1_19_net_url.go new file mode 100644 index 000000000..06e8df8c3 --- /dev/null +++ b/stdlib/go1_19_net_url.go @@ -0,0 +1,35 @@ +// Code generated by 'yaegi extract net/url'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "net/url" + "reflect" +) + +func init() { + Symbols["net/url/url"] = map[string]reflect.Value{ + // function, constant and variable definitions + "JoinPath": reflect.ValueOf(url.JoinPath), + "Parse": reflect.ValueOf(url.Parse), + "ParseQuery": reflect.ValueOf(url.ParseQuery), + "ParseRequestURI": reflect.ValueOf(url.ParseRequestURI), + "PathEscape": reflect.ValueOf(url.PathEscape), + "PathUnescape": reflect.ValueOf(url.PathUnescape), + "QueryEscape": reflect.ValueOf(url.QueryEscape), + "QueryUnescape": reflect.ValueOf(url.QueryUnescape), + "User": reflect.ValueOf(url.User), + "UserPassword": reflect.ValueOf(url.UserPassword), + + // type definitions + "Error": reflect.ValueOf((*url.Error)(nil)), + "EscapeError": reflect.ValueOf((*url.EscapeError)(nil)), + "InvalidHostError": reflect.ValueOf((*url.InvalidHostError)(nil)), + "URL": reflect.ValueOf((*url.URL)(nil)), + "Userinfo": reflect.ValueOf((*url.Userinfo)(nil)), + "Values": reflect.ValueOf((*url.Values)(nil)), + } +} diff --git a/stdlib/go1_19_os.go b/stdlib/go1_19_os.go new file mode 100644 index 000000000..ddac452ee --- /dev/null +++ b/stdlib/go1_19_os.go @@ -0,0 +1,211 @@ +// Code generated by 'yaegi extract os'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "io/fs" + "os" + "reflect" + "time" +) + +func init() { + Symbols["os/os"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Args": reflect.ValueOf(&os.Args).Elem(), + "Chdir": reflect.ValueOf(os.Chdir), + "Chmod": reflect.ValueOf(os.Chmod), + "Chown": reflect.ValueOf(os.Chown), + "Chtimes": reflect.ValueOf(os.Chtimes), + "Clearenv": reflect.ValueOf(os.Clearenv), + "Create": reflect.ValueOf(os.Create), + "CreateTemp": reflect.ValueOf(os.CreateTemp), + "DevNull": reflect.ValueOf(constant.MakeFromLiteral("\"/dev/null\"", token.STRING, 0)), + "DirFS": reflect.ValueOf(os.DirFS), + "Environ": reflect.ValueOf(os.Environ), + "ErrClosed": reflect.ValueOf(&os.ErrClosed).Elem(), + "ErrDeadlineExceeded": reflect.ValueOf(&os.ErrDeadlineExceeded).Elem(), + "ErrExist": reflect.ValueOf(&os.ErrExist).Elem(), + "ErrInvalid": reflect.ValueOf(&os.ErrInvalid).Elem(), + "ErrNoDeadline": reflect.ValueOf(&os.ErrNoDeadline).Elem(), + "ErrNotExist": reflect.ValueOf(&os.ErrNotExist).Elem(), + "ErrPermission": reflect.ValueOf(&os.ErrPermission).Elem(), + "ErrProcessDone": reflect.ValueOf(&os.ErrProcessDone).Elem(), + "Executable": reflect.ValueOf(os.Executable), + "Exit": reflect.ValueOf(osExit), + "Expand": reflect.ValueOf(os.Expand), + "ExpandEnv": reflect.ValueOf(os.ExpandEnv), + "FindProcess": reflect.ValueOf(osFindProcess), + "Getegid": reflect.ValueOf(os.Getegid), + "Getenv": reflect.ValueOf(os.Getenv), + "Geteuid": reflect.ValueOf(os.Geteuid), + "Getgid": reflect.ValueOf(os.Getgid), + "Getgroups": reflect.ValueOf(os.Getgroups), + "Getpagesize": reflect.ValueOf(os.Getpagesize), + "Getpid": reflect.ValueOf(os.Getpid), + "Getppid": reflect.ValueOf(os.Getppid), + "Getuid": reflect.ValueOf(os.Getuid), + "Getwd": reflect.ValueOf(os.Getwd), + "Hostname": reflect.ValueOf(os.Hostname), + "Interrupt": reflect.ValueOf(&os.Interrupt).Elem(), + "IsExist": reflect.ValueOf(os.IsExist), + "IsNotExist": reflect.ValueOf(os.IsNotExist), + "IsPathSeparator": reflect.ValueOf(os.IsPathSeparator), + "IsPermission": reflect.ValueOf(os.IsPermission), + "IsTimeout": reflect.ValueOf(os.IsTimeout), + "Kill": reflect.ValueOf(&os.Kill).Elem(), + "Lchown": reflect.ValueOf(os.Lchown), + "Link": reflect.ValueOf(os.Link), + "LookupEnv": reflect.ValueOf(os.LookupEnv), + "Lstat": reflect.ValueOf(os.Lstat), + "Mkdir": reflect.ValueOf(os.Mkdir), + "MkdirAll": reflect.ValueOf(os.MkdirAll), + "MkdirTemp": reflect.ValueOf(os.MkdirTemp), + "ModeAppend": reflect.ValueOf(os.ModeAppend), + "ModeCharDevice": reflect.ValueOf(os.ModeCharDevice), + "ModeDevice": reflect.ValueOf(os.ModeDevice), + "ModeDir": reflect.ValueOf(os.ModeDir), + "ModeExclusive": reflect.ValueOf(os.ModeExclusive), + "ModeIrregular": reflect.ValueOf(os.ModeIrregular), + "ModeNamedPipe": reflect.ValueOf(os.ModeNamedPipe), + "ModePerm": reflect.ValueOf(os.ModePerm), + "ModeSetgid": reflect.ValueOf(os.ModeSetgid), + "ModeSetuid": reflect.ValueOf(os.ModeSetuid), + "ModeSocket": reflect.ValueOf(os.ModeSocket), + "ModeSticky": reflect.ValueOf(os.ModeSticky), + "ModeSymlink": reflect.ValueOf(os.ModeSymlink), + "ModeTemporary": reflect.ValueOf(os.ModeTemporary), + "ModeType": reflect.ValueOf(os.ModeType), + "NewFile": reflect.ValueOf(os.NewFile), + "NewSyscallError": reflect.ValueOf(os.NewSyscallError), + "O_APPEND": reflect.ValueOf(os.O_APPEND), + "O_CREATE": reflect.ValueOf(os.O_CREATE), + "O_EXCL": reflect.ValueOf(os.O_EXCL), + "O_RDONLY": reflect.ValueOf(os.O_RDONLY), + "O_RDWR": reflect.ValueOf(os.O_RDWR), + "O_SYNC": reflect.ValueOf(os.O_SYNC), + "O_TRUNC": reflect.ValueOf(os.O_TRUNC), + "O_WRONLY": reflect.ValueOf(os.O_WRONLY), + "Open": reflect.ValueOf(os.Open), + "OpenFile": reflect.ValueOf(os.OpenFile), + "PathListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "PathSeparator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "Pipe": reflect.ValueOf(os.Pipe), + "ReadDir": reflect.ValueOf(os.ReadDir), + "ReadFile": reflect.ValueOf(os.ReadFile), + "Readlink": reflect.ValueOf(os.Readlink), + "Remove": reflect.ValueOf(os.Remove), + "RemoveAll": reflect.ValueOf(os.RemoveAll), + "Rename": reflect.ValueOf(os.Rename), + "SEEK_CUR": reflect.ValueOf(os.SEEK_CUR), + "SEEK_END": reflect.ValueOf(os.SEEK_END), + "SEEK_SET": reflect.ValueOf(os.SEEK_SET), + "SameFile": reflect.ValueOf(os.SameFile), + "Setenv": reflect.ValueOf(os.Setenv), + "StartProcess": reflect.ValueOf(os.StartProcess), + "Stat": reflect.ValueOf(os.Stat), + "Stderr": reflect.ValueOf(&os.Stderr).Elem(), + "Stdin": reflect.ValueOf(&os.Stdin).Elem(), + "Stdout": reflect.ValueOf(&os.Stdout).Elem(), + "Symlink": reflect.ValueOf(os.Symlink), + "TempDir": reflect.ValueOf(os.TempDir), + "Truncate": reflect.ValueOf(os.Truncate), + "Unsetenv": reflect.ValueOf(os.Unsetenv), + "UserCacheDir": reflect.ValueOf(os.UserCacheDir), + "UserConfigDir": reflect.ValueOf(os.UserConfigDir), + "UserHomeDir": reflect.ValueOf(os.UserHomeDir), + "WriteFile": reflect.ValueOf(os.WriteFile), + + // type definitions + "DirEntry": reflect.ValueOf((*os.DirEntry)(nil)), + "File": reflect.ValueOf((*os.File)(nil)), + "FileInfo": reflect.ValueOf((*os.FileInfo)(nil)), + "FileMode": reflect.ValueOf((*os.FileMode)(nil)), + "LinkError": reflect.ValueOf((*os.LinkError)(nil)), + "PathError": reflect.ValueOf((*os.PathError)(nil)), + "ProcAttr": reflect.ValueOf((*os.ProcAttr)(nil)), + "Process": reflect.ValueOf((*os.Process)(nil)), + "ProcessState": reflect.ValueOf((*os.ProcessState)(nil)), + "Signal": reflect.ValueOf((*os.Signal)(nil)), + "SyscallError": reflect.ValueOf((*os.SyscallError)(nil)), + + // interface wrapper definitions + "_DirEntry": reflect.ValueOf((*_os_DirEntry)(nil)), + "_FileInfo": reflect.ValueOf((*_os_FileInfo)(nil)), + "_Signal": reflect.ValueOf((*_os_Signal)(nil)), + } +} + +// _os_DirEntry is an interface wrapper for DirEntry type +type _os_DirEntry struct { + IValue interface{} + WInfo func() (fs.FileInfo, error) + WIsDir func() bool + WName func() string + WType func() fs.FileMode +} + +func (W _os_DirEntry) Info() (fs.FileInfo, error) { + return W.WInfo() +} +func (W _os_DirEntry) IsDir() bool { + return W.WIsDir() +} +func (W _os_DirEntry) Name() string { + return W.WName() +} +func (W _os_DirEntry) Type() fs.FileMode { + return W.WType() +} + +// _os_FileInfo is an interface wrapper for FileInfo type +type _os_FileInfo struct { + IValue interface{} + WIsDir func() bool + WModTime func() time.Time + WMode func() fs.FileMode + WName func() string + WSize func() int64 + WSys func() any +} + +func (W _os_FileInfo) IsDir() bool { + return W.WIsDir() +} +func (W _os_FileInfo) ModTime() time.Time { + return W.WModTime() +} +func (W _os_FileInfo) Mode() fs.FileMode { + return W.WMode() +} +func (W _os_FileInfo) Name() string { + return W.WName() +} +func (W _os_FileInfo) Size() int64 { + return W.WSize() +} +func (W _os_FileInfo) Sys() any { + return W.WSys() +} + +// _os_Signal is an interface wrapper for Signal type +type _os_Signal struct { + IValue interface{} + WSignal func() + WString func() string +} + +func (W _os_Signal) Signal() { + W.WSignal() +} +func (W _os_Signal) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_os_signal.go b/stdlib/go1_19_os_signal.go new file mode 100644 index 000000000..10de33092 --- /dev/null +++ b/stdlib/go1_19_os_signal.go @@ -0,0 +1,23 @@ +// Code generated by 'yaegi extract os/signal'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "os/signal" + "reflect" +) + +func init() { + Symbols["os/signal/signal"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Ignore": reflect.ValueOf(signal.Ignore), + "Ignored": reflect.ValueOf(signal.Ignored), + "Notify": reflect.ValueOf(signal.Notify), + "NotifyContext": reflect.ValueOf(signal.NotifyContext), + "Reset": reflect.ValueOf(signal.Reset), + "Stop": reflect.ValueOf(signal.Stop), + } +} diff --git a/stdlib/go1_19_os_user.go b/stdlib/go1_19_os_user.go new file mode 100644 index 000000000..a9997d29a --- /dev/null +++ b/stdlib/go1_19_os_user.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract os/user'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "os/user" + "reflect" +) + +func init() { + Symbols["os/user/user"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Current": reflect.ValueOf(user.Current), + "Lookup": reflect.ValueOf(user.Lookup), + "LookupGroup": reflect.ValueOf(user.LookupGroup), + "LookupGroupId": reflect.ValueOf(user.LookupGroupId), + "LookupId": reflect.ValueOf(user.LookupId), + + // type definitions + "Group": reflect.ValueOf((*user.Group)(nil)), + "UnknownGroupError": reflect.ValueOf((*user.UnknownGroupError)(nil)), + "UnknownGroupIdError": reflect.ValueOf((*user.UnknownGroupIdError)(nil)), + "UnknownUserError": reflect.ValueOf((*user.UnknownUserError)(nil)), + "UnknownUserIdError": reflect.ValueOf((*user.UnknownUserIdError)(nil)), + "User": reflect.ValueOf((*user.User)(nil)), + } +} diff --git a/stdlib/go1_19_path.go b/stdlib/go1_19_path.go new file mode 100644 index 000000000..c2d84acde --- /dev/null +++ b/stdlib/go1_19_path.go @@ -0,0 +1,26 @@ +// Code generated by 'yaegi extract path'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "path" + "reflect" +) + +func init() { + Symbols["path/path"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Base": reflect.ValueOf(path.Base), + "Clean": reflect.ValueOf(path.Clean), + "Dir": reflect.ValueOf(path.Dir), + "ErrBadPattern": reflect.ValueOf(&path.ErrBadPattern).Elem(), + "Ext": reflect.ValueOf(path.Ext), + "IsAbs": reflect.ValueOf(path.IsAbs), + "Join": reflect.ValueOf(path.Join), + "Match": reflect.ValueOf(path.Match), + "Split": reflect.ValueOf(path.Split), + } +} diff --git a/stdlib/go1_19_path_filepath.go b/stdlib/go1_19_path_filepath.go new file mode 100644 index 000000000..bf5afc41d --- /dev/null +++ b/stdlib/go1_19_path_filepath.go @@ -0,0 +1,45 @@ +// Code generated by 'yaegi extract path/filepath'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "path/filepath" + "reflect" +) + +func init() { + Symbols["path/filepath/filepath"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Abs": reflect.ValueOf(filepath.Abs), + "Base": reflect.ValueOf(filepath.Base), + "Clean": reflect.ValueOf(filepath.Clean), + "Dir": reflect.ValueOf(filepath.Dir), + "ErrBadPattern": reflect.ValueOf(&filepath.ErrBadPattern).Elem(), + "EvalSymlinks": reflect.ValueOf(filepath.EvalSymlinks), + "Ext": reflect.ValueOf(filepath.Ext), + "FromSlash": reflect.ValueOf(filepath.FromSlash), + "Glob": reflect.ValueOf(filepath.Glob), + "HasPrefix": reflect.ValueOf(filepath.HasPrefix), + "IsAbs": reflect.ValueOf(filepath.IsAbs), + "Join": reflect.ValueOf(filepath.Join), + "ListSeparator": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "Match": reflect.ValueOf(filepath.Match), + "Rel": reflect.ValueOf(filepath.Rel), + "Separator": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SkipDir": reflect.ValueOf(&filepath.SkipDir).Elem(), + "Split": reflect.ValueOf(filepath.Split), + "SplitList": reflect.ValueOf(filepath.SplitList), + "ToSlash": reflect.ValueOf(filepath.ToSlash), + "VolumeName": reflect.ValueOf(filepath.VolumeName), + "Walk": reflect.ValueOf(filepath.Walk), + "WalkDir": reflect.ValueOf(filepath.WalkDir), + + // type definitions + "WalkFunc": reflect.ValueOf((*filepath.WalkFunc)(nil)), + } +} diff --git a/stdlib/go1_19_reflect.go b/stdlib/go1_19_reflect.go new file mode 100644 index 000000000..1966443c8 --- /dev/null +++ b/stdlib/go1_19_reflect.go @@ -0,0 +1,219 @@ +// Code generated by 'yaegi extract reflect'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" +) + +func init() { + Symbols["reflect/reflect"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Append": reflect.ValueOf(reflect.Append), + "AppendSlice": reflect.ValueOf(reflect.AppendSlice), + "Array": reflect.ValueOf(reflect.Array), + "ArrayOf": reflect.ValueOf(reflect.ArrayOf), + "Bool": reflect.ValueOf(reflect.Bool), + "BothDir": reflect.ValueOf(reflect.BothDir), + "Chan": reflect.ValueOf(reflect.Chan), + "ChanOf": reflect.ValueOf(reflect.ChanOf), + "Complex128": reflect.ValueOf(reflect.Complex128), + "Complex64": reflect.ValueOf(reflect.Complex64), + "Copy": reflect.ValueOf(reflect.Copy), + "DeepEqual": reflect.ValueOf(reflect.DeepEqual), + "Float32": reflect.ValueOf(reflect.Float32), + "Float64": reflect.ValueOf(reflect.Float64), + "Func": reflect.ValueOf(reflect.Func), + "FuncOf": reflect.ValueOf(reflect.FuncOf), + "Indirect": reflect.ValueOf(reflect.Indirect), + "Int": reflect.ValueOf(reflect.Int), + "Int16": reflect.ValueOf(reflect.Int16), + "Int32": reflect.ValueOf(reflect.Int32), + "Int64": reflect.ValueOf(reflect.Int64), + "Int8": reflect.ValueOf(reflect.Int8), + "Interface": reflect.ValueOf(reflect.Interface), + "Invalid": reflect.ValueOf(reflect.Invalid), + "MakeChan": reflect.ValueOf(reflect.MakeChan), + "MakeFunc": reflect.ValueOf(reflect.MakeFunc), + "MakeMap": reflect.ValueOf(reflect.MakeMap), + "MakeMapWithSize": reflect.ValueOf(reflect.MakeMapWithSize), + "MakeSlice": reflect.ValueOf(reflect.MakeSlice), + "Map": reflect.ValueOf(reflect.Map), + "MapOf": reflect.ValueOf(reflect.MapOf), + "New": reflect.ValueOf(reflect.New), + "NewAt": reflect.ValueOf(reflect.NewAt), + "Pointer": reflect.ValueOf(reflect.Pointer), + "PointerTo": reflect.ValueOf(reflect.PointerTo), + "Ptr": reflect.ValueOf(reflect.Ptr), + "PtrTo": reflect.ValueOf(reflect.PtrTo), + "RecvDir": reflect.ValueOf(reflect.RecvDir), + "Select": reflect.ValueOf(reflect.Select), + "SelectDefault": reflect.ValueOf(reflect.SelectDefault), + "SelectRecv": reflect.ValueOf(reflect.SelectRecv), + "SelectSend": reflect.ValueOf(reflect.SelectSend), + "SendDir": reflect.ValueOf(reflect.SendDir), + "Slice": reflect.ValueOf(reflect.Slice), + "SliceOf": reflect.ValueOf(reflect.SliceOf), + "String": reflect.ValueOf(reflect.String), + "Struct": reflect.ValueOf(reflect.Struct), + "StructOf": reflect.ValueOf(reflect.StructOf), + "Swapper": reflect.ValueOf(reflect.Swapper), + "TypeOf": reflect.ValueOf(reflect.TypeOf), + "Uint": reflect.ValueOf(reflect.Uint), + "Uint16": reflect.ValueOf(reflect.Uint16), + "Uint32": reflect.ValueOf(reflect.Uint32), + "Uint64": reflect.ValueOf(reflect.Uint64), + "Uint8": reflect.ValueOf(reflect.Uint8), + "Uintptr": reflect.ValueOf(reflect.Uintptr), + "UnsafePointer": reflect.ValueOf(reflect.UnsafePointer), + "ValueOf": reflect.ValueOf(reflect.ValueOf), + "VisibleFields": reflect.ValueOf(reflect.VisibleFields), + "Zero": reflect.ValueOf(reflect.Zero), + + // type definitions + "ChanDir": reflect.ValueOf((*reflect.ChanDir)(nil)), + "Kind": reflect.ValueOf((*reflect.Kind)(nil)), + "MapIter": reflect.ValueOf((*reflect.MapIter)(nil)), + "Method": reflect.ValueOf((*reflect.Method)(nil)), + "SelectCase": reflect.ValueOf((*reflect.SelectCase)(nil)), + "SelectDir": reflect.ValueOf((*reflect.SelectDir)(nil)), + "SliceHeader": reflect.ValueOf((*reflect.SliceHeader)(nil)), + "StringHeader": reflect.ValueOf((*reflect.StringHeader)(nil)), + "StructField": reflect.ValueOf((*reflect.StructField)(nil)), + "StructTag": reflect.ValueOf((*reflect.StructTag)(nil)), + "Type": reflect.ValueOf((*reflect.Type)(nil)), + "Value": reflect.ValueOf((*reflect.Value)(nil)), + "ValueError": reflect.ValueOf((*reflect.ValueError)(nil)), + + // interface wrapper definitions + "_Type": reflect.ValueOf((*_reflect_Type)(nil)), + } +} + +// _reflect_Type is an interface wrapper for Type type +type _reflect_Type struct { + IValue interface{} + WAlign func() int + WAssignableTo func(u reflect.Type) bool + WBits func() int + WChanDir func() reflect.ChanDir + WComparable func() bool + WConvertibleTo func(u reflect.Type) bool + WElem func() reflect.Type + WField func(i int) reflect.StructField + WFieldAlign func() int + WFieldByIndex func(index []int) reflect.StructField + WFieldByName func(name string) (reflect.StructField, bool) + WFieldByNameFunc func(match func(string) bool) (reflect.StructField, bool) + WImplements func(u reflect.Type) bool + WIn func(i int) reflect.Type + WIsVariadic func() bool + WKey func() reflect.Type + WKind func() reflect.Kind + WLen func() int + WMethod func(a0 int) reflect.Method + WMethodByName func(a0 string) (reflect.Method, bool) + WName func() string + WNumField func() int + WNumIn func() int + WNumMethod func() int + WNumOut func() int + WOut func(i int) reflect.Type + WPkgPath func() string + WSize func() uintptr + WString func() string +} + +func (W _reflect_Type) Align() int { + return W.WAlign() +} +func (W _reflect_Type) AssignableTo(u reflect.Type) bool { + return W.WAssignableTo(u) +} +func (W _reflect_Type) Bits() int { + return W.WBits() +} +func (W _reflect_Type) ChanDir() reflect.ChanDir { + return W.WChanDir() +} +func (W _reflect_Type) Comparable() bool { + return W.WComparable() +} +func (W _reflect_Type) ConvertibleTo(u reflect.Type) bool { + return W.WConvertibleTo(u) +} +func (W _reflect_Type) Elem() reflect.Type { + return W.WElem() +} +func (W _reflect_Type) Field(i int) reflect.StructField { + return W.WField(i) +} +func (W _reflect_Type) FieldAlign() int { + return W.WFieldAlign() +} +func (W _reflect_Type) FieldByIndex(index []int) reflect.StructField { + return W.WFieldByIndex(index) +} +func (W _reflect_Type) FieldByName(name string) (reflect.StructField, bool) { + return W.WFieldByName(name) +} +func (W _reflect_Type) FieldByNameFunc(match func(string) bool) (reflect.StructField, bool) { + return W.WFieldByNameFunc(match) +} +func (W _reflect_Type) Implements(u reflect.Type) bool { + return W.WImplements(u) +} +func (W _reflect_Type) In(i int) reflect.Type { + return W.WIn(i) +} +func (W _reflect_Type) IsVariadic() bool { + return W.WIsVariadic() +} +func (W _reflect_Type) Key() reflect.Type { + return W.WKey() +} +func (W _reflect_Type) Kind() reflect.Kind { + return W.WKind() +} +func (W _reflect_Type) Len() int { + return W.WLen() +} +func (W _reflect_Type) Method(a0 int) reflect.Method { + return W.WMethod(a0) +} +func (W _reflect_Type) MethodByName(a0 string) (reflect.Method, bool) { + return W.WMethodByName(a0) +} +func (W _reflect_Type) Name() string { + return W.WName() +} +func (W _reflect_Type) NumField() int { + return W.WNumField() +} +func (W _reflect_Type) NumIn() int { + return W.WNumIn() +} +func (W _reflect_Type) NumMethod() int { + return W.WNumMethod() +} +func (W _reflect_Type) NumOut() int { + return W.WNumOut() +} +func (W _reflect_Type) Out(i int) reflect.Type { + return W.WOut(i) +} +func (W _reflect_Type) PkgPath() string { + return W.WPkgPath() +} +func (W _reflect_Type) Size() uintptr { + return W.WSize() +} +func (W _reflect_Type) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} diff --git a/stdlib/go1_19_regexp.go b/stdlib/go1_19_regexp.go new file mode 100644 index 000000000..948147deb --- /dev/null +++ b/stdlib/go1_19_regexp.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract regexp'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "regexp" +) + +func init() { + Symbols["regexp/regexp"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Compile": reflect.ValueOf(regexp.Compile), + "CompilePOSIX": reflect.ValueOf(regexp.CompilePOSIX), + "Match": reflect.ValueOf(regexp.Match), + "MatchReader": reflect.ValueOf(regexp.MatchReader), + "MatchString": reflect.ValueOf(regexp.MatchString), + "MustCompile": reflect.ValueOf(regexp.MustCompile), + "MustCompilePOSIX": reflect.ValueOf(regexp.MustCompilePOSIX), + "QuoteMeta": reflect.ValueOf(regexp.QuoteMeta), + + // type definitions + "Regexp": reflect.ValueOf((*regexp.Regexp)(nil)), + } +} diff --git a/stdlib/go1_19_regexp_syntax.go b/stdlib/go1_19_regexp_syntax.go new file mode 100644 index 000000000..392c7ebc6 --- /dev/null +++ b/stdlib/go1_19_regexp_syntax.go @@ -0,0 +1,96 @@ +// Code generated by 'yaegi extract regexp/syntax'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "regexp/syntax" +) + +func init() { + Symbols["regexp/syntax/syntax"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ClassNL": reflect.ValueOf(syntax.ClassNL), + "Compile": reflect.ValueOf(syntax.Compile), + "DotNL": reflect.ValueOf(syntax.DotNL), + "EmptyBeginLine": reflect.ValueOf(syntax.EmptyBeginLine), + "EmptyBeginText": reflect.ValueOf(syntax.EmptyBeginText), + "EmptyEndLine": reflect.ValueOf(syntax.EmptyEndLine), + "EmptyEndText": reflect.ValueOf(syntax.EmptyEndText), + "EmptyNoWordBoundary": reflect.ValueOf(syntax.EmptyNoWordBoundary), + "EmptyOpContext": reflect.ValueOf(syntax.EmptyOpContext), + "EmptyWordBoundary": reflect.ValueOf(syntax.EmptyWordBoundary), + "ErrInternalError": reflect.ValueOf(syntax.ErrInternalError), + "ErrInvalidCharClass": reflect.ValueOf(syntax.ErrInvalidCharClass), + "ErrInvalidCharRange": reflect.ValueOf(syntax.ErrInvalidCharRange), + "ErrInvalidEscape": reflect.ValueOf(syntax.ErrInvalidEscape), + "ErrInvalidNamedCapture": reflect.ValueOf(syntax.ErrInvalidNamedCapture), + "ErrInvalidPerlOp": reflect.ValueOf(syntax.ErrInvalidPerlOp), + "ErrInvalidRepeatOp": reflect.ValueOf(syntax.ErrInvalidRepeatOp), + "ErrInvalidRepeatSize": reflect.ValueOf(syntax.ErrInvalidRepeatSize), + "ErrInvalidUTF8": reflect.ValueOf(syntax.ErrInvalidUTF8), + "ErrMissingBracket": reflect.ValueOf(syntax.ErrMissingBracket), + "ErrMissingParen": reflect.ValueOf(syntax.ErrMissingParen), + "ErrMissingRepeatArgument": reflect.ValueOf(syntax.ErrMissingRepeatArgument), + "ErrNestingDepth": reflect.ValueOf(syntax.ErrNestingDepth), + "ErrTrailingBackslash": reflect.ValueOf(syntax.ErrTrailingBackslash), + "ErrUnexpectedParen": reflect.ValueOf(syntax.ErrUnexpectedParen), + "FoldCase": reflect.ValueOf(syntax.FoldCase), + "InstAlt": reflect.ValueOf(syntax.InstAlt), + "InstAltMatch": reflect.ValueOf(syntax.InstAltMatch), + "InstCapture": reflect.ValueOf(syntax.InstCapture), + "InstEmptyWidth": reflect.ValueOf(syntax.InstEmptyWidth), + "InstFail": reflect.ValueOf(syntax.InstFail), + "InstMatch": reflect.ValueOf(syntax.InstMatch), + "InstNop": reflect.ValueOf(syntax.InstNop), + "InstRune": reflect.ValueOf(syntax.InstRune), + "InstRune1": reflect.ValueOf(syntax.InstRune1), + "InstRuneAny": reflect.ValueOf(syntax.InstRuneAny), + "InstRuneAnyNotNL": reflect.ValueOf(syntax.InstRuneAnyNotNL), + "IsWordChar": reflect.ValueOf(syntax.IsWordChar), + "Literal": reflect.ValueOf(syntax.Literal), + "MatchNL": reflect.ValueOf(syntax.MatchNL), + "NonGreedy": reflect.ValueOf(syntax.NonGreedy), + "OneLine": reflect.ValueOf(syntax.OneLine), + "OpAlternate": reflect.ValueOf(syntax.OpAlternate), + "OpAnyChar": reflect.ValueOf(syntax.OpAnyChar), + "OpAnyCharNotNL": reflect.ValueOf(syntax.OpAnyCharNotNL), + "OpBeginLine": reflect.ValueOf(syntax.OpBeginLine), + "OpBeginText": reflect.ValueOf(syntax.OpBeginText), + "OpCapture": reflect.ValueOf(syntax.OpCapture), + "OpCharClass": reflect.ValueOf(syntax.OpCharClass), + "OpConcat": reflect.ValueOf(syntax.OpConcat), + "OpEmptyMatch": reflect.ValueOf(syntax.OpEmptyMatch), + "OpEndLine": reflect.ValueOf(syntax.OpEndLine), + "OpEndText": reflect.ValueOf(syntax.OpEndText), + "OpLiteral": reflect.ValueOf(syntax.OpLiteral), + "OpNoMatch": reflect.ValueOf(syntax.OpNoMatch), + "OpNoWordBoundary": reflect.ValueOf(syntax.OpNoWordBoundary), + "OpPlus": reflect.ValueOf(syntax.OpPlus), + "OpQuest": reflect.ValueOf(syntax.OpQuest), + "OpRepeat": reflect.ValueOf(syntax.OpRepeat), + "OpStar": reflect.ValueOf(syntax.OpStar), + "OpWordBoundary": reflect.ValueOf(syntax.OpWordBoundary), + "POSIX": reflect.ValueOf(syntax.POSIX), + "Parse": reflect.ValueOf(syntax.Parse), + "Perl": reflect.ValueOf(syntax.Perl), + "PerlX": reflect.ValueOf(syntax.PerlX), + "Simple": reflect.ValueOf(syntax.Simple), + "UnicodeGroups": reflect.ValueOf(syntax.UnicodeGroups), + "WasDollar": reflect.ValueOf(syntax.WasDollar), + + // type definitions + "EmptyOp": reflect.ValueOf((*syntax.EmptyOp)(nil)), + "Error": reflect.ValueOf((*syntax.Error)(nil)), + "ErrorCode": reflect.ValueOf((*syntax.ErrorCode)(nil)), + "Flags": reflect.ValueOf((*syntax.Flags)(nil)), + "Inst": reflect.ValueOf((*syntax.Inst)(nil)), + "InstOp": reflect.ValueOf((*syntax.InstOp)(nil)), + "Op": reflect.ValueOf((*syntax.Op)(nil)), + "Prog": reflect.ValueOf((*syntax.Prog)(nil)), + "Regexp": reflect.ValueOf((*syntax.Regexp)(nil)), + } +} diff --git a/stdlib/go1_19_runtime.go b/stdlib/go1_19_runtime.go new file mode 100644 index 000000000..9820ba94d --- /dev/null +++ b/stdlib/go1_19_runtime.go @@ -0,0 +1,84 @@ +// Code generated by 'yaegi extract runtime'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "runtime" +) + +func init() { + Symbols["runtime/runtime"] = map[string]reflect.Value{ + // function, constant and variable definitions + "BlockProfile": reflect.ValueOf(runtime.BlockProfile), + "Breakpoint": reflect.ValueOf(runtime.Breakpoint), + "CPUProfile": reflect.ValueOf(runtime.CPUProfile), + "Caller": reflect.ValueOf(runtime.Caller), + "Callers": reflect.ValueOf(runtime.Callers), + "CallersFrames": reflect.ValueOf(runtime.CallersFrames), + "Compiler": reflect.ValueOf(constant.MakeFromLiteral("\"gc\"", token.STRING, 0)), + "FuncForPC": reflect.ValueOf(runtime.FuncForPC), + "GC": reflect.ValueOf(runtime.GC), + "GOARCH": reflect.ValueOf(runtime.GOARCH), + "GOMAXPROCS": reflect.ValueOf(runtime.GOMAXPROCS), + "GOOS": reflect.ValueOf(runtime.GOOS), + "GOROOT": reflect.ValueOf(runtime.GOROOT), + "Goexit": reflect.ValueOf(runtime.Goexit), + "GoroutineProfile": reflect.ValueOf(runtime.GoroutineProfile), + "Gosched": reflect.ValueOf(runtime.Gosched), + "KeepAlive": reflect.ValueOf(runtime.KeepAlive), + "LockOSThread": reflect.ValueOf(runtime.LockOSThread), + "MemProfile": reflect.ValueOf(runtime.MemProfile), + "MemProfileRate": reflect.ValueOf(&runtime.MemProfileRate).Elem(), + "MutexProfile": reflect.ValueOf(runtime.MutexProfile), + "NumCPU": reflect.ValueOf(runtime.NumCPU), + "NumCgoCall": reflect.ValueOf(runtime.NumCgoCall), + "NumGoroutine": reflect.ValueOf(runtime.NumGoroutine), + "ReadMemStats": reflect.ValueOf(runtime.ReadMemStats), + "ReadTrace": reflect.ValueOf(runtime.ReadTrace), + "SetBlockProfileRate": reflect.ValueOf(runtime.SetBlockProfileRate), + "SetCPUProfileRate": reflect.ValueOf(runtime.SetCPUProfileRate), + "SetCgoTraceback": reflect.ValueOf(runtime.SetCgoTraceback), + "SetFinalizer": reflect.ValueOf(runtime.SetFinalizer), + "SetMutexProfileFraction": reflect.ValueOf(runtime.SetMutexProfileFraction), + "Stack": reflect.ValueOf(runtime.Stack), + "StartTrace": reflect.ValueOf(runtime.StartTrace), + "StopTrace": reflect.ValueOf(runtime.StopTrace), + "ThreadCreateProfile": reflect.ValueOf(runtime.ThreadCreateProfile), + "UnlockOSThread": reflect.ValueOf(runtime.UnlockOSThread), + "Version": reflect.ValueOf(runtime.Version), + + // type definitions + "BlockProfileRecord": reflect.ValueOf((*runtime.BlockProfileRecord)(nil)), + "Error": reflect.ValueOf((*runtime.Error)(nil)), + "Frame": reflect.ValueOf((*runtime.Frame)(nil)), + "Frames": reflect.ValueOf((*runtime.Frames)(nil)), + "Func": reflect.ValueOf((*runtime.Func)(nil)), + "MemProfileRecord": reflect.ValueOf((*runtime.MemProfileRecord)(nil)), + "MemStats": reflect.ValueOf((*runtime.MemStats)(nil)), + "StackRecord": reflect.ValueOf((*runtime.StackRecord)(nil)), + "TypeAssertionError": reflect.ValueOf((*runtime.TypeAssertionError)(nil)), + + // interface wrapper definitions + "_Error": reflect.ValueOf((*_runtime_Error)(nil)), + } +} + +// _runtime_Error is an interface wrapper for Error type +type _runtime_Error struct { + IValue interface{} + WError func() string + WRuntimeError func() +} + +func (W _runtime_Error) Error() string { + return W.WError() +} +func (W _runtime_Error) RuntimeError() { + W.WRuntimeError() +} diff --git a/stdlib/go1_19_runtime_debug.go b/stdlib/go1_19_runtime_debug.go new file mode 100644 index 000000000..177722c9a --- /dev/null +++ b/stdlib/go1_19_runtime_debug.go @@ -0,0 +1,36 @@ +// Code generated by 'yaegi extract runtime/debug'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "runtime/debug" +) + +func init() { + Symbols["runtime/debug/debug"] = map[string]reflect.Value{ + // function, constant and variable definitions + "FreeOSMemory": reflect.ValueOf(debug.FreeOSMemory), + "ParseBuildInfo": reflect.ValueOf(debug.ParseBuildInfo), + "PrintStack": reflect.ValueOf(debug.PrintStack), + "ReadBuildInfo": reflect.ValueOf(debug.ReadBuildInfo), + "ReadGCStats": reflect.ValueOf(debug.ReadGCStats), + "SetGCPercent": reflect.ValueOf(debug.SetGCPercent), + "SetMaxStack": reflect.ValueOf(debug.SetMaxStack), + "SetMaxThreads": reflect.ValueOf(debug.SetMaxThreads), + "SetMemoryLimit": reflect.ValueOf(debug.SetMemoryLimit), + "SetPanicOnFault": reflect.ValueOf(debug.SetPanicOnFault), + "SetTraceback": reflect.ValueOf(debug.SetTraceback), + "Stack": reflect.ValueOf(debug.Stack), + "WriteHeapDump": reflect.ValueOf(debug.WriteHeapDump), + + // type definitions + "BuildInfo": reflect.ValueOf((*debug.BuildInfo)(nil)), + "BuildSetting": reflect.ValueOf((*debug.BuildSetting)(nil)), + "GCStats": reflect.ValueOf((*debug.GCStats)(nil)), + "Module": reflect.ValueOf((*debug.Module)(nil)), + } +} diff --git a/stdlib/go1_19_runtime_metrics.go b/stdlib/go1_19_runtime_metrics.go new file mode 100644 index 000000000..8dd281cca --- /dev/null +++ b/stdlib/go1_19_runtime_metrics.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract runtime/metrics'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "runtime/metrics" +) + +func init() { + Symbols["runtime/metrics/metrics"] = map[string]reflect.Value{ + // function, constant and variable definitions + "All": reflect.ValueOf(metrics.All), + "KindBad": reflect.ValueOf(metrics.KindBad), + "KindFloat64": reflect.ValueOf(metrics.KindFloat64), + "KindFloat64Histogram": reflect.ValueOf(metrics.KindFloat64Histogram), + "KindUint64": reflect.ValueOf(metrics.KindUint64), + "Read": reflect.ValueOf(metrics.Read), + + // type definitions + "Description": reflect.ValueOf((*metrics.Description)(nil)), + "Float64Histogram": reflect.ValueOf((*metrics.Float64Histogram)(nil)), + "Sample": reflect.ValueOf((*metrics.Sample)(nil)), + "Value": reflect.ValueOf((*metrics.Value)(nil)), + "ValueKind": reflect.ValueOf((*metrics.ValueKind)(nil)), + } +} diff --git a/stdlib/go1_19_runtime_pprof.go b/stdlib/go1_19_runtime_pprof.go new file mode 100644 index 000000000..1f2c1fc93 --- /dev/null +++ b/stdlib/go1_19_runtime_pprof.go @@ -0,0 +1,33 @@ +// Code generated by 'yaegi extract runtime/pprof'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "runtime/pprof" +) + +func init() { + Symbols["runtime/pprof/pprof"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Do": reflect.ValueOf(pprof.Do), + "ForLabels": reflect.ValueOf(pprof.ForLabels), + "Label": reflect.ValueOf(pprof.Label), + "Labels": reflect.ValueOf(pprof.Labels), + "Lookup": reflect.ValueOf(pprof.Lookup), + "NewProfile": reflect.ValueOf(pprof.NewProfile), + "Profiles": reflect.ValueOf(pprof.Profiles), + "SetGoroutineLabels": reflect.ValueOf(pprof.SetGoroutineLabels), + "StartCPUProfile": reflect.ValueOf(pprof.StartCPUProfile), + "StopCPUProfile": reflect.ValueOf(pprof.StopCPUProfile), + "WithLabels": reflect.ValueOf(pprof.WithLabels), + "WriteHeapProfile": reflect.ValueOf(pprof.WriteHeapProfile), + + // type definitions + "LabelSet": reflect.ValueOf((*pprof.LabelSet)(nil)), + "Profile": reflect.ValueOf((*pprof.Profile)(nil)), + } +} diff --git a/stdlib/go1_19_runtime_trace.go b/stdlib/go1_19_runtime_trace.go new file mode 100644 index 000000000..1111cedfe --- /dev/null +++ b/stdlib/go1_19_runtime_trace.go @@ -0,0 +1,29 @@ +// Code generated by 'yaegi extract runtime/trace'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "runtime/trace" +) + +func init() { + Symbols["runtime/trace/trace"] = map[string]reflect.Value{ + // function, constant and variable definitions + "IsEnabled": reflect.ValueOf(trace.IsEnabled), + "Log": reflect.ValueOf(trace.Log), + "Logf": reflect.ValueOf(trace.Logf), + "NewTask": reflect.ValueOf(trace.NewTask), + "Start": reflect.ValueOf(trace.Start), + "StartRegion": reflect.ValueOf(trace.StartRegion), + "Stop": reflect.ValueOf(trace.Stop), + "WithRegion": reflect.ValueOf(trace.WithRegion), + + // type definitions + "Region": reflect.ValueOf((*trace.Region)(nil)), + "Task": reflect.ValueOf((*trace.Task)(nil)), + } +} diff --git a/stdlib/go1_19_sort.go b/stdlib/go1_19_sort.go new file mode 100644 index 000000000..444619eef --- /dev/null +++ b/stdlib/go1_19_sort.go @@ -0,0 +1,62 @@ +// Code generated by 'yaegi extract sort'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "sort" +) + +func init() { + Symbols["sort/sort"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Find": reflect.ValueOf(sort.Find), + "Float64s": reflect.ValueOf(sort.Float64s), + "Float64sAreSorted": reflect.ValueOf(sort.Float64sAreSorted), + "Ints": reflect.ValueOf(sort.Ints), + "IntsAreSorted": reflect.ValueOf(sort.IntsAreSorted), + "IsSorted": reflect.ValueOf(sort.IsSorted), + "Reverse": reflect.ValueOf(sort.Reverse), + "Search": reflect.ValueOf(sort.Search), + "SearchFloat64s": reflect.ValueOf(sort.SearchFloat64s), + "SearchInts": reflect.ValueOf(sort.SearchInts), + "SearchStrings": reflect.ValueOf(sort.SearchStrings), + "Slice": reflect.ValueOf(sort.Slice), + "SliceIsSorted": reflect.ValueOf(sort.SliceIsSorted), + "SliceStable": reflect.ValueOf(sort.SliceStable), + "Sort": reflect.ValueOf(sort.Sort), + "Stable": reflect.ValueOf(sort.Stable), + "Strings": reflect.ValueOf(sort.Strings), + "StringsAreSorted": reflect.ValueOf(sort.StringsAreSorted), + + // type definitions + "Float64Slice": reflect.ValueOf((*sort.Float64Slice)(nil)), + "IntSlice": reflect.ValueOf((*sort.IntSlice)(nil)), + "Interface": reflect.ValueOf((*sort.Interface)(nil)), + "StringSlice": reflect.ValueOf((*sort.StringSlice)(nil)), + + // interface wrapper definitions + "_Interface": reflect.ValueOf((*_sort_Interface)(nil)), + } +} + +// _sort_Interface is an interface wrapper for Interface type +type _sort_Interface struct { + IValue interface{} + WLen func() int + WLess func(i int, j int) bool + WSwap func(i int, j int) +} + +func (W _sort_Interface) Len() int { + return W.WLen() +} +func (W _sort_Interface) Less(i int, j int) bool { + return W.WLess(i, j) +} +func (W _sort_Interface) Swap(i int, j int) { + W.WSwap(i, j) +} diff --git a/stdlib/go1_19_strconv.go b/stdlib/go1_19_strconv.go new file mode 100644 index 000000000..3a2e03337 --- /dev/null +++ b/stdlib/go1_19_strconv.go @@ -0,0 +1,59 @@ +// Code generated by 'yaegi extract strconv'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "strconv" +) + +func init() { + Symbols["strconv/strconv"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AppendBool": reflect.ValueOf(strconv.AppendBool), + "AppendFloat": reflect.ValueOf(strconv.AppendFloat), + "AppendInt": reflect.ValueOf(strconv.AppendInt), + "AppendQuote": reflect.ValueOf(strconv.AppendQuote), + "AppendQuoteRune": reflect.ValueOf(strconv.AppendQuoteRune), + "AppendQuoteRuneToASCII": reflect.ValueOf(strconv.AppendQuoteRuneToASCII), + "AppendQuoteRuneToGraphic": reflect.ValueOf(strconv.AppendQuoteRuneToGraphic), + "AppendQuoteToASCII": reflect.ValueOf(strconv.AppendQuoteToASCII), + "AppendQuoteToGraphic": reflect.ValueOf(strconv.AppendQuoteToGraphic), + "AppendUint": reflect.ValueOf(strconv.AppendUint), + "Atoi": reflect.ValueOf(strconv.Atoi), + "CanBackquote": reflect.ValueOf(strconv.CanBackquote), + "ErrRange": reflect.ValueOf(&strconv.ErrRange).Elem(), + "ErrSyntax": reflect.ValueOf(&strconv.ErrSyntax).Elem(), + "FormatBool": reflect.ValueOf(strconv.FormatBool), + "FormatComplex": reflect.ValueOf(strconv.FormatComplex), + "FormatFloat": reflect.ValueOf(strconv.FormatFloat), + "FormatInt": reflect.ValueOf(strconv.FormatInt), + "FormatUint": reflect.ValueOf(strconv.FormatUint), + "IntSize": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IsGraphic": reflect.ValueOf(strconv.IsGraphic), + "IsPrint": reflect.ValueOf(strconv.IsPrint), + "Itoa": reflect.ValueOf(strconv.Itoa), + "ParseBool": reflect.ValueOf(strconv.ParseBool), + "ParseComplex": reflect.ValueOf(strconv.ParseComplex), + "ParseFloat": reflect.ValueOf(strconv.ParseFloat), + "ParseInt": reflect.ValueOf(strconv.ParseInt), + "ParseUint": reflect.ValueOf(strconv.ParseUint), + "Quote": reflect.ValueOf(strconv.Quote), + "QuoteRune": reflect.ValueOf(strconv.QuoteRune), + "QuoteRuneToASCII": reflect.ValueOf(strconv.QuoteRuneToASCII), + "QuoteRuneToGraphic": reflect.ValueOf(strconv.QuoteRuneToGraphic), + "QuoteToASCII": reflect.ValueOf(strconv.QuoteToASCII), + "QuoteToGraphic": reflect.ValueOf(strconv.QuoteToGraphic), + "QuotedPrefix": reflect.ValueOf(strconv.QuotedPrefix), + "Unquote": reflect.ValueOf(strconv.Unquote), + "UnquoteChar": reflect.ValueOf(strconv.UnquoteChar), + + // type definitions + "NumError": reflect.ValueOf((*strconv.NumError)(nil)), + } +} diff --git a/stdlib/go1_19_strings.go b/stdlib/go1_19_strings.go new file mode 100644 index 000000000..495d22ad7 --- /dev/null +++ b/stdlib/go1_19_strings.go @@ -0,0 +1,71 @@ +// Code generated by 'yaegi extract strings'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "strings" +) + +func init() { + Symbols["strings/strings"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Clone": reflect.ValueOf(strings.Clone), + "Compare": reflect.ValueOf(strings.Compare), + "Contains": reflect.ValueOf(strings.Contains), + "ContainsAny": reflect.ValueOf(strings.ContainsAny), + "ContainsRune": reflect.ValueOf(strings.ContainsRune), + "Count": reflect.ValueOf(strings.Count), + "Cut": reflect.ValueOf(strings.Cut), + "EqualFold": reflect.ValueOf(strings.EqualFold), + "Fields": reflect.ValueOf(strings.Fields), + "FieldsFunc": reflect.ValueOf(strings.FieldsFunc), + "HasPrefix": reflect.ValueOf(strings.HasPrefix), + "HasSuffix": reflect.ValueOf(strings.HasSuffix), + "Index": reflect.ValueOf(strings.Index), + "IndexAny": reflect.ValueOf(strings.IndexAny), + "IndexByte": reflect.ValueOf(strings.IndexByte), + "IndexFunc": reflect.ValueOf(strings.IndexFunc), + "IndexRune": reflect.ValueOf(strings.IndexRune), + "Join": reflect.ValueOf(strings.Join), + "LastIndex": reflect.ValueOf(strings.LastIndex), + "LastIndexAny": reflect.ValueOf(strings.LastIndexAny), + "LastIndexByte": reflect.ValueOf(strings.LastIndexByte), + "LastIndexFunc": reflect.ValueOf(strings.LastIndexFunc), + "Map": reflect.ValueOf(strings.Map), + "NewReader": reflect.ValueOf(strings.NewReader), + "NewReplacer": reflect.ValueOf(strings.NewReplacer), + "Repeat": reflect.ValueOf(strings.Repeat), + "Replace": reflect.ValueOf(strings.Replace), + "ReplaceAll": reflect.ValueOf(strings.ReplaceAll), + "Split": reflect.ValueOf(strings.Split), + "SplitAfter": reflect.ValueOf(strings.SplitAfter), + "SplitAfterN": reflect.ValueOf(strings.SplitAfterN), + "SplitN": reflect.ValueOf(strings.SplitN), + "Title": reflect.ValueOf(strings.Title), + "ToLower": reflect.ValueOf(strings.ToLower), + "ToLowerSpecial": reflect.ValueOf(strings.ToLowerSpecial), + "ToTitle": reflect.ValueOf(strings.ToTitle), + "ToTitleSpecial": reflect.ValueOf(strings.ToTitleSpecial), + "ToUpper": reflect.ValueOf(strings.ToUpper), + "ToUpperSpecial": reflect.ValueOf(strings.ToUpperSpecial), + "ToValidUTF8": reflect.ValueOf(strings.ToValidUTF8), + "Trim": reflect.ValueOf(strings.Trim), + "TrimFunc": reflect.ValueOf(strings.TrimFunc), + "TrimLeft": reflect.ValueOf(strings.TrimLeft), + "TrimLeftFunc": reflect.ValueOf(strings.TrimLeftFunc), + "TrimPrefix": reflect.ValueOf(strings.TrimPrefix), + "TrimRight": reflect.ValueOf(strings.TrimRight), + "TrimRightFunc": reflect.ValueOf(strings.TrimRightFunc), + "TrimSpace": reflect.ValueOf(strings.TrimSpace), + "TrimSuffix": reflect.ValueOf(strings.TrimSuffix), + + // type definitions + "Builder": reflect.ValueOf((*strings.Builder)(nil)), + "Reader": reflect.ValueOf((*strings.Reader)(nil)), + "Replacer": reflect.ValueOf((*strings.Replacer)(nil)), + } +} diff --git a/stdlib/go1_19_sync.go b/stdlib/go1_19_sync.go new file mode 100644 index 000000000..5de5054d9 --- /dev/null +++ b/stdlib/go1_19_sync.go @@ -0,0 +1,45 @@ +// Code generated by 'yaegi extract sync'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "sync" +) + +func init() { + Symbols["sync/sync"] = map[string]reflect.Value{ + // function, constant and variable definitions + "NewCond": reflect.ValueOf(sync.NewCond), + + // type definitions + "Cond": reflect.ValueOf((*sync.Cond)(nil)), + "Locker": reflect.ValueOf((*sync.Locker)(nil)), + "Map": reflect.ValueOf((*sync.Map)(nil)), + "Mutex": reflect.ValueOf((*sync.Mutex)(nil)), + "Once": reflect.ValueOf((*sync.Once)(nil)), + "Pool": reflect.ValueOf((*sync.Pool)(nil)), + "RWMutex": reflect.ValueOf((*sync.RWMutex)(nil)), + "WaitGroup": reflect.ValueOf((*sync.WaitGroup)(nil)), + + // interface wrapper definitions + "_Locker": reflect.ValueOf((*_sync_Locker)(nil)), + } +} + +// _sync_Locker is an interface wrapper for Locker type +type _sync_Locker struct { + IValue interface{} + WLock func() + WUnlock func() +} + +func (W _sync_Locker) Lock() { + W.WLock() +} +func (W _sync_Locker) Unlock() { + W.WUnlock() +} diff --git a/stdlib/go1_19_sync_atomic.go b/stdlib/go1_19_sync_atomic.go new file mode 100644 index 000000000..e3fe5aa29 --- /dev/null +++ b/stdlib/go1_19_sync_atomic.go @@ -0,0 +1,55 @@ +// Code generated by 'yaegi extract sync/atomic'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "sync/atomic" +) + +func init() { + Symbols["sync/atomic/atomic"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AddInt32": reflect.ValueOf(atomic.AddInt32), + "AddInt64": reflect.ValueOf(atomic.AddInt64), + "AddUint32": reflect.ValueOf(atomic.AddUint32), + "AddUint64": reflect.ValueOf(atomic.AddUint64), + "AddUintptr": reflect.ValueOf(atomic.AddUintptr), + "CompareAndSwapInt32": reflect.ValueOf(atomic.CompareAndSwapInt32), + "CompareAndSwapInt64": reflect.ValueOf(atomic.CompareAndSwapInt64), + "CompareAndSwapPointer": reflect.ValueOf(atomic.CompareAndSwapPointer), + "CompareAndSwapUint32": reflect.ValueOf(atomic.CompareAndSwapUint32), + "CompareAndSwapUint64": reflect.ValueOf(atomic.CompareAndSwapUint64), + "CompareAndSwapUintptr": reflect.ValueOf(atomic.CompareAndSwapUintptr), + "LoadInt32": reflect.ValueOf(atomic.LoadInt32), + "LoadInt64": reflect.ValueOf(atomic.LoadInt64), + "LoadPointer": reflect.ValueOf(atomic.LoadPointer), + "LoadUint32": reflect.ValueOf(atomic.LoadUint32), + "LoadUint64": reflect.ValueOf(atomic.LoadUint64), + "LoadUintptr": reflect.ValueOf(atomic.LoadUintptr), + "StoreInt32": reflect.ValueOf(atomic.StoreInt32), + "StoreInt64": reflect.ValueOf(atomic.StoreInt64), + "StorePointer": reflect.ValueOf(atomic.StorePointer), + "StoreUint32": reflect.ValueOf(atomic.StoreUint32), + "StoreUint64": reflect.ValueOf(atomic.StoreUint64), + "StoreUintptr": reflect.ValueOf(atomic.StoreUintptr), + "SwapInt32": reflect.ValueOf(atomic.SwapInt32), + "SwapInt64": reflect.ValueOf(atomic.SwapInt64), + "SwapPointer": reflect.ValueOf(atomic.SwapPointer), + "SwapUint32": reflect.ValueOf(atomic.SwapUint32), + "SwapUint64": reflect.ValueOf(atomic.SwapUint64), + "SwapUintptr": reflect.ValueOf(atomic.SwapUintptr), + + // type definitions + "Bool": reflect.ValueOf((*atomic.Bool)(nil)), + "Int32": reflect.ValueOf((*atomic.Int32)(nil)), + "Int64": reflect.ValueOf((*atomic.Int64)(nil)), + "Uint32": reflect.ValueOf((*atomic.Uint32)(nil)), + "Uint64": reflect.ValueOf((*atomic.Uint64)(nil)), + "Uintptr": reflect.ValueOf((*atomic.Uintptr)(nil)), + "Value": reflect.ValueOf((*atomic.Value)(nil)), + } +} diff --git a/stdlib/go1_19_testing.go b/stdlib/go1_19_testing.go new file mode 100644 index 000000000..d65173b52 --- /dev/null +++ b/stdlib/go1_19_testing.go @@ -0,0 +1,126 @@ +// Code generated by 'yaegi extract testing'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "testing" +) + +func init() { + Symbols["testing/testing"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllocsPerRun": reflect.ValueOf(testing.AllocsPerRun), + "Benchmark": reflect.ValueOf(testing.Benchmark), + "CoverMode": reflect.ValueOf(testing.CoverMode), + "Coverage": reflect.ValueOf(testing.Coverage), + "Init": reflect.ValueOf(testing.Init), + "Main": reflect.ValueOf(testing.Main), + "MainStart": reflect.ValueOf(testing.MainStart), + "RegisterCover": reflect.ValueOf(testing.RegisterCover), + "RunBenchmarks": reflect.ValueOf(testing.RunBenchmarks), + "RunExamples": reflect.ValueOf(testing.RunExamples), + "RunTests": reflect.ValueOf(testing.RunTests), + "Short": reflect.ValueOf(testing.Short), + "Verbose": reflect.ValueOf(testing.Verbose), + + // type definitions + "B": reflect.ValueOf((*testing.B)(nil)), + "BenchmarkResult": reflect.ValueOf((*testing.BenchmarkResult)(nil)), + "Cover": reflect.ValueOf((*testing.Cover)(nil)), + "CoverBlock": reflect.ValueOf((*testing.CoverBlock)(nil)), + "F": reflect.ValueOf((*testing.F)(nil)), + "InternalBenchmark": reflect.ValueOf((*testing.InternalBenchmark)(nil)), + "InternalExample": reflect.ValueOf((*testing.InternalExample)(nil)), + "InternalFuzzTarget": reflect.ValueOf((*testing.InternalFuzzTarget)(nil)), + "InternalTest": reflect.ValueOf((*testing.InternalTest)(nil)), + "M": reflect.ValueOf((*testing.M)(nil)), + "PB": reflect.ValueOf((*testing.PB)(nil)), + "T": reflect.ValueOf((*testing.T)(nil)), + "TB": reflect.ValueOf((*testing.TB)(nil)), + + // interface wrapper definitions + "_TB": reflect.ValueOf((*_testing_TB)(nil)), + } +} + +// _testing_TB is an interface wrapper for TB type +type _testing_TB struct { + IValue interface{} + WCleanup func(a0 func()) + WError func(args ...any) + WErrorf func(format string, args ...any) + WFail func() + WFailNow func() + WFailed func() bool + WFatal func(args ...any) + WFatalf func(format string, args ...any) + WHelper func() + WLog func(args ...any) + WLogf func(format string, args ...any) + WName func() string + WSetenv func(key string, value string) + WSkip func(args ...any) + WSkipNow func() + WSkipf func(format string, args ...any) + WSkipped func() bool + WTempDir func() string +} + +func (W _testing_TB) Cleanup(a0 func()) { + W.WCleanup(a0) +} +func (W _testing_TB) Error(args ...any) { + W.WError(args...) +} +func (W _testing_TB) Errorf(format string, args ...any) { + W.WErrorf(format, args...) +} +func (W _testing_TB) Fail() { + W.WFail() +} +func (W _testing_TB) FailNow() { + W.WFailNow() +} +func (W _testing_TB) Failed() bool { + return W.WFailed() +} +func (W _testing_TB) Fatal(args ...any) { + W.WFatal(args...) +} +func (W _testing_TB) Fatalf(format string, args ...any) { + W.WFatalf(format, args...) +} +func (W _testing_TB) Helper() { + W.WHelper() +} +func (W _testing_TB) Log(args ...any) { + W.WLog(args...) +} +func (W _testing_TB) Logf(format string, args ...any) { + W.WLogf(format, args...) +} +func (W _testing_TB) Name() string { + return W.WName() +} +func (W _testing_TB) Setenv(key string, value string) { + W.WSetenv(key, value) +} +func (W _testing_TB) Skip(args ...any) { + W.WSkip(args...) +} +func (W _testing_TB) SkipNow() { + W.WSkipNow() +} +func (W _testing_TB) Skipf(format string, args ...any) { + W.WSkipf(format, args...) +} +func (W _testing_TB) Skipped() bool { + return W.WSkipped() +} +func (W _testing_TB) TempDir() string { + return W.WTempDir() +} diff --git a/stdlib/go1_19_testing_fstest.go b/stdlib/go1_19_testing_fstest.go new file mode 100644 index 000000000..21a9a0a7d --- /dev/null +++ b/stdlib/go1_19_testing_fstest.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract testing/fstest'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "testing/fstest" +) + +func init() { + Symbols["testing/fstest/fstest"] = map[string]reflect.Value{ + // function, constant and variable definitions + "TestFS": reflect.ValueOf(fstest.TestFS), + + // type definitions + "MapFS": reflect.ValueOf((*fstest.MapFS)(nil)), + "MapFile": reflect.ValueOf((*fstest.MapFile)(nil)), + } +} diff --git a/stdlib/go1_19_testing_iotest.go b/stdlib/go1_19_testing_iotest.go new file mode 100644 index 000000000..ffe56d6e8 --- /dev/null +++ b/stdlib/go1_19_testing_iotest.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract testing/iotest'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "testing/iotest" +) + +func init() { + Symbols["testing/iotest/iotest"] = map[string]reflect.Value{ + // function, constant and variable definitions + "DataErrReader": reflect.ValueOf(iotest.DataErrReader), + "ErrReader": reflect.ValueOf(iotest.ErrReader), + "ErrTimeout": reflect.ValueOf(&iotest.ErrTimeout).Elem(), + "HalfReader": reflect.ValueOf(iotest.HalfReader), + "NewReadLogger": reflect.ValueOf(iotest.NewReadLogger), + "NewWriteLogger": reflect.ValueOf(iotest.NewWriteLogger), + "OneByteReader": reflect.ValueOf(iotest.OneByteReader), + "TestReader": reflect.ValueOf(iotest.TestReader), + "TimeoutReader": reflect.ValueOf(iotest.TimeoutReader), + "TruncateWriter": reflect.ValueOf(iotest.TruncateWriter), + } +} diff --git a/stdlib/go1_19_testing_quick.go b/stdlib/go1_19_testing_quick.go new file mode 100644 index 000000000..346217412 --- /dev/null +++ b/stdlib/go1_19_testing_quick.go @@ -0,0 +1,41 @@ +// Code generated by 'yaegi extract testing/quick'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "math/rand" + "reflect" + "testing/quick" +) + +func init() { + Symbols["testing/quick/quick"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Check": reflect.ValueOf(quick.Check), + "CheckEqual": reflect.ValueOf(quick.CheckEqual), + "Value": reflect.ValueOf(quick.Value), + + // type definitions + "CheckEqualError": reflect.ValueOf((*quick.CheckEqualError)(nil)), + "CheckError": reflect.ValueOf((*quick.CheckError)(nil)), + "Config": reflect.ValueOf((*quick.Config)(nil)), + "Generator": reflect.ValueOf((*quick.Generator)(nil)), + "SetupError": reflect.ValueOf((*quick.SetupError)(nil)), + + // interface wrapper definitions + "_Generator": reflect.ValueOf((*_testing_quick_Generator)(nil)), + } +} + +// _testing_quick_Generator is an interface wrapper for Generator type +type _testing_quick_Generator struct { + IValue interface{} + WGenerate func(rand *rand.Rand, size int) reflect.Value +} + +func (W _testing_quick_Generator) Generate(rand *rand.Rand, size int) reflect.Value { + return W.WGenerate(rand, size) +} diff --git a/stdlib/go1_19_text_scanner.go b/stdlib/go1_19_text_scanner.go new file mode 100644 index 000000000..9ccffe9c3 --- /dev/null +++ b/stdlib/go1_19_text_scanner.go @@ -0,0 +1,42 @@ +// Code generated by 'yaegi extract text/scanner'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "text/scanner" +) + +func init() { + Symbols["text/scanner/scanner"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Char": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "Comment": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EOF": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "Float": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "GoTokens": reflect.ValueOf(constant.MakeFromLiteral("1012", token.INT, 0)), + "GoWhitespace": reflect.ValueOf(constant.MakeFromLiteral("4294977024", token.INT, 0)), + "Ident": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Int": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "RawString": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "ScanChars": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ScanComments": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ScanFloats": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ScanIdents": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ScanInts": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ScanRawStrings": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ScanStrings": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SkipComments": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "String": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "TokenString": reflect.ValueOf(scanner.TokenString), + + // type definitions + "Position": reflect.ValueOf((*scanner.Position)(nil)), + "Scanner": reflect.ValueOf((*scanner.Scanner)(nil)), + } +} diff --git a/stdlib/go1_19_text_tabwriter.go b/stdlib/go1_19_text_tabwriter.go new file mode 100644 index 000000000..446c2b5dd --- /dev/null +++ b/stdlib/go1_19_text_tabwriter.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract text/tabwriter'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "text/tabwriter" +) + +func init() { + Symbols["text/tabwriter/tabwriter"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AlignRight": reflect.ValueOf(tabwriter.AlignRight), + "Debug": reflect.ValueOf(tabwriter.Debug), + "DiscardEmptyColumns": reflect.ValueOf(tabwriter.DiscardEmptyColumns), + "Escape": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FilterHTML": reflect.ValueOf(tabwriter.FilterHTML), + "NewWriter": reflect.ValueOf(tabwriter.NewWriter), + "StripEscape": reflect.ValueOf(tabwriter.StripEscape), + "TabIndent": reflect.ValueOf(tabwriter.TabIndent), + + // type definitions + "Writer": reflect.ValueOf((*tabwriter.Writer)(nil)), + } +} diff --git a/stdlib/go1_19_text_template.go b/stdlib/go1_19_text_template.go new file mode 100644 index 000000000..78748ad81 --- /dev/null +++ b/stdlib/go1_19_text_template.go @@ -0,0 +1,35 @@ +// Code generated by 'yaegi extract text/template'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "text/template" +) + +func init() { + Symbols["text/template/template"] = map[string]reflect.Value{ + // function, constant and variable definitions + "HTMLEscape": reflect.ValueOf(template.HTMLEscape), + "HTMLEscapeString": reflect.ValueOf(template.HTMLEscapeString), + "HTMLEscaper": reflect.ValueOf(template.HTMLEscaper), + "IsTrue": reflect.ValueOf(template.IsTrue), + "JSEscape": reflect.ValueOf(template.JSEscape), + "JSEscapeString": reflect.ValueOf(template.JSEscapeString), + "JSEscaper": reflect.ValueOf(template.JSEscaper), + "Must": reflect.ValueOf(template.Must), + "New": reflect.ValueOf(template.New), + "ParseFS": reflect.ValueOf(template.ParseFS), + "ParseFiles": reflect.ValueOf(template.ParseFiles), + "ParseGlob": reflect.ValueOf(template.ParseGlob), + "URLQueryEscaper": reflect.ValueOf(template.URLQueryEscaper), + + // type definitions + "ExecError": reflect.ValueOf((*template.ExecError)(nil)), + "FuncMap": reflect.ValueOf((*template.FuncMap)(nil)), + "Template": reflect.ValueOf((*template.Template)(nil)), + } +} diff --git a/stdlib/go1_19_text_template_parse.go b/stdlib/go1_19_text_template_parse.go new file mode 100644 index 000000000..a34a9859a --- /dev/null +++ b/stdlib/go1_19_text_template_parse.go @@ -0,0 +1,101 @@ +// Code generated by 'yaegi extract text/template/parse'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "text/template/parse" +) + +func init() { + Symbols["text/template/parse/parse"] = map[string]reflect.Value{ + // function, constant and variable definitions + "IsEmptyTree": reflect.ValueOf(parse.IsEmptyTree), + "New": reflect.ValueOf(parse.New), + "NewIdentifier": reflect.ValueOf(parse.NewIdentifier), + "NodeAction": reflect.ValueOf(parse.NodeAction), + "NodeBool": reflect.ValueOf(parse.NodeBool), + "NodeBreak": reflect.ValueOf(parse.NodeBreak), + "NodeChain": reflect.ValueOf(parse.NodeChain), + "NodeCommand": reflect.ValueOf(parse.NodeCommand), + "NodeComment": reflect.ValueOf(parse.NodeComment), + "NodeContinue": reflect.ValueOf(parse.NodeContinue), + "NodeDot": reflect.ValueOf(parse.NodeDot), + "NodeField": reflect.ValueOf(parse.NodeField), + "NodeIdentifier": reflect.ValueOf(parse.NodeIdentifier), + "NodeIf": reflect.ValueOf(parse.NodeIf), + "NodeList": reflect.ValueOf(parse.NodeList), + "NodeNil": reflect.ValueOf(parse.NodeNil), + "NodeNumber": reflect.ValueOf(parse.NodeNumber), + "NodePipe": reflect.ValueOf(parse.NodePipe), + "NodeRange": reflect.ValueOf(parse.NodeRange), + "NodeString": reflect.ValueOf(parse.NodeString), + "NodeTemplate": reflect.ValueOf(parse.NodeTemplate), + "NodeText": reflect.ValueOf(parse.NodeText), + "NodeVariable": reflect.ValueOf(parse.NodeVariable), + "NodeWith": reflect.ValueOf(parse.NodeWith), + "Parse": reflect.ValueOf(parse.Parse), + "ParseComments": reflect.ValueOf(parse.ParseComments), + "SkipFuncCheck": reflect.ValueOf(parse.SkipFuncCheck), + + // type definitions + "ActionNode": reflect.ValueOf((*parse.ActionNode)(nil)), + "BoolNode": reflect.ValueOf((*parse.BoolNode)(nil)), + "BranchNode": reflect.ValueOf((*parse.BranchNode)(nil)), + "BreakNode": reflect.ValueOf((*parse.BreakNode)(nil)), + "ChainNode": reflect.ValueOf((*parse.ChainNode)(nil)), + "CommandNode": reflect.ValueOf((*parse.CommandNode)(nil)), + "CommentNode": reflect.ValueOf((*parse.CommentNode)(nil)), + "ContinueNode": reflect.ValueOf((*parse.ContinueNode)(nil)), + "DotNode": reflect.ValueOf((*parse.DotNode)(nil)), + "FieldNode": reflect.ValueOf((*parse.FieldNode)(nil)), + "IdentifierNode": reflect.ValueOf((*parse.IdentifierNode)(nil)), + "IfNode": reflect.ValueOf((*parse.IfNode)(nil)), + "ListNode": reflect.ValueOf((*parse.ListNode)(nil)), + "Mode": reflect.ValueOf((*parse.Mode)(nil)), + "NilNode": reflect.ValueOf((*parse.NilNode)(nil)), + "Node": reflect.ValueOf((*parse.Node)(nil)), + "NodeType": reflect.ValueOf((*parse.NodeType)(nil)), + "NumberNode": reflect.ValueOf((*parse.NumberNode)(nil)), + "PipeNode": reflect.ValueOf((*parse.PipeNode)(nil)), + "Pos": reflect.ValueOf((*parse.Pos)(nil)), + "RangeNode": reflect.ValueOf((*parse.RangeNode)(nil)), + "StringNode": reflect.ValueOf((*parse.StringNode)(nil)), + "TemplateNode": reflect.ValueOf((*parse.TemplateNode)(nil)), + "TextNode": reflect.ValueOf((*parse.TextNode)(nil)), + "Tree": reflect.ValueOf((*parse.Tree)(nil)), + "VariableNode": reflect.ValueOf((*parse.VariableNode)(nil)), + "WithNode": reflect.ValueOf((*parse.WithNode)(nil)), + + // interface wrapper definitions + "_Node": reflect.ValueOf((*_text_template_parse_Node)(nil)), + } +} + +// _text_template_parse_Node is an interface wrapper for Node type +type _text_template_parse_Node struct { + IValue interface{} + WCopy func() parse.Node + WPosition func() parse.Pos + WString func() string + WType func() parse.NodeType +} + +func (W _text_template_parse_Node) Copy() parse.Node { + return W.WCopy() +} +func (W _text_template_parse_Node) Position() parse.Pos { + return W.WPosition() +} +func (W _text_template_parse_Node) String() string { + if W.WString == nil { + return "" + } + return W.WString() +} +func (W _text_template_parse_Node) Type() parse.NodeType { + return W.WType() +} diff --git a/stdlib/go1_19_time.go b/stdlib/go1_19_time.go new file mode 100644 index 000000000..d6a0fa4d2 --- /dev/null +++ b/stdlib/go1_19_time.go @@ -0,0 +1,91 @@ +// Code generated by 'yaegi extract time'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "time" +) + +func init() { + Symbols["time/time"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ANSIC": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 2006\"", token.STRING, 0)), + "After": reflect.ValueOf(time.After), + "AfterFunc": reflect.ValueOf(time.AfterFunc), + "April": reflect.ValueOf(time.April), + "August": reflect.ValueOf(time.August), + "Date": reflect.ValueOf(time.Date), + "December": reflect.ValueOf(time.December), + "February": reflect.ValueOf(time.February), + "FixedZone": reflect.ValueOf(time.FixedZone), + "Friday": reflect.ValueOf(time.Friday), + "Hour": reflect.ValueOf(time.Hour), + "January": reflect.ValueOf(time.January), + "July": reflect.ValueOf(time.July), + "June": reflect.ValueOf(time.June), + "Kitchen": reflect.ValueOf(constant.MakeFromLiteral("\"3:04PM\"", token.STRING, 0)), + "Layout": reflect.ValueOf(constant.MakeFromLiteral("\"01/02 03:04:05PM '06 -0700\"", token.STRING, 0)), + "LoadLocation": reflect.ValueOf(time.LoadLocation), + "LoadLocationFromTZData": reflect.ValueOf(time.LoadLocationFromTZData), + "Local": reflect.ValueOf(&time.Local).Elem(), + "March": reflect.ValueOf(time.March), + "May": reflect.ValueOf(time.May), + "Microsecond": reflect.ValueOf(time.Microsecond), + "Millisecond": reflect.ValueOf(time.Millisecond), + "Minute": reflect.ValueOf(time.Minute), + "Monday": reflect.ValueOf(time.Monday), + "Nanosecond": reflect.ValueOf(time.Nanosecond), + "NewTicker": reflect.ValueOf(time.NewTicker), + "NewTimer": reflect.ValueOf(time.NewTimer), + "November": reflect.ValueOf(time.November), + "Now": reflect.ValueOf(time.Now), + "October": reflect.ValueOf(time.October), + "Parse": reflect.ValueOf(time.Parse), + "ParseDuration": reflect.ValueOf(time.ParseDuration), + "ParseInLocation": reflect.ValueOf(time.ParseInLocation), + "RFC1123": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 MST\"", token.STRING, 0)), + "RFC1123Z": reflect.ValueOf(constant.MakeFromLiteral("\"Mon, 02 Jan 2006 15:04:05 -0700\"", token.STRING, 0)), + "RFC3339": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05Z07:00\"", token.STRING, 0)), + "RFC3339Nano": reflect.ValueOf(constant.MakeFromLiteral("\"2006-01-02T15:04:05.999999999Z07:00\"", token.STRING, 0)), + "RFC822": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 MST\"", token.STRING, 0)), + "RFC822Z": reflect.ValueOf(constant.MakeFromLiteral("\"02 Jan 06 15:04 -0700\"", token.STRING, 0)), + "RFC850": reflect.ValueOf(constant.MakeFromLiteral("\"Monday, 02-Jan-06 15:04:05 MST\"", token.STRING, 0)), + "RubyDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan 02 15:04:05 -0700 2006\"", token.STRING, 0)), + "Saturday": reflect.ValueOf(time.Saturday), + "Second": reflect.ValueOf(time.Second), + "September": reflect.ValueOf(time.September), + "Since": reflect.ValueOf(time.Since), + "Sleep": reflect.ValueOf(time.Sleep), + "Stamp": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05\"", token.STRING, 0)), + "StampMicro": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000\"", token.STRING, 0)), + "StampMilli": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000\"", token.STRING, 0)), + "StampNano": reflect.ValueOf(constant.MakeFromLiteral("\"Jan _2 15:04:05.000000000\"", token.STRING, 0)), + "Sunday": reflect.ValueOf(time.Sunday), + "Thursday": reflect.ValueOf(time.Thursday), + "Tick": reflect.ValueOf(time.Tick), + "Tuesday": reflect.ValueOf(time.Tuesday), + "UTC": reflect.ValueOf(&time.UTC).Elem(), + "Unix": reflect.ValueOf(time.Unix), + "UnixDate": reflect.ValueOf(constant.MakeFromLiteral("\"Mon Jan _2 15:04:05 MST 2006\"", token.STRING, 0)), + "UnixMicro": reflect.ValueOf(time.UnixMicro), + "UnixMilli": reflect.ValueOf(time.UnixMilli), + "Until": reflect.ValueOf(time.Until), + "Wednesday": reflect.ValueOf(time.Wednesday), + + // type definitions + "Duration": reflect.ValueOf((*time.Duration)(nil)), + "Location": reflect.ValueOf((*time.Location)(nil)), + "Month": reflect.ValueOf((*time.Month)(nil)), + "ParseError": reflect.ValueOf((*time.ParseError)(nil)), + "Ticker": reflect.ValueOf((*time.Ticker)(nil)), + "Time": reflect.ValueOf((*time.Time)(nil)), + "Timer": reflect.ValueOf((*time.Timer)(nil)), + "Weekday": reflect.ValueOf((*time.Weekday)(nil)), + } +} diff --git a/stdlib/go1_19_unicode.go b/stdlib/go1_19_unicode.go new file mode 100644 index 000000000..12d114082 --- /dev/null +++ b/stdlib/go1_19_unicode.go @@ -0,0 +1,305 @@ +// Code generated by 'yaegi extract unicode'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "unicode" +) + +func init() { + Symbols["unicode/unicode"] = map[string]reflect.Value{ + // function, constant and variable definitions + "ASCII_Hex_Digit": reflect.ValueOf(&unicode.ASCII_Hex_Digit).Elem(), + "Adlam": reflect.ValueOf(&unicode.Adlam).Elem(), + "Ahom": reflect.ValueOf(&unicode.Ahom).Elem(), + "Anatolian_Hieroglyphs": reflect.ValueOf(&unicode.Anatolian_Hieroglyphs).Elem(), + "Arabic": reflect.ValueOf(&unicode.Arabic).Elem(), + "Armenian": reflect.ValueOf(&unicode.Armenian).Elem(), + "Avestan": reflect.ValueOf(&unicode.Avestan).Elem(), + "AzeriCase": reflect.ValueOf(&unicode.AzeriCase).Elem(), + "Balinese": reflect.ValueOf(&unicode.Balinese).Elem(), + "Bamum": reflect.ValueOf(&unicode.Bamum).Elem(), + "Bassa_Vah": reflect.ValueOf(&unicode.Bassa_Vah).Elem(), + "Batak": reflect.ValueOf(&unicode.Batak).Elem(), + "Bengali": reflect.ValueOf(&unicode.Bengali).Elem(), + "Bhaiksuki": reflect.ValueOf(&unicode.Bhaiksuki).Elem(), + "Bidi_Control": reflect.ValueOf(&unicode.Bidi_Control).Elem(), + "Bopomofo": reflect.ValueOf(&unicode.Bopomofo).Elem(), + "Brahmi": reflect.ValueOf(&unicode.Brahmi).Elem(), + "Braille": reflect.ValueOf(&unicode.Braille).Elem(), + "Buginese": reflect.ValueOf(&unicode.Buginese).Elem(), + "Buhid": reflect.ValueOf(&unicode.Buhid).Elem(), + "C": reflect.ValueOf(&unicode.C).Elem(), + "Canadian_Aboriginal": reflect.ValueOf(&unicode.Canadian_Aboriginal).Elem(), + "Carian": reflect.ValueOf(&unicode.Carian).Elem(), + "CaseRanges": reflect.ValueOf(&unicode.CaseRanges).Elem(), + "Categories": reflect.ValueOf(&unicode.Categories).Elem(), + "Caucasian_Albanian": reflect.ValueOf(&unicode.Caucasian_Albanian).Elem(), + "Cc": reflect.ValueOf(&unicode.Cc).Elem(), + "Cf": reflect.ValueOf(&unicode.Cf).Elem(), + "Chakma": reflect.ValueOf(&unicode.Chakma).Elem(), + "Cham": reflect.ValueOf(&unicode.Cham).Elem(), + "Cherokee": reflect.ValueOf(&unicode.Cherokee).Elem(), + "Chorasmian": reflect.ValueOf(&unicode.Chorasmian).Elem(), + "Co": reflect.ValueOf(&unicode.Co).Elem(), + "Common": reflect.ValueOf(&unicode.Common).Elem(), + "Coptic": reflect.ValueOf(&unicode.Coptic).Elem(), + "Cs": reflect.ValueOf(&unicode.Cs).Elem(), + "Cuneiform": reflect.ValueOf(&unicode.Cuneiform).Elem(), + "Cypriot": reflect.ValueOf(&unicode.Cypriot).Elem(), + "Cyrillic": reflect.ValueOf(&unicode.Cyrillic).Elem(), + "Dash": reflect.ValueOf(&unicode.Dash).Elem(), + "Deprecated": reflect.ValueOf(&unicode.Deprecated).Elem(), + "Deseret": reflect.ValueOf(&unicode.Deseret).Elem(), + "Devanagari": reflect.ValueOf(&unicode.Devanagari).Elem(), + "Diacritic": reflect.ValueOf(&unicode.Diacritic).Elem(), + "Digit": reflect.ValueOf(&unicode.Digit).Elem(), + "Dives_Akuru": reflect.ValueOf(&unicode.Dives_Akuru).Elem(), + "Dogra": reflect.ValueOf(&unicode.Dogra).Elem(), + "Duployan": reflect.ValueOf(&unicode.Duployan).Elem(), + "Egyptian_Hieroglyphs": reflect.ValueOf(&unicode.Egyptian_Hieroglyphs).Elem(), + "Elbasan": reflect.ValueOf(&unicode.Elbasan).Elem(), + "Elymaic": reflect.ValueOf(&unicode.Elymaic).Elem(), + "Ethiopic": reflect.ValueOf(&unicode.Ethiopic).Elem(), + "Extender": reflect.ValueOf(&unicode.Extender).Elem(), + "FoldCategory": reflect.ValueOf(&unicode.FoldCategory).Elem(), + "FoldScript": reflect.ValueOf(&unicode.FoldScript).Elem(), + "Georgian": reflect.ValueOf(&unicode.Georgian).Elem(), + "Glagolitic": reflect.ValueOf(&unicode.Glagolitic).Elem(), + "Gothic": reflect.ValueOf(&unicode.Gothic).Elem(), + "Grantha": reflect.ValueOf(&unicode.Grantha).Elem(), + "GraphicRanges": reflect.ValueOf(&unicode.GraphicRanges).Elem(), + "Greek": reflect.ValueOf(&unicode.Greek).Elem(), + "Gujarati": reflect.ValueOf(&unicode.Gujarati).Elem(), + "Gunjala_Gondi": reflect.ValueOf(&unicode.Gunjala_Gondi).Elem(), + "Gurmukhi": reflect.ValueOf(&unicode.Gurmukhi).Elem(), + "Han": reflect.ValueOf(&unicode.Han).Elem(), + "Hangul": reflect.ValueOf(&unicode.Hangul).Elem(), + "Hanifi_Rohingya": reflect.ValueOf(&unicode.Hanifi_Rohingya).Elem(), + "Hanunoo": reflect.ValueOf(&unicode.Hanunoo).Elem(), + "Hatran": reflect.ValueOf(&unicode.Hatran).Elem(), + "Hebrew": reflect.ValueOf(&unicode.Hebrew).Elem(), + "Hex_Digit": reflect.ValueOf(&unicode.Hex_Digit).Elem(), + "Hiragana": reflect.ValueOf(&unicode.Hiragana).Elem(), + "Hyphen": reflect.ValueOf(&unicode.Hyphen).Elem(), + "IDS_Binary_Operator": reflect.ValueOf(&unicode.IDS_Binary_Operator).Elem(), + "IDS_Trinary_Operator": reflect.ValueOf(&unicode.IDS_Trinary_Operator).Elem(), + "Ideographic": reflect.ValueOf(&unicode.Ideographic).Elem(), + "Imperial_Aramaic": reflect.ValueOf(&unicode.Imperial_Aramaic).Elem(), + "In": reflect.ValueOf(unicode.In), + "Inherited": reflect.ValueOf(&unicode.Inherited).Elem(), + "Inscriptional_Pahlavi": reflect.ValueOf(&unicode.Inscriptional_Pahlavi).Elem(), + "Inscriptional_Parthian": reflect.ValueOf(&unicode.Inscriptional_Parthian).Elem(), + "Is": reflect.ValueOf(unicode.Is), + "IsControl": reflect.ValueOf(unicode.IsControl), + "IsDigit": reflect.ValueOf(unicode.IsDigit), + "IsGraphic": reflect.ValueOf(unicode.IsGraphic), + "IsLetter": reflect.ValueOf(unicode.IsLetter), + "IsLower": reflect.ValueOf(unicode.IsLower), + "IsMark": reflect.ValueOf(unicode.IsMark), + "IsNumber": reflect.ValueOf(unicode.IsNumber), + "IsOneOf": reflect.ValueOf(unicode.IsOneOf), + "IsPrint": reflect.ValueOf(unicode.IsPrint), + "IsPunct": reflect.ValueOf(unicode.IsPunct), + "IsSpace": reflect.ValueOf(unicode.IsSpace), + "IsSymbol": reflect.ValueOf(unicode.IsSymbol), + "IsTitle": reflect.ValueOf(unicode.IsTitle), + "IsUpper": reflect.ValueOf(unicode.IsUpper), + "Javanese": reflect.ValueOf(&unicode.Javanese).Elem(), + "Join_Control": reflect.ValueOf(&unicode.Join_Control).Elem(), + "Kaithi": reflect.ValueOf(&unicode.Kaithi).Elem(), + "Kannada": reflect.ValueOf(&unicode.Kannada).Elem(), + "Katakana": reflect.ValueOf(&unicode.Katakana).Elem(), + "Kayah_Li": reflect.ValueOf(&unicode.Kayah_Li).Elem(), + "Kharoshthi": reflect.ValueOf(&unicode.Kharoshthi).Elem(), + "Khitan_Small_Script": reflect.ValueOf(&unicode.Khitan_Small_Script).Elem(), + "Khmer": reflect.ValueOf(&unicode.Khmer).Elem(), + "Khojki": reflect.ValueOf(&unicode.Khojki).Elem(), + "Khudawadi": reflect.ValueOf(&unicode.Khudawadi).Elem(), + "L": reflect.ValueOf(&unicode.L).Elem(), + "Lao": reflect.ValueOf(&unicode.Lao).Elem(), + "Latin": reflect.ValueOf(&unicode.Latin).Elem(), + "Lepcha": reflect.ValueOf(&unicode.Lepcha).Elem(), + "Letter": reflect.ValueOf(&unicode.Letter).Elem(), + "Limbu": reflect.ValueOf(&unicode.Limbu).Elem(), + "Linear_A": reflect.ValueOf(&unicode.Linear_A).Elem(), + "Linear_B": reflect.ValueOf(&unicode.Linear_B).Elem(), + "Lisu": reflect.ValueOf(&unicode.Lisu).Elem(), + "Ll": reflect.ValueOf(&unicode.Ll).Elem(), + "Lm": reflect.ValueOf(&unicode.Lm).Elem(), + "Lo": reflect.ValueOf(&unicode.Lo).Elem(), + "Logical_Order_Exception": reflect.ValueOf(&unicode.Logical_Order_Exception).Elem(), + "Lower": reflect.ValueOf(&unicode.Lower).Elem(), + "LowerCase": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Lt": reflect.ValueOf(&unicode.Lt).Elem(), + "Lu": reflect.ValueOf(&unicode.Lu).Elem(), + "Lycian": reflect.ValueOf(&unicode.Lycian).Elem(), + "Lydian": reflect.ValueOf(&unicode.Lydian).Elem(), + "M": reflect.ValueOf(&unicode.M).Elem(), + "Mahajani": reflect.ValueOf(&unicode.Mahajani).Elem(), + "Makasar": reflect.ValueOf(&unicode.Makasar).Elem(), + "Malayalam": reflect.ValueOf(&unicode.Malayalam).Elem(), + "Mandaic": reflect.ValueOf(&unicode.Mandaic).Elem(), + "Manichaean": reflect.ValueOf(&unicode.Manichaean).Elem(), + "Marchen": reflect.ValueOf(&unicode.Marchen).Elem(), + "Mark": reflect.ValueOf(&unicode.Mark).Elem(), + "Masaram_Gondi": reflect.ValueOf(&unicode.Masaram_Gondi).Elem(), + "MaxASCII": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "MaxCase": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MaxLatin1": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), + "Mc": reflect.ValueOf(&unicode.Mc).Elem(), + "Me": reflect.ValueOf(&unicode.Me).Elem(), + "Medefaidrin": reflect.ValueOf(&unicode.Medefaidrin).Elem(), + "Meetei_Mayek": reflect.ValueOf(&unicode.Meetei_Mayek).Elem(), + "Mende_Kikakui": reflect.ValueOf(&unicode.Mende_Kikakui).Elem(), + "Meroitic_Cursive": reflect.ValueOf(&unicode.Meroitic_Cursive).Elem(), + "Meroitic_Hieroglyphs": reflect.ValueOf(&unicode.Meroitic_Hieroglyphs).Elem(), + "Miao": reflect.ValueOf(&unicode.Miao).Elem(), + "Mn": reflect.ValueOf(&unicode.Mn).Elem(), + "Modi": reflect.ValueOf(&unicode.Modi).Elem(), + "Mongolian": reflect.ValueOf(&unicode.Mongolian).Elem(), + "Mro": reflect.ValueOf(&unicode.Mro).Elem(), + "Multani": reflect.ValueOf(&unicode.Multani).Elem(), + "Myanmar": reflect.ValueOf(&unicode.Myanmar).Elem(), + "N": reflect.ValueOf(&unicode.N).Elem(), + "Nabataean": reflect.ValueOf(&unicode.Nabataean).Elem(), + "Nandinagari": reflect.ValueOf(&unicode.Nandinagari).Elem(), + "Nd": reflect.ValueOf(&unicode.Nd).Elem(), + "New_Tai_Lue": reflect.ValueOf(&unicode.New_Tai_Lue).Elem(), + "Newa": reflect.ValueOf(&unicode.Newa).Elem(), + "Nko": reflect.ValueOf(&unicode.Nko).Elem(), + "Nl": reflect.ValueOf(&unicode.Nl).Elem(), + "No": reflect.ValueOf(&unicode.No).Elem(), + "Noncharacter_Code_Point": reflect.ValueOf(&unicode.Noncharacter_Code_Point).Elem(), + "Number": reflect.ValueOf(&unicode.Number).Elem(), + "Nushu": reflect.ValueOf(&unicode.Nushu).Elem(), + "Nyiakeng_Puachue_Hmong": reflect.ValueOf(&unicode.Nyiakeng_Puachue_Hmong).Elem(), + "Ogham": reflect.ValueOf(&unicode.Ogham).Elem(), + "Ol_Chiki": reflect.ValueOf(&unicode.Ol_Chiki).Elem(), + "Old_Hungarian": reflect.ValueOf(&unicode.Old_Hungarian).Elem(), + "Old_Italic": reflect.ValueOf(&unicode.Old_Italic).Elem(), + "Old_North_Arabian": reflect.ValueOf(&unicode.Old_North_Arabian).Elem(), + "Old_Permic": reflect.ValueOf(&unicode.Old_Permic).Elem(), + "Old_Persian": reflect.ValueOf(&unicode.Old_Persian).Elem(), + "Old_Sogdian": reflect.ValueOf(&unicode.Old_Sogdian).Elem(), + "Old_South_Arabian": reflect.ValueOf(&unicode.Old_South_Arabian).Elem(), + "Old_Turkic": reflect.ValueOf(&unicode.Old_Turkic).Elem(), + "Oriya": reflect.ValueOf(&unicode.Oriya).Elem(), + "Osage": reflect.ValueOf(&unicode.Osage).Elem(), + "Osmanya": reflect.ValueOf(&unicode.Osmanya).Elem(), + "Other": reflect.ValueOf(&unicode.Other).Elem(), + "Other_Alphabetic": reflect.ValueOf(&unicode.Other_Alphabetic).Elem(), + "Other_Default_Ignorable_Code_Point": reflect.ValueOf(&unicode.Other_Default_Ignorable_Code_Point).Elem(), + "Other_Grapheme_Extend": reflect.ValueOf(&unicode.Other_Grapheme_Extend).Elem(), + "Other_ID_Continue": reflect.ValueOf(&unicode.Other_ID_Continue).Elem(), + "Other_ID_Start": reflect.ValueOf(&unicode.Other_ID_Start).Elem(), + "Other_Lowercase": reflect.ValueOf(&unicode.Other_Lowercase).Elem(), + "Other_Math": reflect.ValueOf(&unicode.Other_Math).Elem(), + "Other_Uppercase": reflect.ValueOf(&unicode.Other_Uppercase).Elem(), + "P": reflect.ValueOf(&unicode.P).Elem(), + "Pahawh_Hmong": reflect.ValueOf(&unicode.Pahawh_Hmong).Elem(), + "Palmyrene": reflect.ValueOf(&unicode.Palmyrene).Elem(), + "Pattern_Syntax": reflect.ValueOf(&unicode.Pattern_Syntax).Elem(), + "Pattern_White_Space": reflect.ValueOf(&unicode.Pattern_White_Space).Elem(), + "Pau_Cin_Hau": reflect.ValueOf(&unicode.Pau_Cin_Hau).Elem(), + "Pc": reflect.ValueOf(&unicode.Pc).Elem(), + "Pd": reflect.ValueOf(&unicode.Pd).Elem(), + "Pe": reflect.ValueOf(&unicode.Pe).Elem(), + "Pf": reflect.ValueOf(&unicode.Pf).Elem(), + "Phags_Pa": reflect.ValueOf(&unicode.Phags_Pa).Elem(), + "Phoenician": reflect.ValueOf(&unicode.Phoenician).Elem(), + "Pi": reflect.ValueOf(&unicode.Pi).Elem(), + "Po": reflect.ValueOf(&unicode.Po).Elem(), + "Prepended_Concatenation_Mark": reflect.ValueOf(&unicode.Prepended_Concatenation_Mark).Elem(), + "PrintRanges": reflect.ValueOf(&unicode.PrintRanges).Elem(), + "Properties": reflect.ValueOf(&unicode.Properties).Elem(), + "Ps": reflect.ValueOf(&unicode.Ps).Elem(), + "Psalter_Pahlavi": reflect.ValueOf(&unicode.Psalter_Pahlavi).Elem(), + "Punct": reflect.ValueOf(&unicode.Punct).Elem(), + "Quotation_Mark": reflect.ValueOf(&unicode.Quotation_Mark).Elem(), + "Radical": reflect.ValueOf(&unicode.Radical).Elem(), + "Regional_Indicator": reflect.ValueOf(&unicode.Regional_Indicator).Elem(), + "Rejang": reflect.ValueOf(&unicode.Rejang).Elem(), + "ReplacementChar": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "Runic": reflect.ValueOf(&unicode.Runic).Elem(), + "S": reflect.ValueOf(&unicode.S).Elem(), + "STerm": reflect.ValueOf(&unicode.STerm).Elem(), + "Samaritan": reflect.ValueOf(&unicode.Samaritan).Elem(), + "Saurashtra": reflect.ValueOf(&unicode.Saurashtra).Elem(), + "Sc": reflect.ValueOf(&unicode.Sc).Elem(), + "Scripts": reflect.ValueOf(&unicode.Scripts).Elem(), + "Sentence_Terminal": reflect.ValueOf(&unicode.Sentence_Terminal).Elem(), + "Sharada": reflect.ValueOf(&unicode.Sharada).Elem(), + "Shavian": reflect.ValueOf(&unicode.Shavian).Elem(), + "Siddham": reflect.ValueOf(&unicode.Siddham).Elem(), + "SignWriting": reflect.ValueOf(&unicode.SignWriting).Elem(), + "SimpleFold": reflect.ValueOf(unicode.SimpleFold), + "Sinhala": reflect.ValueOf(&unicode.Sinhala).Elem(), + "Sk": reflect.ValueOf(&unicode.Sk).Elem(), + "Sm": reflect.ValueOf(&unicode.Sm).Elem(), + "So": reflect.ValueOf(&unicode.So).Elem(), + "Soft_Dotted": reflect.ValueOf(&unicode.Soft_Dotted).Elem(), + "Sogdian": reflect.ValueOf(&unicode.Sogdian).Elem(), + "Sora_Sompeng": reflect.ValueOf(&unicode.Sora_Sompeng).Elem(), + "Soyombo": reflect.ValueOf(&unicode.Soyombo).Elem(), + "Space": reflect.ValueOf(&unicode.Space).Elem(), + "Sundanese": reflect.ValueOf(&unicode.Sundanese).Elem(), + "Syloti_Nagri": reflect.ValueOf(&unicode.Syloti_Nagri).Elem(), + "Symbol": reflect.ValueOf(&unicode.Symbol).Elem(), + "Syriac": reflect.ValueOf(&unicode.Syriac).Elem(), + "Tagalog": reflect.ValueOf(&unicode.Tagalog).Elem(), + "Tagbanwa": reflect.ValueOf(&unicode.Tagbanwa).Elem(), + "Tai_Le": reflect.ValueOf(&unicode.Tai_Le).Elem(), + "Tai_Tham": reflect.ValueOf(&unicode.Tai_Tham).Elem(), + "Tai_Viet": reflect.ValueOf(&unicode.Tai_Viet).Elem(), + "Takri": reflect.ValueOf(&unicode.Takri).Elem(), + "Tamil": reflect.ValueOf(&unicode.Tamil).Elem(), + "Tangut": reflect.ValueOf(&unicode.Tangut).Elem(), + "Telugu": reflect.ValueOf(&unicode.Telugu).Elem(), + "Terminal_Punctuation": reflect.ValueOf(&unicode.Terminal_Punctuation).Elem(), + "Thaana": reflect.ValueOf(&unicode.Thaana).Elem(), + "Thai": reflect.ValueOf(&unicode.Thai).Elem(), + "Tibetan": reflect.ValueOf(&unicode.Tibetan).Elem(), + "Tifinagh": reflect.ValueOf(&unicode.Tifinagh).Elem(), + "Tirhuta": reflect.ValueOf(&unicode.Tirhuta).Elem(), + "Title": reflect.ValueOf(&unicode.Title).Elem(), + "TitleCase": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "To": reflect.ValueOf(unicode.To), + "ToLower": reflect.ValueOf(unicode.ToLower), + "ToTitle": reflect.ValueOf(unicode.ToTitle), + "ToUpper": reflect.ValueOf(unicode.ToUpper), + "TurkishCase": reflect.ValueOf(&unicode.TurkishCase).Elem(), + "Ugaritic": reflect.ValueOf(&unicode.Ugaritic).Elem(), + "Unified_Ideograph": reflect.ValueOf(&unicode.Unified_Ideograph).Elem(), + "Upper": reflect.ValueOf(&unicode.Upper).Elem(), + "UpperCase": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "UpperLower": reflect.ValueOf(constant.MakeFromLiteral("1114112", token.INT, 0)), + "Vai": reflect.ValueOf(&unicode.Vai).Elem(), + "Variation_Selector": reflect.ValueOf(&unicode.Variation_Selector).Elem(), + "Version": reflect.ValueOf(constant.MakeFromLiteral("\"13.0.0\"", token.STRING, 0)), + "Wancho": reflect.ValueOf(&unicode.Wancho).Elem(), + "Warang_Citi": reflect.ValueOf(&unicode.Warang_Citi).Elem(), + "White_Space": reflect.ValueOf(&unicode.White_Space).Elem(), + "Yezidi": reflect.ValueOf(&unicode.Yezidi).Elem(), + "Yi": reflect.ValueOf(&unicode.Yi).Elem(), + "Z": reflect.ValueOf(&unicode.Z).Elem(), + "Zanabazar_Square": reflect.ValueOf(&unicode.Zanabazar_Square).Elem(), + "Zl": reflect.ValueOf(&unicode.Zl).Elem(), + "Zp": reflect.ValueOf(&unicode.Zp).Elem(), + "Zs": reflect.ValueOf(&unicode.Zs).Elem(), + + // type definitions + "CaseRange": reflect.ValueOf((*unicode.CaseRange)(nil)), + "Range16": reflect.ValueOf((*unicode.Range16)(nil)), + "Range32": reflect.ValueOf((*unicode.Range32)(nil)), + "RangeTable": reflect.ValueOf((*unicode.RangeTable)(nil)), + "SpecialCase": reflect.ValueOf((*unicode.SpecialCase)(nil)), + } +} diff --git a/stdlib/go1_19_unicode_utf16.go b/stdlib/go1_19_unicode_utf16.go new file mode 100644 index 000000000..919f691ca --- /dev/null +++ b/stdlib/go1_19_unicode_utf16.go @@ -0,0 +1,22 @@ +// Code generated by 'yaegi extract unicode/utf16'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "reflect" + "unicode/utf16" +) + +func init() { + Symbols["unicode/utf16/utf16"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Decode": reflect.ValueOf(utf16.Decode), + "DecodeRune": reflect.ValueOf(utf16.DecodeRune), + "Encode": reflect.ValueOf(utf16.Encode), + "EncodeRune": reflect.ValueOf(utf16.EncodeRune), + "IsSurrogate": reflect.ValueOf(utf16.IsSurrogate), + } +} diff --git a/stdlib/go1_19_unicode_utf8.go b/stdlib/go1_19_unicode_utf8.go new file mode 100644 index 000000000..2b0aa4a71 --- /dev/null +++ b/stdlib/go1_19_unicode_utf8.go @@ -0,0 +1,38 @@ +// Code generated by 'yaegi extract unicode/utf8'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package stdlib + +import ( + "go/constant" + "go/token" + "reflect" + "unicode/utf8" +) + +func init() { + Symbols["unicode/utf8/utf8"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AppendRune": reflect.ValueOf(utf8.AppendRune), + "DecodeLastRune": reflect.ValueOf(utf8.DecodeLastRune), + "DecodeLastRuneInString": reflect.ValueOf(utf8.DecodeLastRuneInString), + "DecodeRune": reflect.ValueOf(utf8.DecodeRune), + "DecodeRuneInString": reflect.ValueOf(utf8.DecodeRuneInString), + "EncodeRune": reflect.ValueOf(utf8.EncodeRune), + "FullRune": reflect.ValueOf(utf8.FullRune), + "FullRuneInString": reflect.ValueOf(utf8.FullRuneInString), + "MaxRune": reflect.ValueOf(constant.MakeFromLiteral("1114111", token.INT, 0)), + "RuneCount": reflect.ValueOf(utf8.RuneCount), + "RuneCountInString": reflect.ValueOf(utf8.RuneCountInString), + "RuneError": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "RuneLen": reflect.ValueOf(utf8.RuneLen), + "RuneSelf": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RuneStart": reflect.ValueOf(utf8.RuneStart), + "UTFMax": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Valid": reflect.ValueOf(utf8.Valid), + "ValidRune": reflect.ValueOf(utf8.ValidRune), + "ValidString": reflect.ValueOf(utf8.ValidString), + } +} diff --git a/stdlib/stdlib.go b/stdlib/stdlib.go index 31bf108ae..b4b027728 100644 --- a/stdlib/stdlib.go +++ b/stdlib/stdlib.go @@ -1,5 +1,5 @@ -//go:build go1.16 -// +build go1.16 +//go:build go1.18 +// +build go1.18 // Package stdlib provides wrappers of standard library packages to be imported natively in Yaegi. package stdlib @@ -34,7 +34,7 @@ func init() { //go:generate ../internal/cmd/extract/extract crypto/rc4 crypto/rsa crypto/sha1 crypto/sha256 crypto/sha512 //go:generate ../internal/cmd/extract/extract crypto/subtle crypto/tls crypto/x509 crypto/x509/pkix //go:generate ../internal/cmd/extract/extract database/sql database/sql/driver -//go:generate ../internal/cmd/extract/extract debug/dwarf debug/elf debug/gosym debug/macho debug/pe debug/plan9obj +//go:generate ../internal/cmd/extract/extract debug/buildinfo debug/dwarf debug/elf debug/gosym debug/macho debug/pe debug/plan9obj //go:generate ../internal/cmd/extract/extract embed encoding encoding/ascii85 encoding/asn1 encoding/base32 //go:generate ../internal/cmd/extract/extract encoding/base64 encoding/binary encoding/csv encoding/gob //go:generate ../internal/cmd/extract/extract encoding/hex encoding/json encoding/pem encoding/xml @@ -50,7 +50,7 @@ func init() { //go:generate ../internal/cmd/extract/extract mime mime/multipart mime/quotedprintable //go:generate ../internal/cmd/extract/extract net net/http net/http/cgi net/http/cookiejar net/http/fcgi //go:generate ../internal/cmd/extract/extract net/http/httptest net/http/httptrace net/http/httputil net/http/pprof -//go:generate ../internal/cmd/extract/extract net/mail net/rpc net/rpc/jsonrpc net/smtp net/textproto net/url +//go:generate ../internal/cmd/extract/extract net/mail net/netip net/rpc net/rpc/jsonrpc net/smtp net/textproto net/url //go:generate ../internal/cmd/extract/extract os os/signal os/user //go:generate ../internal/cmd/extract/extract path path/filepath reflect regexp regexp/syntax //go:generate ../internal/cmd/extract/extract runtime runtime/debug runtime/metrics runtime/pprof runtime/trace diff --git a/stdlib/syscall/go1_16_syscall_aix_ppc64.go b/stdlib/syscall/go1_16_syscall_aix_ppc64.go deleted file mode 100644 index 9d8e48ab0..000000000 --- a/stdlib/syscall/go1_16_syscall_aix_ppc64.go +++ /dev/null @@ -1,1384 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_INTF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_NDD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETWARE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RIF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_802_3": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_802_5": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666332", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSMAP_DIR": reflect.ValueOf(constant.MakeFromLiteral("\"/usr/lib/nls/csmap/\"", token.STRING, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECH_ICMPID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECLONEME": reflect.ValueOf(syscall.ECLONEME), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "ECORRUPT": reflect.ValueOf(syscall.ECORRUPT), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDREQ": reflect.ValueOf(syscall.EDESTADDREQ), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDIST": reflect.ValueOf(syscall.EDIST), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFORMAT": reflect.ValueOf(syscall.EFORMAT), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIA": reflect.ValueOf(syscall.EMEDIA), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCONNECT": reflect.ValueOf(syscall.ENOCONNECT), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTREADY": reflect.ValueOf(syscall.ENOTREADY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTRUST": reflect.ValueOf(syscall.ENOTRUST), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESAD": reflect.ValueOf(syscall.ESAD), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESOFT": reflect.ValueOf(syscall.ESOFT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESYSERROR": reflect.ValueOf(syscall.ESYSERROR), - "ETHERNET_CSMACD": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVENP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EWRPROTECT": reflect.ValueOf(syscall.EWRPROTECT), - "EXCONTINUE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXDLOK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EXIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EXPGIO": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXRESUME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EXRETURN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EXSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTRAP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EYEC_RTENTRYA": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992513", token.INT, 0)), - "EYEC_RTENTRYF": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992518", token.INT, 0)), - "E_ACC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "FLUSHBAND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FLUSHLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "FLUSHR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FLUSHRW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FLUSHW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_TSTLK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getkerninfo": reflect.ValueOf(syscall.Getkerninfo), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "ICMP6_SEC_SEND_DEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "ICMP6_SEC_SEND_GET": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "ICMP6_SEC_SEND_SET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "ICMP6_SEC_SEND_SET_CGA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFA_FIRSTALIAS": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_64BIT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IFF_ALLCAST": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BPF": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IFF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("527442", token.INT, 0)), - "IFF_CHECKSUM_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_D1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_D2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_D3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_D4": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_DO_HW_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_GROUP_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IFF_IFBUFMGT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOECHO": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_PSEG": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SNAP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TCP_DISABLE_CKSUM": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IFF_TCP_NOCKSUM": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VIPA": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFO_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CLUSTER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FCS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIFTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HF": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SN": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_VIPA": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_USE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BIP": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GIF": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_QOS": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_ADDR_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_AIXRAWSOCKET": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IPV6_FLOWINFO_PRIFLOW": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IPV6_FLOWINFO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), - "IPV6_FLOWINFO_SRFLAG": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IPV6_FLOWINFO_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MIPDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_NOPROBE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_PRIORITY_10": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), - "IPV6_PRIORITY_11": reflect.ValueOf(constant.MakeFromLiteral("184549376", token.INT, 0)), - "IPV6_PRIORITY_12": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), - "IPV6_PRIORITY_13": reflect.ValueOf(constant.MakeFromLiteral("218103808", token.INT, 0)), - "IPV6_PRIORITY_14": reflect.ValueOf(constant.MakeFromLiteral("234881024", token.INT, 0)), - "IPV6_PRIORITY_15": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), - "IPV6_PRIORITY_8": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IPV6_PRIORITY_9": reflect.ValueOf(constant.MakeFromLiteral("150994944", token.INT, 0)), - "IPV6_PRIORITY_BULK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IPV6_PRIORITY_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("117440512", token.INT, 0)), - "IPV6_PRIORITY_FILLER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IPV6_PRIORITY_INTERACTIVE": reflect.ValueOf(constant.MakeFromLiteral("100663296", token.INT, 0)), - "IPV6_PRIORITY_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("50331648", token.INT, 0)), - "IPV6_PRIORITY_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("83886080", token.INT, 0)), - "IPV6_PRIORITY_UNATTENDED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IPV6_PRIORITY_UNCHARACTERIZED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVHOPS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVSRCRT": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_TYPE_2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_SENDIF": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_SRFLAG_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SRFLAG_STRICT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_TOKEN_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1610612736", token.INT, 0)), - "IP_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_BROADCAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_CACHE_LINE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DHCPMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_FINDPMTU": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_INC_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_INIT_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OPT": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PMTUAGE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RECVINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_RECVMACHDR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "I_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("536892165", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "LNOFLSH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "MAP_VARIABLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_ANY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_BAND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_MPEG2": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_EINTR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_PER_SEC": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_CIO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_CIOR": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DEFER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_DELAY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EFSOFF": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), - "O_EFSON": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_NSHARE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_RAW": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSHARE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_64BIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_ADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PR_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_CONNREQUIRED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_FASTHZ": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_INP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PR_INTRLEVEL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PR_MLS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PR_MLS_1_LABEL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PR_NOEOR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PR_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_SLOWHZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_WANTRCVD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PT_COMMAND_MAX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_GET_UKEY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_LDINFO": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PT_LDXINFO": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PT_MULTI": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PT_NEXT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PT_QUERY": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_READ_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_FPR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_READ_GPR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_REATT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PT_REGSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_SET": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WATCH": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PT_WRITE_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_FPR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PT_WRITE_GPR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1023", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_ACTIVE_DGD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_BCE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_BUL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FREE_IN_PROG": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PERMANENT6": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SMALLMTU": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STOPSRCH": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GETNEXT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTLOST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SAMEADDR": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_SET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_VERSION_GR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_VERSION_GR_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_VERSION_POLICY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_VERSION_POLICY_EXT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_VERSION_POLICY_PRFN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGAIO": reflect.ValueOf(syscall.SIGAIO), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGALRM1": reflect.ValueOf(syscall.SIGALRM1), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCAPI": reflect.ValueOf(syscall.SIGCAPI), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGCPUFAIL": reflect.ValueOf(syscall.SIGCPUFAIL), - "SIGDANGER": reflect.ValueOf(syscall.SIGDANGER), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGGRANT": reflect.ValueOf(syscall.SIGGRANT), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOINT": reflect.ValueOf(syscall.SIGIOINT), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKAP": reflect.ValueOf(syscall.SIGKAP), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLOST": reflect.ValueOf(syscall.SIGLOST), - "SIGMAX": reflect.ValueOf(syscall.SIGMAX), - "SIGMAX32": reflect.ValueOf(syscall.SIGMAX32), - "SIGMAX64": reflect.ValueOf(syscall.SIGMAX64), - "SIGMIGRATE": reflect.ValueOf(syscall.SIGMIGRATE), - "SIGMSG": reflect.ValueOf(syscall.SIGMSG), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPRE": reflect.ValueOf(syscall.SIGPRE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPTY": reflect.ValueOf(syscall.SIGPTY), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUEUE_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGRECONFIG": reflect.ValueOf(syscall.SIGRECONFIG), - "SIGRETRACT": reflect.ValueOf(syscall.SIGRETRACT), - "SIGSAK": reflect.ValueOf(syscall.SIGSAK), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSOUND": reflect.ValueOf(syscall.SIGSOUND), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGSYSERROR": reflect.ValueOf(syscall.SIGSYSERROR), - "SIGTALRM": reflect.ValueOf(syscall.SIGTALRM), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVIRT": reflect.ValueOf(syscall.SIGVIRT), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897858", token.INT, 0)), - "SIOCADDMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194512", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), - "SIOCADDNETID": reflect.ValueOf(constant.MakeFromLiteral("-2144835241", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784438", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2143262438", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476000", token.INT, 0)), - "SIOCDELIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897859", token.INT, 0)), - "SIOCDELMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194511", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), - "SIOCDELPMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144833526", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784437", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835303", token.INT, 0)), - "SIOCDNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649280", token.INT, 0)), - "SIOCDX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835227", token.INT, 0)), - "SIOCFIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359469", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1068734170", token.INT, 0)), - "SIOCGETMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897903", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401100", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401101", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093471", token.INT, 0)), - "SIOCGIFADDRS": reflect.ValueOf(constant.MakeFromLiteral("536897932", token.INT, 0)), - "SIOCGIFBAUDRATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093395", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093469", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666299", token.INT, 0)), - "SIOCGIFCONFGLOB": reflect.ValueOf(constant.MakeFromLiteral("-1072666224", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093470", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071093487", token.INT, 0)), - "SIOCGIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897896", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1068209771", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071093481", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071093418", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071093467", token.INT, 0)), - "SIOCGIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-1071093462", token.INT, 0)), - "SIOCGISNO": reflect.ValueOf(constant.MakeFromLiteral("-1071093397", token.INT, 0)), - "SIOCGLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452670", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649317", token.INT, 0)), - "SIOCGNETOPT1": reflect.ValueOf(constant.MakeFromLiteral("-1071617663", token.INT, 0)), - "SIOCGNMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897902", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSIZIFCONF": reflect.ValueOf(constant.MakeFromLiteral("1074030954", token.INT, 0)), - "SIOCGSRCFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1072142027", token.INT, 0)), - "SIOCGTUNEPHASE": reflect.ValueOf(constant.MakeFromLiteral("-1073452662", token.INT, 0)), - "SIOCGX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093404", token.INT, 0)), - "SIOCIFATTACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359513", token.INT, 0)), - "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359514", token.INT, 0)), - "SIOCIFGETPKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359515", token.INT, 0)), - "SIOCIF_ATM_DARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359491", token.INT, 0)), - "SIOCIF_ATM_DUMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359493", token.INT, 0)), - "SIOCIF_ATM_GARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359490", token.INT, 0)), - "SIOCIF_ATM_IDLE": reflect.ValueOf(constant.MakeFromLiteral("-2145359494", token.INT, 0)), - "SIOCIF_ATM_SARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359489", token.INT, 0)), - "SIOCIF_ATM_SNMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359495", token.INT, 0)), - "SIOCIF_ATM_SVC": reflect.ValueOf(constant.MakeFromLiteral("-2145359492", token.INT, 0)), - "SIOCIF_ATM_UBR": reflect.ValueOf(constant.MakeFromLiteral("-2145359496", token.INT, 0)), - "SIOCIF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("-2147194476", token.INT, 0)), - "SIOCIF_IB_ARP_INCOMP": reflect.ValueOf(constant.MakeFromLiteral("-2145359479", token.INT, 0)), - "SIOCIF_IB_ARP_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-2145359480", token.INT, 0)), - "SIOCIF_IB_CLEAR_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617647", token.INT, 0)), - "SIOCIF_IB_DEL_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359487", token.INT, 0)), - "SIOCIF_IB_DEL_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617648", token.INT, 0)), - "SIOCIF_IB_DUMP_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359488", token.INT, 0)), - "SIOCIF_IB_GET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359486", token.INT, 0)), - "SIOCIF_IB_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850485", token.INT, 0)), - "SIOCIF_IB_GET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), - "SIOCIF_IB_NOTIFY_ADDR_REM": reflect.ValueOf(constant.MakeFromLiteral("-1065850474", token.INT, 0)), - "SIOCIF_IB_RESET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850481", token.INT, 0)), - "SIOCIF_IB_RESIZE_CQ": reflect.ValueOf(constant.MakeFromLiteral("-2145359481", token.INT, 0)), - "SIOCIF_IB_SET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359485", token.INT, 0)), - "SIOCIF_IB_SET_PKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359484", token.INT, 0)), - "SIOCIF_IB_SET_PORT": reflect.ValueOf(constant.MakeFromLiteral("-2145359483", token.INT, 0)), - "SIOCIF_IB_SET_QKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359478", token.INT, 0)), - "SIOCIF_IB_SET_QSIZE": reflect.ValueOf(constant.MakeFromLiteral("-2145359482", token.INT, 0)), - "SIOCLISTIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897860", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476002", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359552", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835316", token.INT, 0)), - "SIOCSIFADDRORI": reflect.ValueOf(constant.MakeFromLiteral("-2145097331", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835309", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835314", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2144835312", token.INT, 0)), - "SIOCSIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897897", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2144835304", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144835240", token.INT, 0)), - "SIOCSIFNETDUMP": reflect.ValueOf(constant.MakeFromLiteral("-2144835300", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2144835306", token.INT, 0)), - "SIOCSIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-2144835287", token.INT, 0)), - "SIOCSIFSUBCHAN": reflect.ValueOf(constant.MakeFromLiteral("-2144835301", token.INT, 0)), - "SIOCSISNO": reflect.ValueOf(constant.MakeFromLiteral("-2144835220", token.INT, 0)), - "SIOCSLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452669", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359554", token.INT, 0)), - "SIOCSNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-2147391142", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359560", token.INT, 0)), - "SIOCSX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835229", token.INT, 0)), - "SOCK_CONN_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_CKSUMRECV": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_KERNACCEPT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOMULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_NOREUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERID": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USE_IFBUFS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "S_BANDURG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_EMODFMT": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), - "S_ENFMT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ERROR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_HANGUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_ICRYPTO": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFJOURNAL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMPX": reflect.ValueOf(constant.MakeFromLiteral("8704", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFPDIR": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "S_IFPSDIR": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "S_IFPSSDIR": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFSYSEA": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "S_INPUT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ITCB": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "S_ITP": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXACL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "S_IXATTR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IXMOD": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_MSG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_RDBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_RDNORM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "S_RESERVED3": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "S_RESERVED4": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "S_RESFMT1": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "S_RESFMT10": reflect.ValueOf(constant.MakeFromLiteral("872415232", token.INT, 0)), - "S_RESFMT11": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "S_RESFMT12": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), - "S_RESFMT2": reflect.ValueOf(constant.MakeFromLiteral("335544320", token.INT, 0)), - "S_RESFMT3": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "S_RESFMT4": reflect.ValueOf(constant.MakeFromLiteral("469762048", token.INT, 0)), - "S_RESFMT5": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "S_RESFMT6": reflect.ValueOf(constant.MakeFromLiteral("603979776", token.INT, 0)), - "S_RESFMT7": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "S_RESFMT8": reflect.ValueOf(constant.MakeFromLiteral("738197504", token.INT, 0)), - "S_WRBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_WRNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("1028", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_24DAYS_WORTH_OF_SLOWTICKS": reflect.ValueOf(constant.MakeFromLiteral("4147200", token.INT, 0)), - "TCP_ACLADD": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "TCP_ACLBIND": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "TCP_ACLCLEAR": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "TCP_ACLDEL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "TCP_ACLDENY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_ACLFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "TCP_ACLGID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_ACLLS": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "TCP_ACLSUBNET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_ACLUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CWND_DF": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_CWND_IF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_DELAY_ACK_FIN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_DELAY_ACK_SYN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_FASTNAME": reflect.ValueOf(constant.MakeFromLiteral("16844810", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_LSPRIV": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "TCP_LUID": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXDF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "TCP_MAXIF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAXWINDOWSCALE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("1460", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NODELAYACK": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_NOREDUCE_CWND_EXIT_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_NOREDUCE_CWND_IN_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_NOTENTER_SSTART": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_OPT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_RFC1323": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_SETPRIV": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "TCP_STDURG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP_OPTLEN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_UNSETPRIV": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359906", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359824", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033664", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033736", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("536900610", token.INT, 0)), - "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359934", token.INT, 0)), - "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359935", token.INT, 0)), - "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("1074033788", token.INT, 0)), - "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359933", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359915", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359916", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359908", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359812", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359917", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359920", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359913", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490897", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359809", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490890", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490889", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490997", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359926", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("18446744071562163314", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359910", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTRT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "VTDELAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERSE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "WPARSTART": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WPARSTOP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WPARTTYNAME": reflect.ValueOf(constant.MakeFromLiteral("\"Global\"", token.STRING, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid64_t": reflect.ValueOf((*syscall.Fsid64_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfMsgHdr": reflect.ValueOf((*syscall.IfMsgHdr)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "StTimespec_t": reflect.ValueOf((*syscall.StTimespec_t)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "Timezone": reflect.ValueOf((*syscall.Timezone)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_android_386.go b/stdlib/syscall/go1_16_syscall_android_386.go deleted file mode 100644 index 1709b8b0f..000000000 --- a/stdlib/syscall/go1_16_syscall_android_386.go +++ /dev/null @@ -1,2246 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_android_amd64.go b/stdlib/syscall/go1_16_syscall_android_amd64.go deleted file mode 100644 index b27c3fa31..000000000 --- a/stdlib/syscall/go1_16_syscall_android_amd64.go +++ /dev/null @@ -1,2212 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_android_arm.go b/stdlib/syscall/go1_16_syscall_android_arm.go deleted file mode 100644 index dd34315ea..000000000 --- a/stdlib/syscall/go1_16_syscall_android_arm.go +++ /dev/null @@ -1,2265 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), - "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_android_arm64.go b/stdlib/syscall/go1_16_syscall_android_arm64.go deleted file mode 100644 index 6a34645bf..000000000 --- a/stdlib/syscall/go1_16_syscall_android_arm64.go +++ /dev/null @@ -1,2356 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_darwin_amd64.go b/stdlib/syscall/go1_16_syscall_darwin_amd64.go deleted file mode 100644 index a4d1bf5a5..000000000 --- a/stdlib/syscall/go1_16_syscall_darwin_amd64.go +++ /dev/null @@ -1,1950 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_darwin_arm64.go b/stdlib/syscall/go1_16_syscall_darwin_arm64.go deleted file mode 100644 index cdb869b5f..000000000 --- a/stdlib/syscall/go1_16_syscall_darwin_arm64.go +++ /dev/null @@ -1,1958 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "EQFULL": reflect.ValueOf(syscall.EQFULL), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), - "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_dragonfly_amd64.go b/stdlib/syscall/go1_16_syscall_dragonfly_amd64.go deleted file mode 100644 index 1a017a074..000000000 --- a/stdlib/syscall/go1_16_syscall_dragonfly_amd64.go +++ /dev/null @@ -1,2007 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DEFAULTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MAX_CLONES": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_REDBACK_SMARTEDGE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DBF": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EASYNC": reflect.ValueOf(syscall.EASYNC), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNUSED94": reflect.ValueOf(syscall.EUNUSED94), - "EUNUSED95": reflect.ValueOf(syscall.EUNUSED95), - "EUNUSED96": reflect.ValueOf(syscall.EUNUSED96), - "EUNUSED97": reflect.ValueOf(syscall.EUNUSED97), - "EUNUSED98": reflect.ValueOf(syscall.EUNUSED98), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_EXCEPT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_MARKER": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_NODATA": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTEXIT_LWP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "EXTEXIT_PROC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXTEXIT_SETINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EXTEXIT_SIMPLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("1150578", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NPOLLING": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_OACTIVE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POLLING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_POLLING_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CONTROL_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_CONTROL_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_INVAL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SETMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_SIZEALIGN": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_VPAGETABLE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_FMASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MSG_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_OOB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_FASYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_FBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "O_FMASK": reflect.ValueOf(constant.MakeFromLiteral("133955584", token.INT, 0)), - "O_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_FOFFSET": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_FUNBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_MAPONREAD": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTA_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPLSOPS": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_IWCAPSEGS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTV_IWMAXSEGS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTV_MSL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCKPT": reflect.ValueOf(syscall.SIGCKPT), - "SIGCKPTEXIT": reflect.ValueOf(syscall.SIGCKPTEXIT), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("3223349632", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDSPACE": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHROOT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXEC_SYS_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_EXEC_SYS_UNREGISTER": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTACCEPT": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTCONNECT": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_EXTEXIT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_EXTPREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_EXTPREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_EXTPWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_EXTPWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FHSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_GETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_GET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("521", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LWP_GETTID": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_LWP_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOUNTCTL": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQ_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "SYS_MQ_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), - "SYS_MQ_RECEIVE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_MQ_SEND": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_MQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATVFS": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_SYS_CHECKPOINT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMTX_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_UMTX_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_USCHED_SET": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VARSYM_GET": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_VARSYM_LIST": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_VARSYM_SET": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VMM_GUEST_CTL": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), - "SYS_VMM_GUEST_SYNC_ADDR": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), - "SYS_VMSPACE_CREATE": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_VMSPACE_CTL": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_VMSPACE_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_VMSPACE_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_VMSPACE_MMAP": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_VMSPACE_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_VMSPACE_PREAD": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_VMSPACE_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_VQUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_FASTKEEP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_MIN_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_SIGNATURE_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCISPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VCHECKPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_freebsd_386.go b/stdlib/syscall/go1_16_syscall_freebsd_386.go deleted file mode 100644 index 074e5d2ef..000000000 --- a/stdlib/syscall/go1_16_syscall_freebsd_386.go +++ /dev/null @@ -1,2254 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074283118", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148024941", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074295897", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_freebsd_amd64.go b/stdlib/syscall/go1_16_syscall_freebsd_amd64.go deleted file mode 100644 index f24be8514..000000000 --- a/stdlib/syscall/go1_16_syscall_freebsd_amd64.go +++ /dev/null @@ -1,2255 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_freebsd_arm.go b/stdlib/syscall/go1_16_syscall_freebsd_arm.go deleted file mode 100644 index cedd4d001..000000000 --- a/stdlib/syscall/go1_16_syscall_freebsd_arm.go +++ /dev/null @@ -1,2254 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_freebsd_arm64.go b/stdlib/syscall/go1_16_syscall_freebsd_arm64.go deleted file mode 100644 index a35eb2849..000000000 --- a/stdlib/syscall/go1_16_syscall_freebsd_arm64.go +++ /dev/null @@ -1,2300 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_AIO_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("543", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_FCNTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("537", token.INT, 0)), - "SYS_CAP_FCNTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_IOCTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), - "SYS_CAP_IOCTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), - "SYS_CAP_RIGHTS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("550", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("546", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GSSD_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KMQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_KMQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_KMQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_KMQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_KMQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_KMQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KSEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_KSEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_KSEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_KSEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_KSEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_KSEM_POST": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_KSEM_TIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_KSEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_KSEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_KSEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLM_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_NUMA_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), - "SYS_NUMA_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("549", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("545", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___CAP_RIGHTS_GET": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_illumos_amd64.go b/stdlib/syscall/go1_16_syscall_illumos_amd64.go deleted file mode 100644 index 703a5456f..000000000 --- a/stdlib/syscall/go1_16_syscall_illumos_amd64.go +++ /dev/null @@ -1,1506 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!solaris - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), - "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), - "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), - "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), - "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getexecname": reflect.ValueOf(syscall.Getexecname), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Gethostname": reflect.ValueOf(syscall.Gethostname), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), - "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), - "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), - "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), - "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), - "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), - "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), - "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), - "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), - "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), - "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), - "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), - "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), - "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mknod": reflect.ValueOf(syscall.Mknod), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), - "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), - "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLOST": reflect.ValueOf(syscall.SIGLOST), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIGXRES": reflect.ValueOf(syscall.SIGXRES), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), - "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), - "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), - "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), - "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), - "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), - "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), - "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), - "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), - "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), - "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), - "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), - "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), - "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), - "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), - "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), - "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), - "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), - "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), - "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), - "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), - "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), - "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), - "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), - "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), - "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), - "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), - "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), - "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), - "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), - "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), - "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), - "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), - "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), - "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), - "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), - "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), - "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), - "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), - "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), - "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), - "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), - "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), - "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), - "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), - "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), - "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), - "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), - "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), - "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), - "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), - "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), - "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), - "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), - "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), - "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), - "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), - "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), - "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), - "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), - "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), - "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), - "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), - "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), - "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), - "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), - "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), - "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), - "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), - "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), - "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), - "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), - "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), - "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), - "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), - "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), - "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), - "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), - "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), - "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), - "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), - "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), - "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), - "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), - "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), - "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), - "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), - "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), - "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), - "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), - "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), - "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), - "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), - "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), - "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), - "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), - "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), - "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), - "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), - "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), - "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), - "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), - "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), - "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), - "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_ios_amd64.go b/stdlib/syscall/go1_16_syscall_ios_amd64.go deleted file mode 100644 index a4d1bf5a5..000000000 --- a/stdlib/syscall/go1_16_syscall_ios_amd64.go +++ /dev/null @@ -1,1950 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_ios_arm64.go b/stdlib/syscall/go1_16_syscall_ios_arm64.go deleted file mode 100644 index cdb869b5f..000000000 --- a/stdlib/syscall/go1_16_syscall_ios_arm64.go +++ /dev/null @@ -1,1958 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "EQFULL": reflect.ValueOf(syscall.EQFULL), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), - "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_js_wasm.go b/stdlib/syscall/go1_16_syscall_js_wasm.go deleted file mode 100644 index 86552e194..000000000 --- a/stdlib/syscall/go1_16_syscall_js_wasm.go +++ /dev/null @@ -1,367 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Connect": reflect.ValueOf(syscall.Connect), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECASECLASH": reflect.ValueOf(syscall.ECASECLASH), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELBIN": reflect.ValueOf(syscall.ELBIN), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENMFILE": reflect.ValueOf(syscall.ENMFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSHARE": reflect.ValueOf(syscall.ENOSHARE), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "F_CNVT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RGETLK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_RSETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_RSETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CREATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFBOUNDSOCK": reflect.ValueOf(constant.MakeFromLiteral("77824", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFCOND": reflect.ValueOf(constant.MakeFromLiteral("90112", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFDSOCK": reflect.ValueOf(constant.MakeFromLiteral("69632", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFMUTEX": reflect.ValueOf(constant.MakeFromLiteral("86016", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSEMA": reflect.ValueOf(constant.MakeFromLiteral("94208", token.INT, 0)), - "S_IFSHM": reflect.ValueOf(constant.MakeFromLiteral("81920", token.INT, 0)), - "S_IFSHM_SYSV": reflect.ValueOf(constant.MakeFromLiteral("98304", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFSOCKADDR": reflect.ValueOf(constant.MakeFromLiteral("73728", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_UNSUP": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "SetReadDeadline": reflect.ValueOf(syscall.SetReadDeadline), - "SetWriteDeadline": reflect.ValueOf(syscall.SetWriteDeadline), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "Socket": reflect.ValueOf(syscall.Socket), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Stdin": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Stdout": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "StopIO": reflect.ValueOf(syscall.StopIO), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_386.go b/stdlib/syscall/go1_16_syscall_linux_386.go deleted file mode 100644 index d4051c056..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_386.go +++ /dev/null @@ -1,2246 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_amd64.go b/stdlib/syscall/go1_16_syscall_linux_amd64.go deleted file mode 100644 index 853cfff60..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_amd64.go +++ /dev/null @@ -1,2212 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_arm.go b/stdlib/syscall/go1_16_syscall_linux_arm.go deleted file mode 100644 index b8d69e030..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_arm.go +++ /dev/null @@ -1,2265 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), - "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_arm64.go b/stdlib/syscall/go1_16_syscall_linux_arm64.go deleted file mode 100644 index 4f300d78b..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_arm64.go +++ /dev/null @@ -1,2356 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_mips.go b/stdlib/syscall/go1_16_syscall_linux_mips.go deleted file mode 100644 index 3519748c7..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_mips.go +++ /dev/null @@ -1,2450 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), - "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), - "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), - "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), - "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), - "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), - "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), - "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), - "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), - "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), - "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_mips64.go b/stdlib/syscall/go1_16_syscall_linux_mips64.go deleted file mode 100644 index d4c9289fc..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_mips64.go +++ /dev/null @@ -1,2399 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), - "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), - "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_mips64le.go b/stdlib/syscall/go1_16_syscall_linux_mips64le.go deleted file mode 100644 index d4c9289fc..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_mips64le.go +++ /dev/null @@ -1,2399 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), - "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), - "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_mipsle.go b/stdlib/syscall/go1_16_syscall_linux_mipsle.go deleted file mode 100644 index 3519748c7..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_mipsle.go +++ /dev/null @@ -1,2450 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), - "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), - "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), - "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), - "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), - "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), - "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), - "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), - "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), - "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), - "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_ppc64.go b/stdlib/syscall/go1_16_syscall_linux_ppc64.go deleted file mode 100644 index 696ed684a..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_ppc64.go +++ /dev/null @@ -1,2490 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_ppc64le.go b/stdlib/syscall/go1_16_syscall_linux_ppc64le.go deleted file mode 100644 index eeef50b9c..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_ppc64le.go +++ /dev/null @@ -1,2514 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_riscv64.go b/stdlib/syscall/go1_16_syscall_linux_riscv64.go deleted file mode 100644 index 03a4480f6..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_riscv64.go +++ /dev/null @@ -1,2410 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IB": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KCM": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLEXCLUSIVE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BIND_ADDRESS_NO_PORT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MCL_ONFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_BATCH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_LAZYTIME": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("41943121", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ALG": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SOL_CAIF": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SOL_DCCP": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_IUCV": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SOL_KCM": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SOL_LLC": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SOL_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SOL_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SOL_NFC": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_PNPIPE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SOL_PPPOL2TP": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_RDS": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SOL_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_TIPC": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CC_INFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SAVED_SYN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TCP_SAVE_SYN": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_linux_s390x.go b/stdlib/syscall/go1_16_syscall_linux_s390x.go deleted file mode 100644 index a0055ef57..000000000 --- a/stdlib/syscall/go1_16_syscall_linux_s390x.go +++ /dev/null @@ -1,2526 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWCGROUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_TSN": reflect.ValueOf(constant.MakeFromLiteral("8944", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CAP_ACK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_LISTEN_ALL_NSID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_LIST_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_FILTERED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CBPF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_DATA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PACKET_FANOUT_EBPF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_ROLLOVER_STATS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_CAP_AMBIENT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "PR_CAP_AMBIENT_CLEAR_ALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_CAP_AMBIENT_IS_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_CAP_AMBIENT_LOWER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_CAP_AMBIENT_RAISE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_DISABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20496", token.INT, 0)), - "PTRACE_ENABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20489", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_LAST_BREAK": reflect.ValueOf(constant.MakeFromLiteral("20486", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("3145983", token.INT, 0)), - "PTRACE_O_SUSPEND_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20483", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20482", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_PEEKUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20480", token.INT, 0)), - "PTRACE_PEEK_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20487", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20485", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20484", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_POKEUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20481", token.INT, 0)), - "PTRACE_POKE_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20488", token.INT, 0)), - "PTRACE_PROT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_SECCOMP_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("16908", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TE_ABORT_RAND": reflect.ValueOf(constant.MakeFromLiteral("20497", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ACR0": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "PT_ACR1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "PT_ACR10": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "PT_ACR11": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "PT_ACR12": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PT_ACR13": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PT_ACR14": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "PT_ACR15": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "PT_ACR2": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "PT_ACR3": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "PT_ACR4": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "PT_ACR5": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "PT_ACR6": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "PT_ACR7": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "PT_ACR8": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "PT_ACR9": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "PT_CR_10": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "PT_CR_11": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "PT_CR_9": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "PT_ENDREGS": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "PT_FPC": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "PT_FPR1": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "PT_FPR10": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "PT_FPR11": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "PT_FPR12": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "PT_FPR13": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "PT_FPR14": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "PT_FPR15": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "PT_FPR2": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "PT_FPR3": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "PT_FPR4": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PT_FPR5": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "PT_FPR6": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "PT_FPR7": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "PT_FPR8": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "PT_FPR9": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "PT_GPR0": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PT_GPR1": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PT_GPR10": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "PT_GPR11": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "PT_GPR12": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "PT_GPR13": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "PT_GPR14": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PT_GPR15": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "PT_GPR2": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_GPR3": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_GPR4": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "PT_GPR5": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "PT_GPR6": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PT_GPR7": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "PT_GPR8": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "PT_GPR9": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "PT_IEEE_IP": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "PT_LASTOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "PT_ORIGGPR2": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PT_PSWADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_PSWMASK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_MASK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_LOOKUP_TABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_COMPARE_MASK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_LINKDOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_MEMBARRIER": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCK2": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_S390_PCI_MMIO_READ": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_S390_PCI_MMIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_S390_RUNTIME_INSTR": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USERFAULTFD": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("2147767519", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("1074025694", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_netbsd_386.go b/stdlib/syscall/go1_16_syscall_netbsd_386.go deleted file mode 100644 index 6be6bdc0b..000000000 --- a/stdlib/syscall/go1_16_syscall_netbsd_386.go +++ /dev/null @@ -1,2140 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EN_SW_CTL_INF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EN_SW_CTL_PREC": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "EN_SW_CTL_ROUND": reflect.ValueOf(constant.MakeFromLiteral("3072", token.INT, 0)), - "EN_SW_DATACHAIN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EN_SW_DENORM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EN_SW_INVOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EN_SW_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EN_SW_PRECLOSS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EN_SW_UNDERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EN_SW_ZERODIV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_netbsd_amd64.go b/stdlib/syscall/go1_16_syscall_netbsd_amd64.go deleted file mode 100644 index bbbf18ee3..000000000 --- a/stdlib/syscall/go1_16_syscall_netbsd_amd64.go +++ /dev/null @@ -1,2130 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_netbsd_arm.go b/stdlib/syscall/go1_16_syscall_netbsd_arm.go deleted file mode 100644 index 18747cbfd..000000000 --- a/stdlib/syscall/go1_16_syscall_netbsd_arm.go +++ /dev/null @@ -1,2116 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1208513606", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1208513608", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_netbsd_arm64.go b/stdlib/syscall/go1_16_syscall_netbsd_arm64.go deleted file mode 100644 index bbbf18ee3..000000000 --- a/stdlib/syscall/go1_16_syscall_netbsd_arm64.go +++ /dev/null @@ -1,2130 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_openbsd_386.go b/stdlib/syscall/go1_16_syscall_openbsd_386.go deleted file mode 100644 index b755bea76..000000000 --- a/stdlib/syscall/go1_16_syscall_openbsd_386.go +++ /dev/null @@ -1,1974 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_MASK": reflect.ValueOf(constant.MakeFromLiteral("4190208", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), - "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_openbsd_amd64.go b/stdlib/syscall/go1_16_syscall_openbsd_amd64.go deleted file mode 100644 index e1bb4f94f..000000000 --- a/stdlib/syscall/go1_16_syscall_openbsd_amd64.go +++ /dev/null @@ -1,1973 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153277756", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153277761", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153277757", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153277762", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153277768", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227019582", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), - "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019580", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019586", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153277781", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153277759", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153277780", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_openbsd_arm.go b/stdlib/syscall/go1_16_syscall_openbsd_arm.go deleted file mode 100644 index cab28b28c..000000000 --- a/stdlib/syscall/go1_16_syscall_openbsd_arm.go +++ /dev/null @@ -1,1978 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("16375", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("7403528", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), - "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), - "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_openbsd_arm64.go b/stdlib/syscall/go1_16_syscall_openbsd_arm64.go deleted file mode 100644 index 7b5e086e0..000000000 --- a/stdlib/syscall/go1_16_syscall_openbsd_arm64.go +++ /dev/null @@ -1,2073 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), - "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), - "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), - "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), - "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), - "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), - "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), - "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), - "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), - "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), - "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), - "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), - "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), - "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), - "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), - "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), - "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), - "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), - "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), - "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), - "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), - "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), - "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), - "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_openbsd_mips64.go b/stdlib/syscall/go1_16_syscall_openbsd_mips64.go deleted file mode 100644 index 553b5469b..000000000 --- a/stdlib/syscall/go1_16_syscall_openbsd_mips64.go +++ /dev/null @@ -1,2083 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MACSEC": reflect.ValueOf(constant.MakeFromLiteral("35045", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), - "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), - "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), - "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), - "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), - "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), - "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), - "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), - "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), - "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), - "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), - "SIOCGRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349723", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), - "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), - "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), - "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), - "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), - "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), - "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), - "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), - "SIOCSRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607899", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), - "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), - "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), - "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), - "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), - "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___REALPATH": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS___TMPFD": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_SACKHOLE_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), - "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_plan9_386.go b/stdlib/syscall/go1_16_syscall_plan9_386.go deleted file mode 100644 index c5b87fd3f..000000000 --- a/stdlib/syscall/go1_16_syscall_plan9_386.go +++ /dev/null @@ -1,243 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Await": reflect.ValueOf(syscall.Await), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "Create": reflect.ValueOf(syscall.Create), - "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), - "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), - "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), - "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), - "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), - "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), - "EIO": reflect.ValueOf(&syscall.EIO).Elem(), - "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), - "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), - "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), - "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), - "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), - "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), - "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), - "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), - "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), - "Environ": reflect.ValueOf(syscall.Environ), - "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), - "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), - "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fd2path": reflect.ValueOf(syscall.Fd2path), - "Fixwd": reflect.ValueOf(syscall.Fixwd), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fwstat": reflect.ValueOf(syscall.Fwstat), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mount": reflect.ValueOf(syscall.Mount), - "NewError": reflect.ValueOf(syscall.NewError), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "Remove": reflect.ValueOf(syscall.Remove), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "WaitProcess": reflect.ValueOf(syscall.WaitProcess), - "Write": reflect.ValueOf(syscall.Write), - "Wstat": reflect.ValueOf(syscall.Wstat), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dir": reflect.ValueOf((*syscall.Dir)(nil)), - "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), - "Note": reflect.ValueOf((*syscall.Note)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Qid": reflect.ValueOf((*syscall.Qid)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} diff --git a/stdlib/syscall/go1_16_syscall_plan9_amd64.go b/stdlib/syscall/go1_16_syscall_plan9_amd64.go deleted file mode 100644 index c5b87fd3f..000000000 --- a/stdlib/syscall/go1_16_syscall_plan9_amd64.go +++ /dev/null @@ -1,243 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Await": reflect.ValueOf(syscall.Await), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "Create": reflect.ValueOf(syscall.Create), - "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), - "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), - "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), - "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), - "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), - "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), - "EIO": reflect.ValueOf(&syscall.EIO).Elem(), - "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), - "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), - "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), - "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), - "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), - "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), - "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), - "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), - "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), - "Environ": reflect.ValueOf(syscall.Environ), - "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), - "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), - "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fd2path": reflect.ValueOf(syscall.Fd2path), - "Fixwd": reflect.ValueOf(syscall.Fixwd), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fwstat": reflect.ValueOf(syscall.Fwstat), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mount": reflect.ValueOf(syscall.Mount), - "NewError": reflect.ValueOf(syscall.NewError), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "Remove": reflect.ValueOf(syscall.Remove), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "WaitProcess": reflect.ValueOf(syscall.WaitProcess), - "Write": reflect.ValueOf(syscall.Write), - "Wstat": reflect.ValueOf(syscall.Wstat), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dir": reflect.ValueOf((*syscall.Dir)(nil)), - "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), - "Note": reflect.ValueOf((*syscall.Note)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Qid": reflect.ValueOf((*syscall.Qid)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} diff --git a/stdlib/syscall/go1_16_syscall_plan9_arm.go b/stdlib/syscall/go1_16_syscall_plan9_arm.go deleted file mode 100644 index c5b87fd3f..000000000 --- a/stdlib/syscall/go1_16_syscall_plan9_arm.go +++ /dev/null @@ -1,243 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Await": reflect.ValueOf(syscall.Await), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "Create": reflect.ValueOf(syscall.Create), - "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), - "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), - "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), - "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), - "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), - "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), - "EIO": reflect.ValueOf(&syscall.EIO).Elem(), - "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), - "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), - "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), - "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), - "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), - "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), - "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), - "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), - "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), - "Environ": reflect.ValueOf(syscall.Environ), - "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), - "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), - "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fd2path": reflect.ValueOf(syscall.Fd2path), - "Fixwd": reflect.ValueOf(syscall.Fixwd), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fwstat": reflect.ValueOf(syscall.Fwstat), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mount": reflect.ValueOf(syscall.Mount), - "NewError": reflect.ValueOf(syscall.NewError), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "Remove": reflect.ValueOf(syscall.Remove), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "WaitProcess": reflect.ValueOf(syscall.WaitProcess), - "Write": reflect.ValueOf(syscall.Write), - "Wstat": reflect.ValueOf(syscall.Wstat), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dir": reflect.ValueOf((*syscall.Dir)(nil)), - "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), - "Note": reflect.ValueOf((*syscall.Note)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Qid": reflect.ValueOf((*syscall.Qid)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} diff --git a/stdlib/syscall/go1_16_syscall_solaris_amd64.go b/stdlib/syscall/go1_16_syscall_solaris_amd64.go deleted file mode 100644 index d1633e5e1..000000000 --- a/stdlib/syscall/go1_16_syscall_solaris_amd64.go +++ /dev/null @@ -1,1500 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), - "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), - "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), - "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), - "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getexecname": reflect.ValueOf(syscall.Getexecname), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Gethostname": reflect.ValueOf(syscall.Gethostname), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), - "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), - "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), - "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), - "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), - "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), - "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), - "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), - "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), - "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), - "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), - "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), - "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), - "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mknod": reflect.ValueOf(syscall.Mknod), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), - "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), - "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLOST": reflect.ValueOf(syscall.SIGLOST), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIGXRES": reflect.ValueOf(syscall.SIGXRES), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), - "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), - "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), - "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), - "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), - "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), - "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), - "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), - "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), - "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), - "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), - "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), - "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), - "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), - "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), - "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), - "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), - "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), - "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), - "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), - "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), - "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), - "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), - "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), - "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), - "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), - "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), - "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), - "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), - "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), - "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), - "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), - "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), - "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), - "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), - "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), - "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), - "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), - "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), - "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), - "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), - "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), - "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), - "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), - "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), - "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), - "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), - "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), - "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), - "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), - "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), - "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), - "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), - "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), - "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), - "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), - "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), - "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), - "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), - "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), - "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), - "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), - "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), - "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), - "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), - "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), - "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), - "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), - "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), - "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), - "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), - "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), - "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), - "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), - "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), - "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), - "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), - "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), - "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), - "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), - "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), - "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), - "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), - "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), - "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), - "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), - "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), - "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), - "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), - "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), - "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), - "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), - "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), - "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), - "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), - "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), - "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), - "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), - "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), - "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), - "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), - "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), - "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), - "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), - "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_windows_386.go b/stdlib/syscall/go1_16_syscall_windows_386.go deleted file mode 100644 index ccff4d737..000000000 --- a/stdlib/syscall/go1_16_syscall_windows_386.go +++ /dev/null @@ -1,1036 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_windows_amd64.go b/stdlib/syscall/go1_16_syscall_windows_amd64.go deleted file mode 100644 index ccff4d737..000000000 --- a/stdlib/syscall/go1_16_syscall_windows_amd64.go +++ /dev/null @@ -1,1036 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_16_syscall_windows_arm.go b/stdlib/syscall/go1_16_syscall_windows_arm.go deleted file mode 100644 index ccff4d737..000000000 --- a/stdlib/syscall/go1_16_syscall_windows_arm.go +++ /dev/null @@ -1,1036 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_aix_ppc64.go b/stdlib/syscall/go1_17_syscall_aix_ppc64.go deleted file mode 100644 index 13be5328c..000000000 --- a/stdlib/syscall/go1_17_syscall_aix_ppc64.go +++ /dev/null @@ -1,1385 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_INTF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_NDD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETWARE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RIF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_802_3": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_802_5": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666332", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSMAP_DIR": reflect.ValueOf(constant.MakeFromLiteral("\"/usr/lib/nls/csmap/\"", token.STRING, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECH_ICMPID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECLONEME": reflect.ValueOf(syscall.ECLONEME), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "ECORRUPT": reflect.ValueOf(syscall.ECORRUPT), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDREQ": reflect.ValueOf(syscall.EDESTADDREQ), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDIST": reflect.ValueOf(syscall.EDIST), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFORMAT": reflect.ValueOf(syscall.EFORMAT), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIA": reflect.ValueOf(syscall.EMEDIA), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCONNECT": reflect.ValueOf(syscall.ENOCONNECT), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTREADY": reflect.ValueOf(syscall.ENOTREADY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTRUST": reflect.ValueOf(syscall.ENOTRUST), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESAD": reflect.ValueOf(syscall.ESAD), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESOFT": reflect.ValueOf(syscall.ESOFT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESYSERROR": reflect.ValueOf(syscall.ESYSERROR), - "ETHERNET_CSMACD": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVENP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EWRPROTECT": reflect.ValueOf(syscall.EWRPROTECT), - "EXCONTINUE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXDLOK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EXIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EXPGIO": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXRESUME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EXRETURN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EXSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTRAP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EYEC_RTENTRYA": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992513", token.INT, 0)), - "EYEC_RTENTRYF": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992518", token.INT, 0)), - "E_ACC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "FLUSHBAND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FLUSHLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "FLUSHR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FLUSHRW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FLUSHW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_TSTLK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getkerninfo": reflect.ValueOf(syscall.Getkerninfo), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "ICMP6_SEC_SEND_DEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "ICMP6_SEC_SEND_GET": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "ICMP6_SEC_SEND_SET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "ICMP6_SEC_SEND_SET_CGA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFA_FIRSTALIAS": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_64BIT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IFF_ALLCAST": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BPF": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IFF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("527442", token.INT, 0)), - "IFF_CHECKSUM_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_D1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_D2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_D3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_D4": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_DO_HW_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_GROUP_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IFF_IFBUFMGT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOECHO": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_PSEG": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SNAP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TCP_DISABLE_CKSUM": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IFF_TCP_NOCKSUM": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VIPA": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFO_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CLUSTER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FCS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIFTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HF": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SN": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_VIPA": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_USE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BIP": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GIF": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_QOS": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_ADDR_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_AIXRAWSOCKET": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IPV6_FLOWINFO_PRIFLOW": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IPV6_FLOWINFO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), - "IPV6_FLOWINFO_SRFLAG": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IPV6_FLOWINFO_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MIPDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_NOPROBE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_PRIORITY_10": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), - "IPV6_PRIORITY_11": reflect.ValueOf(constant.MakeFromLiteral("184549376", token.INT, 0)), - "IPV6_PRIORITY_12": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), - "IPV6_PRIORITY_13": reflect.ValueOf(constant.MakeFromLiteral("218103808", token.INT, 0)), - "IPV6_PRIORITY_14": reflect.ValueOf(constant.MakeFromLiteral("234881024", token.INT, 0)), - "IPV6_PRIORITY_15": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), - "IPV6_PRIORITY_8": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IPV6_PRIORITY_9": reflect.ValueOf(constant.MakeFromLiteral("150994944", token.INT, 0)), - "IPV6_PRIORITY_BULK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IPV6_PRIORITY_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("117440512", token.INT, 0)), - "IPV6_PRIORITY_FILLER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IPV6_PRIORITY_INTERACTIVE": reflect.ValueOf(constant.MakeFromLiteral("100663296", token.INT, 0)), - "IPV6_PRIORITY_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("50331648", token.INT, 0)), - "IPV6_PRIORITY_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("83886080", token.INT, 0)), - "IPV6_PRIORITY_UNATTENDED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IPV6_PRIORITY_UNCHARACTERIZED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVHOPS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVSRCRT": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_TYPE_2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_SENDIF": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_SRFLAG_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SRFLAG_STRICT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_TOKEN_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1610612736", token.INT, 0)), - "IP_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_BROADCAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_CACHE_LINE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DHCPMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_FINDPMTU": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_INC_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_INIT_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OPT": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PMTUAGE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RECVINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_RECVMACHDR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "I_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("536892165", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "LNOFLSH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "MAP_VARIABLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_ANY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_BAND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_MPEG2": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_EINTR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_PER_SEC": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_CIO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_CIOR": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DEFER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_DELAY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EFSOFF": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), - "O_EFSON": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_NSHARE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_RAW": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSHARE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_64BIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_ADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PR_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_CONNREQUIRED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_FASTHZ": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_INP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PR_INTRLEVEL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PR_MLS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PR_MLS_1_LABEL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PR_NOEOR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PR_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_SLOWHZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_WANTRCVD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PT_COMMAND_MAX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_GET_UKEY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_LDINFO": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PT_LDXINFO": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PT_MULTI": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PT_NEXT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PT_QUERY": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_READ_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_FPR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_READ_GPR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_REATT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PT_REGSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_SET": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WATCH": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PT_WRITE_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_FPR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PT_WRITE_GPR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1023", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_ACTIVE_DGD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_BCE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_BUL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FREE_IN_PROG": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PERMANENT6": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SMALLMTU": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STOPSRCH": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GETNEXT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTLOST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SAMEADDR": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_SET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_VERSION_GR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_VERSION_GR_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_VERSION_POLICY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_VERSION_POLICY_EXT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_VERSION_POLICY_PRFN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGAIO": reflect.ValueOf(syscall.SIGAIO), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGALRM1": reflect.ValueOf(syscall.SIGALRM1), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCAPI": reflect.ValueOf(syscall.SIGCAPI), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGCPUFAIL": reflect.ValueOf(syscall.SIGCPUFAIL), - "SIGDANGER": reflect.ValueOf(syscall.SIGDANGER), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGGRANT": reflect.ValueOf(syscall.SIGGRANT), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOINT": reflect.ValueOf(syscall.SIGIOINT), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKAP": reflect.ValueOf(syscall.SIGKAP), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLOST": reflect.ValueOf(syscall.SIGLOST), - "SIGMAX": reflect.ValueOf(syscall.SIGMAX), - "SIGMAX32": reflect.ValueOf(syscall.SIGMAX32), - "SIGMAX64": reflect.ValueOf(syscall.SIGMAX64), - "SIGMIGRATE": reflect.ValueOf(syscall.SIGMIGRATE), - "SIGMSG": reflect.ValueOf(syscall.SIGMSG), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPRE": reflect.ValueOf(syscall.SIGPRE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPTY": reflect.ValueOf(syscall.SIGPTY), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUEUE_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGRECONFIG": reflect.ValueOf(syscall.SIGRECONFIG), - "SIGRETRACT": reflect.ValueOf(syscall.SIGRETRACT), - "SIGSAK": reflect.ValueOf(syscall.SIGSAK), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSOUND": reflect.ValueOf(syscall.SIGSOUND), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGSYSERROR": reflect.ValueOf(syscall.SIGSYSERROR), - "SIGTALRM": reflect.ValueOf(syscall.SIGTALRM), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVIRT": reflect.ValueOf(syscall.SIGVIRT), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897858", token.INT, 0)), - "SIOCADDMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194512", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), - "SIOCADDNETID": reflect.ValueOf(constant.MakeFromLiteral("-2144835241", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784438", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2143262438", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476000", token.INT, 0)), - "SIOCDELIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897859", token.INT, 0)), - "SIOCDELMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194511", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), - "SIOCDELPMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144833526", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784437", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835303", token.INT, 0)), - "SIOCDNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649280", token.INT, 0)), - "SIOCDX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835227", token.INT, 0)), - "SIOCFIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359469", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1068734170", token.INT, 0)), - "SIOCGETMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897903", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401100", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401101", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093471", token.INT, 0)), - "SIOCGIFADDRS": reflect.ValueOf(constant.MakeFromLiteral("536897932", token.INT, 0)), - "SIOCGIFBAUDRATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093395", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093469", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666299", token.INT, 0)), - "SIOCGIFCONFGLOB": reflect.ValueOf(constant.MakeFromLiteral("-1072666224", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093470", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071093487", token.INT, 0)), - "SIOCGIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897896", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1068209771", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071093481", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071093418", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071093467", token.INT, 0)), - "SIOCGIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-1071093462", token.INT, 0)), - "SIOCGISNO": reflect.ValueOf(constant.MakeFromLiteral("-1071093397", token.INT, 0)), - "SIOCGLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452670", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649317", token.INT, 0)), - "SIOCGNETOPT1": reflect.ValueOf(constant.MakeFromLiteral("-1071617663", token.INT, 0)), - "SIOCGNMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897902", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSIZIFCONF": reflect.ValueOf(constant.MakeFromLiteral("1074030954", token.INT, 0)), - "SIOCGSRCFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1072142027", token.INT, 0)), - "SIOCGTUNEPHASE": reflect.ValueOf(constant.MakeFromLiteral("-1073452662", token.INT, 0)), - "SIOCGX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093404", token.INT, 0)), - "SIOCIFATTACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359513", token.INT, 0)), - "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359514", token.INT, 0)), - "SIOCIFGETPKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359515", token.INT, 0)), - "SIOCIF_ATM_DARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359491", token.INT, 0)), - "SIOCIF_ATM_DUMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359493", token.INT, 0)), - "SIOCIF_ATM_GARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359490", token.INT, 0)), - "SIOCIF_ATM_IDLE": reflect.ValueOf(constant.MakeFromLiteral("-2145359494", token.INT, 0)), - "SIOCIF_ATM_SARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359489", token.INT, 0)), - "SIOCIF_ATM_SNMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359495", token.INT, 0)), - "SIOCIF_ATM_SVC": reflect.ValueOf(constant.MakeFromLiteral("-2145359492", token.INT, 0)), - "SIOCIF_ATM_UBR": reflect.ValueOf(constant.MakeFromLiteral("-2145359496", token.INT, 0)), - "SIOCIF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("-2147194476", token.INT, 0)), - "SIOCIF_IB_ARP_INCOMP": reflect.ValueOf(constant.MakeFromLiteral("-2145359479", token.INT, 0)), - "SIOCIF_IB_ARP_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-2145359480", token.INT, 0)), - "SIOCIF_IB_CLEAR_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617647", token.INT, 0)), - "SIOCIF_IB_DEL_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359487", token.INT, 0)), - "SIOCIF_IB_DEL_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617648", token.INT, 0)), - "SIOCIF_IB_DUMP_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359488", token.INT, 0)), - "SIOCIF_IB_GET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359486", token.INT, 0)), - "SIOCIF_IB_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850485", token.INT, 0)), - "SIOCIF_IB_GET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), - "SIOCIF_IB_NOTIFY_ADDR_REM": reflect.ValueOf(constant.MakeFromLiteral("-1065850474", token.INT, 0)), - "SIOCIF_IB_RESET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850481", token.INT, 0)), - "SIOCIF_IB_RESIZE_CQ": reflect.ValueOf(constant.MakeFromLiteral("-2145359481", token.INT, 0)), - "SIOCIF_IB_SET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359485", token.INT, 0)), - "SIOCIF_IB_SET_PKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359484", token.INT, 0)), - "SIOCIF_IB_SET_PORT": reflect.ValueOf(constant.MakeFromLiteral("-2145359483", token.INT, 0)), - "SIOCIF_IB_SET_QKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359478", token.INT, 0)), - "SIOCIF_IB_SET_QSIZE": reflect.ValueOf(constant.MakeFromLiteral("-2145359482", token.INT, 0)), - "SIOCLISTIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897860", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476002", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359552", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835316", token.INT, 0)), - "SIOCSIFADDRORI": reflect.ValueOf(constant.MakeFromLiteral("-2145097331", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835309", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835314", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2144835312", token.INT, 0)), - "SIOCSIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897897", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2144835304", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144835240", token.INT, 0)), - "SIOCSIFNETDUMP": reflect.ValueOf(constant.MakeFromLiteral("-2144835300", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2144835306", token.INT, 0)), - "SIOCSIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-2144835287", token.INT, 0)), - "SIOCSIFSUBCHAN": reflect.ValueOf(constant.MakeFromLiteral("-2144835301", token.INT, 0)), - "SIOCSISNO": reflect.ValueOf(constant.MakeFromLiteral("-2144835220", token.INT, 0)), - "SIOCSLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452669", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359554", token.INT, 0)), - "SIOCSNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-2147391142", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359560", token.INT, 0)), - "SIOCSX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835229", token.INT, 0)), - "SOCK_CONN_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_CKSUMRECV": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_KERNACCEPT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOMULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_NOREUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERID": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USE_IFBUFS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "S_BANDURG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_EMODFMT": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), - "S_ENFMT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ERROR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_HANGUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_ICRYPTO": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFJOURNAL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMPX": reflect.ValueOf(constant.MakeFromLiteral("8704", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFPDIR": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "S_IFPSDIR": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "S_IFPSSDIR": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFSYSEA": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "S_INPUT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ITCB": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "S_ITP": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXACL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "S_IXATTR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IXMOD": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_MSG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_RDBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_RDNORM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "S_RESERVED3": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "S_RESERVED4": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "S_RESFMT1": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "S_RESFMT10": reflect.ValueOf(constant.MakeFromLiteral("872415232", token.INT, 0)), - "S_RESFMT11": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "S_RESFMT12": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), - "S_RESFMT2": reflect.ValueOf(constant.MakeFromLiteral("335544320", token.INT, 0)), - "S_RESFMT3": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "S_RESFMT4": reflect.ValueOf(constant.MakeFromLiteral("469762048", token.INT, 0)), - "S_RESFMT5": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "S_RESFMT6": reflect.ValueOf(constant.MakeFromLiteral("603979776", token.INT, 0)), - "S_RESFMT7": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "S_RESFMT8": reflect.ValueOf(constant.MakeFromLiteral("738197504", token.INT, 0)), - "S_WRBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_WRNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("1028", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_24DAYS_WORTH_OF_SLOWTICKS": reflect.ValueOf(constant.MakeFromLiteral("4147200", token.INT, 0)), - "TCP_ACLADD": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "TCP_ACLBIND": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "TCP_ACLCLEAR": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "TCP_ACLDEL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "TCP_ACLDENY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_ACLFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "TCP_ACLGID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_ACLLS": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "TCP_ACLSUBNET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_ACLUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CWND_DF": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_CWND_IF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_DELAY_ACK_FIN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_DELAY_ACK_SYN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_FASTNAME": reflect.ValueOf(constant.MakeFromLiteral("16844810", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_LSPRIV": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "TCP_LUID": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXDF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "TCP_MAXIF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAXWINDOWSCALE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("1460", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NODELAYACK": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_NOREDUCE_CWND_EXIT_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_NOREDUCE_CWND_IN_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_NOTENTER_SSTART": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_OPT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_RFC1323": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_SETPRIV": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "TCP_STDURG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP_OPTLEN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_UNSETPRIV": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359906", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359824", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033664", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033736", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("536900610", token.INT, 0)), - "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359934", token.INT, 0)), - "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359935", token.INT, 0)), - "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("1074033788", token.INT, 0)), - "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359933", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359915", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359916", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359908", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359812", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359917", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359920", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359913", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490897", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359809", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490890", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490889", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490997", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359926", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("18446744071562163314", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359910", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTRT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "VTDELAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERSE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "WPARSTART": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WPARSTOP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WPARTTYNAME": reflect.ValueOf(constant.MakeFromLiteral("\"Global\"", token.STRING, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid64_t": reflect.ValueOf((*syscall.Fsid64_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfMsgHdr": reflect.ValueOf((*syscall.IfMsgHdr)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "StTimespec_t": reflect.ValueOf((*syscall.StTimespec_t)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "Timezone": reflect.ValueOf((*syscall.Timezone)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_android_386.go b/stdlib/syscall/go1_17_syscall_android_386.go deleted file mode 100644 index 52843f907..000000000 --- a/stdlib/syscall/go1_17_syscall_android_386.go +++ /dev/null @@ -1,2247 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_android_amd64.go b/stdlib/syscall/go1_17_syscall_android_amd64.go deleted file mode 100644 index 6ffa81618..000000000 --- a/stdlib/syscall/go1_17_syscall_android_amd64.go +++ /dev/null @@ -1,2213 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_android_arm.go b/stdlib/syscall/go1_17_syscall_android_arm.go deleted file mode 100644 index 1ecce839c..000000000 --- a/stdlib/syscall/go1_17_syscall_android_arm.go +++ /dev/null @@ -1,2266 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), - "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_android_arm64.go b/stdlib/syscall/go1_17_syscall_android_arm64.go deleted file mode 100644 index 23ca31f6f..000000000 --- a/stdlib/syscall/go1_17_syscall_android_arm64.go +++ /dev/null @@ -1,2357 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_darwin_amd64.go b/stdlib/syscall/go1_17_syscall_darwin_amd64.go deleted file mode 100644 index 5109e697a..000000000 --- a/stdlib/syscall/go1_17_syscall_darwin_amd64.go +++ /dev/null @@ -1,1951 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_darwin_arm64.go b/stdlib/syscall/go1_17_syscall_darwin_arm64.go deleted file mode 100644 index 25d5908fd..000000000 --- a/stdlib/syscall/go1_17_syscall_darwin_arm64.go +++ /dev/null @@ -1,1959 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "EQFULL": reflect.ValueOf(syscall.EQFULL), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), - "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_dragonfly_amd64.go b/stdlib/syscall/go1_17_syscall_dragonfly_amd64.go deleted file mode 100644 index 6ac3f91b4..000000000 --- a/stdlib/syscall/go1_17_syscall_dragonfly_amd64.go +++ /dev/null @@ -1,2014 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DEFAULTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MAX_CLONES": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_REDBACK_SMARTEDGE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DBF": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EASYNC": reflect.ValueOf(syscall.EASYNC), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNUSED94": reflect.ValueOf(syscall.EUNUSED94), - "EUNUSED95": reflect.ValueOf(syscall.EUNUSED95), - "EUNUSED96": reflect.ValueOf(syscall.EUNUSED96), - "EUNUSED97": reflect.ValueOf(syscall.EUNUSED97), - "EUNUSED98": reflect.ValueOf(syscall.EUNUSED98), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_EXCEPT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_MARKER": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_NODATA": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTEXIT_LWP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "EXTEXIT_PROC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXTEXIT_SETINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EXTEXIT_SIMPLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("1150578", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NPOLLING": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_OACTIVE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POLLING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_POLLING_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CONTROL_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_CONTROL_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_INVAL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SETMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_SIZEALIGN": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_VPAGETABLE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_FMASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MSG_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_OOB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_FASYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_FBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "O_FMASK": reflect.ValueOf(constant.MakeFromLiteral("133955584", token.INT, 0)), - "O_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_FOFFSET": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_FUNBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_MAPONREAD": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTA_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPLSOPS": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_IWCAPSEGS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTV_IWMAXSEGS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTV_MSL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCKPT": reflect.ValueOf(syscall.SIGCKPT), - "SIGCKPTEXIT": reflect.ValueOf(syscall.SIGCKPTEXIT), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("3223349632", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDSPACE": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHROOT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXEC_SYS_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_EXEC_SYS_UNREGISTER": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTACCEPT": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTCONNECT": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_EXTEXIT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_EXTPREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_EXTPREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_EXTPWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_EXTPWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FHSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_GETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_GET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("521", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LWP_GETTID": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_LWP_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOUNTCTL": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQ_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "SYS_MQ_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), - "SYS_MQ_RECEIVE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_MQ_SEND": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_MQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATVFS": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_SYS_CHECKPOINT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMTX_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_UMTX_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_USCHED_SET": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VARSYM_GET": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_VARSYM_LIST": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_VARSYM_SET": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VMM_GUEST_CTL": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), - "SYS_VMM_GUEST_SYNC_ADDR": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), - "SYS_VMSPACE_CREATE": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_VMSPACE_CTL": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_VMSPACE_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_VMSPACE_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_VMSPACE_MMAP": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_VMSPACE_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_VMSPACE_PREAD": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_VMSPACE_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_VQUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_FASTKEEP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_MIN_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_SIGNATURE_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCISPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VCHECKPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_freebsd_386.go b/stdlib/syscall/go1_17_syscall_freebsd_386.go deleted file mode 100644 index ddb327f4e..000000000 --- a/stdlib/syscall/go1_17_syscall_freebsd_386.go +++ /dev/null @@ -1,2255 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074283118", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148024941", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074295897", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_freebsd_amd64.go b/stdlib/syscall/go1_17_syscall_freebsd_amd64.go deleted file mode 100644 index 25cc63498..000000000 --- a/stdlib/syscall/go1_17_syscall_freebsd_amd64.go +++ /dev/null @@ -1,2256 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_freebsd_arm.go b/stdlib/syscall/go1_17_syscall_freebsd_arm.go deleted file mode 100644 index c47b1e694..000000000 --- a/stdlib/syscall/go1_17_syscall_freebsd_arm.go +++ /dev/null @@ -1,2255 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_freebsd_arm64.go b/stdlib/syscall/go1_17_syscall_freebsd_arm64.go deleted file mode 100644 index 8b4b29f6d..000000000 --- a/stdlib/syscall/go1_17_syscall_freebsd_arm64.go +++ /dev/null @@ -1,2301 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), - "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), - "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), - "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), - "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), - "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_AIO_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("543", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), - "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "SYS_CAP_FCNTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("537", token.INT, 0)), - "SYS_CAP_FCNTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "SYS_CAP_IOCTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), - "SYS_CAP_IOCTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), - "SYS_CAP_RIGHTS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), - "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), - "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), - "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), - "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), - "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("550", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), - "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("546", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GSSD_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), - "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), - "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), - "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_KMQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_KMQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_KMQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_KMQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_KMQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_KMQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_KSEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_KSEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_KSEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_KSEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_KSEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_KSEM_POST": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_KSEM_TIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_KSEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_KSEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_KSEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), - "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_NLM_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_NUMA_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), - "SYS_NUMA_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("549", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), - "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), - "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), - "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), - "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("545", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), - "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), - "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), - "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), - "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___CAP_RIGHTS_GET": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), - "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), - "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_illumos_amd64.go b/stdlib/syscall/go1_17_syscall_illumos_amd64.go deleted file mode 100644 index 7e736b47e..000000000 --- a/stdlib/syscall/go1_17_syscall_illumos_amd64.go +++ /dev/null @@ -1,1507 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !solaris -// +build go1.17,!solaris - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), - "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), - "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), - "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), - "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getexecname": reflect.ValueOf(syscall.Getexecname), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Gethostname": reflect.ValueOf(syscall.Gethostname), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), - "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), - "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), - "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), - "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), - "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), - "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), - "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), - "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), - "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), - "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), - "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), - "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), - "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mknod": reflect.ValueOf(syscall.Mknod), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), - "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), - "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLOST": reflect.ValueOf(syscall.SIGLOST), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIGXRES": reflect.ValueOf(syscall.SIGXRES), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), - "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), - "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), - "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), - "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), - "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), - "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), - "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), - "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), - "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), - "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), - "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), - "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), - "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), - "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), - "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), - "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), - "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), - "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), - "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), - "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), - "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), - "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), - "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), - "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), - "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), - "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), - "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), - "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), - "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), - "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), - "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), - "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), - "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), - "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), - "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), - "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), - "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), - "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), - "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), - "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), - "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), - "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), - "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), - "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), - "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), - "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), - "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), - "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), - "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), - "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), - "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), - "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), - "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), - "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), - "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), - "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), - "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), - "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), - "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), - "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), - "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), - "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), - "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), - "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), - "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), - "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), - "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), - "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), - "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), - "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), - "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), - "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), - "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), - "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), - "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), - "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), - "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), - "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), - "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), - "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), - "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), - "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), - "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), - "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), - "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), - "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), - "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), - "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), - "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), - "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), - "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), - "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), - "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), - "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), - "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), - "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), - "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), - "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), - "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), - "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), - "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), - "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), - "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), - "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_ios_amd64.go b/stdlib/syscall/go1_17_syscall_ios_amd64.go deleted file mode 100644 index 5109e697a..000000000 --- a/stdlib/syscall/go1_17_syscall_ios_amd64.go +++ /dev/null @@ -1,1951 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_ios_arm64.go b/stdlib/syscall/go1_17_syscall_ios_arm64.go deleted file mode 100644 index 25d5908fd..000000000 --- a/stdlib/syscall/go1_17_syscall_ios_arm64.go +++ /dev/null @@ -1,1959 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADARCH": reflect.ValueOf(syscall.EBADARCH), - "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDEVERR": reflect.ValueOf(syscall.EDEVERR), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EPWROFF": reflect.ValueOf(syscall.EPWROFF), - "EQFULL": reflect.ValueOf(syscall.EQFULL), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), - "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "Exchangedata": reflect.ValueOf(syscall.Exchangedata), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), - "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), - "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), - "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), - "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), - "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), - "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), - "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), - "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), - "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), - "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), - "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), - "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), - "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), - "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), - "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), - "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), - "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), - "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), - "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), - "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), - "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), - "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), - "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), - "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setprivexec": reflect.ValueOf(syscall.Setprivexec), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), - "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), - "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), - "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), - "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Undelete": reflect.ValueOf(syscall.Undelete), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), - "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_js_wasm.go b/stdlib/syscall/go1_17_syscall_js_wasm.go deleted file mode 100644 index 575489551..000000000 --- a/stdlib/syscall/go1_17_syscall_js_wasm.go +++ /dev/null @@ -1,368 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Connect": reflect.ValueOf(syscall.Connect), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECASECLASH": reflect.ValueOf(syscall.ECASECLASH), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELBIN": reflect.ValueOf(syscall.ELBIN), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENMFILE": reflect.ValueOf(syscall.ENMFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSHARE": reflect.ValueOf(syscall.ENOSHARE), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "F_CNVT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RGETLK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_RSETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_RSETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CREATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFBOUNDSOCK": reflect.ValueOf(constant.MakeFromLiteral("77824", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFCOND": reflect.ValueOf(constant.MakeFromLiteral("90112", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFDSOCK": reflect.ValueOf(constant.MakeFromLiteral("69632", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFMUTEX": reflect.ValueOf(constant.MakeFromLiteral("86016", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSEMA": reflect.ValueOf(constant.MakeFromLiteral("94208", token.INT, 0)), - "S_IFSHM": reflect.ValueOf(constant.MakeFromLiteral("81920", token.INT, 0)), - "S_IFSHM_SYSV": reflect.ValueOf(constant.MakeFromLiteral("98304", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFSOCKADDR": reflect.ValueOf(constant.MakeFromLiteral("73728", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_UNSUP": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "SetReadDeadline": reflect.ValueOf(syscall.SetReadDeadline), - "SetWriteDeadline": reflect.ValueOf(syscall.SetWriteDeadline), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "Socket": reflect.ValueOf(syscall.Socket), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Stdin": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Stdout": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "StopIO": reflect.ValueOf(syscall.StopIO), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_386.go b/stdlib/syscall/go1_17_syscall_linux_386.go deleted file mode 100644 index 8c6237770..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_386.go +++ /dev/null @@ -1,2247 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_amd64.go b/stdlib/syscall/go1_17_syscall_linux_amd64.go deleted file mode 100644 index 38a35109e..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_amd64.go +++ /dev/null @@ -1,2213 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_arm.go b/stdlib/syscall/go1_17_syscall_linux_arm.go deleted file mode 100644 index 3ff343538..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_arm.go +++ /dev/null @@ -1,2266 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), - "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_arm64.go b/stdlib/syscall/go1_17_syscall_linux_arm64.go deleted file mode 100644 index e2065513f..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_arm64.go +++ /dev/null @@ -1,2357 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_mips.go b/stdlib/syscall/go1_17_syscall_linux_mips.go deleted file mode 100644 index d64306bcd..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_mips.go +++ /dev/null @@ -1,2451 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), - "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), - "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), - "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), - "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), - "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), - "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), - "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), - "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), - "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), - "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_mips64.go b/stdlib/syscall/go1_17_syscall_linux_mips64.go deleted file mode 100644 index a862f705b..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_mips64.go +++ /dev/null @@ -1,2400 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), - "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), - "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_mips64le.go b/stdlib/syscall/go1_17_syscall_linux_mips64le.go deleted file mode 100644 index a862f705b..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_mips64le.go +++ /dev/null @@ -1,2400 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), - "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), - "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_mipsle.go b/stdlib/syscall/go1_17_syscall_linux_mipsle.go deleted file mode 100644 index d64306bcd..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_mipsle.go +++ /dev/null @@ -1,2451 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINIT": reflect.ValueOf(syscall.EINIT), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMDEV": reflect.ValueOf(syscall.EREMDEV), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), - "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), - "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), - "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), - "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), - "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), - "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), - "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), - "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), - "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), - "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), - "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), - "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), - "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), - "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), - "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), - "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), - "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), - "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), - "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), - "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), - "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_ppc64.go b/stdlib/syscall/go1_17_syscall_linux_ppc64.go deleted file mode 100644 index b60a68e1e..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_ppc64.go +++ /dev/null @@ -1,2491 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_ppc64le.go b/stdlib/syscall/go1_17_syscall_linux_ppc64le.go deleted file mode 100644 index 33c16f288..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_ppc64le.go +++ /dev/null @@ -1,2515 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Ioperm": reflect.ValueOf(syscall.Ioperm), - "Iopl": reflect.ValueOf(syscall.Iopl), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_riscv64.go b/stdlib/syscall/go1_17_syscall_linux_riscv64.go deleted file mode 100644 index 55169e19a..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_riscv64.go +++ /dev/null @@ -1,2411 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IB": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KCM": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLEXCLUSIVE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatat": reflect.ValueOf(syscall.Fstatat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BIND_ADDRESS_NO_PORT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MCL_ONFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_BATCH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_LAZYTIME": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("41943121", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ALG": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SOL_CAIF": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SOL_DCCP": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_IUCV": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SOL_KCM": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SOL_LLC": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SOL_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SOL_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SOL_NFC": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_PNPIPE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SOL_PPPOL2TP": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_RDS": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SOL_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_TIPC": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CC_INFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SAVED_SYN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TCP_SAVE_SYN": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_linux_s390x.go b/stdlib/syscall/go1_17_syscall_linux_s390x.go deleted file mode 100644 index 51942a359..000000000 --- a/stdlib/syscall/go1_17_syscall_linux_s390x.go +++ /dev/null @@ -1,2527 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), - "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), - "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), - "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), - "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), - "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), - "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), - "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), - "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), - "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), - "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), - "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), - "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), - "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), - "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), - "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), - "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), - "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), - "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), - "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), - "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), - "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), - "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), - "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), - "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), - "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), - "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), - "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), - "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), - "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), - "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Acct": reflect.ValueOf(syscall.Acct), - "Adjtimex": reflect.ValueOf(syscall.Adjtimex), - "AttachLsf": reflect.ValueOf(syscall.AttachLsf), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BindToDevice": reflect.ValueOf(syscall.BindToDevice), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "CLONE_NEWCGROUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "Creat": reflect.ValueOf(syscall.Creat), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DetachLsf": reflect.ValueOf(syscall.DetachLsf), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "Dup3": reflect.ValueOf(syscall.Dup3), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "ERFKILL": reflect.ValueOf(syscall.ERFKILL), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), - "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), - "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), - "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), - "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), - "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), - "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), - "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), - "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), - "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), - "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), - "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), - "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), - "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), - "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), - "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), - "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ETH_P_TSN": reflect.ValueOf(constant.MakeFromLiteral("8944", token.INT, 0)), - "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), - "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "EpollCreate": reflect.ValueOf(syscall.EpollCreate), - "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), - "EpollCtl": reflect.ValueOf(syscall.EpollCtl), - "EpollWait": reflect.ValueOf(syscall.EpollWait), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), - "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), - "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), - "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), - "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Faccessat": reflect.ValueOf(syscall.Faccessat), - "Fallocate": reflect.ValueOf(syscall.Fallocate), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchmodat": reflect.ValueOf(syscall.Fchmodat), - "Fchown": reflect.ValueOf(syscall.Fchown), - "Fchownat": reflect.ValueOf(syscall.Fchownat), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Fdatasync": reflect.ValueOf(syscall.Fdatasync), - "Flock": reflect.ValueOf(syscall.Flock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Futimesat": reflect.ValueOf(syscall.Futimesat), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), - "Gettid": reflect.ValueOf(syscall.Gettid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "Getxattr": reflect.ValueOf(syscall.Getxattr), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), - "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), - "InotifyInit": reflect.ValueOf(syscall.InotifyInit), - "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), - "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), - "Klogctl": reflect.ValueOf(syscall.Klogctl), - "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), - "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), - "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), - "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), - "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), - "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), - "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), - "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Listxattr": reflect.ValueOf(syscall.Listxattr), - "LsfJump": reflect.ValueOf(syscall.LsfJump), - "LsfSocket": reflect.ValueOf(syscall.LsfSocket), - "LsfStmt": reflect.ValueOf(syscall.LsfStmt), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), - "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), - "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "Madvise": reflect.ValueOf(syscall.Madvise), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkdirat": reflect.ValueOf(syscall.Mkdirat), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mknodat": reflect.ValueOf(syscall.Mknodat), - "Mlock": reflect.ValueOf(syscall.Mlock), - "Mlockall": reflect.ValueOf(syscall.Mlockall), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Mount": reflect.ValueOf(syscall.Mount), - "Mprotect": reflect.ValueOf(syscall.Mprotect), - "Munlock": reflect.ValueOf(syscall.Munlock), - "Munlockall": reflect.ValueOf(syscall.Munlockall), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_CAP_ACK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "NETLINK_LISTEN_ALL_NSID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NETLINK_LIST_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "NLM_F_DUMP_FILTERED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), - "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Openat": reflect.ValueOf(syscall.Openat), - "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PACKET_FANOUT_CBPF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_FANOUT_DATA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PACKET_FANOUT_EBPF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PACKET_ROLLOVER_STATS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PR_CAP_AMBIENT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "PR_CAP_AMBIENT_CLEAR_ALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_CAP_AMBIENT_IS_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_CAP_AMBIENT_LOWER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_CAP_AMBIENT_RAISE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), - "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PTRACE_DISABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20496", token.INT, 0)), - "PTRACE_ENABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20489", token.INT, 0)), - "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), - "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), - "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), - "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), - "PTRACE_GET_LAST_BREAK": reflect.ValueOf(constant.MakeFromLiteral("20486", token.INT, 0)), - "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), - "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("3145983", token.INT, 0)), - "PTRACE_O_SUSPEND_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_PEEKDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20483", token.INT, 0)), - "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), - "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PTRACE_PEEKTEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20482", token.INT, 0)), - "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PTRACE_PEEKUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20480", token.INT, 0)), - "PTRACE_PEEK_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20487", token.INT, 0)), - "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PTRACE_POKEDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20485", token.INT, 0)), - "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PTRACE_POKETEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20484", token.INT, 0)), - "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "PTRACE_POKEUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20481", token.INT, 0)), - "PTRACE_POKE_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20488", token.INT, 0)), - "PTRACE_PROT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PTRACE_SECCOMP_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("16908", token.INT, 0)), - "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), - "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), - "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), - "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), - "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), - "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PTRACE_TE_ABORT_RAND": reflect.ValueOf(constant.MakeFromLiteral("20497", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_ACR0": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "PT_ACR1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "PT_ACR10": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "PT_ACR11": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "PT_ACR12": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "PT_ACR13": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "PT_ACR14": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "PT_ACR15": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "PT_ACR2": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "PT_ACR3": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "PT_ACR4": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "PT_ACR5": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "PT_ACR6": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "PT_ACR7": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "PT_ACR8": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "PT_ACR9": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "PT_CR_10": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "PT_CR_11": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "PT_CR_9": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "PT_ENDREGS": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "PT_FPC": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "PT_FPR1": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "PT_FPR10": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "PT_FPR11": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "PT_FPR12": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "PT_FPR13": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "PT_FPR14": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "PT_FPR15": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "PT_FPR2": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "PT_FPR3": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "PT_FPR4": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PT_FPR5": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "PT_FPR6": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "PT_FPR7": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "PT_FPR8": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "PT_FPR9": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "PT_GPR0": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PT_GPR1": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PT_GPR10": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "PT_GPR11": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "PT_GPR12": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "PT_GPR13": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "PT_GPR14": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PT_GPR15": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "PT_GPR2": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PT_GPR3": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "PT_GPR4": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "PT_GPR5": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "PT_GPR6": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PT_GPR7": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "PT_GPR8": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "PT_GPR9": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "PT_IEEE_IP": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "PT_LASTOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "PT_ORIGGPR2": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "PT_PSWADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PT_PSWMASK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), - "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "Pause": reflect.ValueOf(syscall.Pause), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "PivotRoot": reflect.ValueOf(syscall.PivotRoot), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_FEATURE_MASK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), - "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTM_F_LOOKUP_TABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_COMPARE_MASK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNH_F_LINKDOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Removexattr": reflect.ValueOf(syscall.Removexattr), - "Rename": reflect.ValueOf(syscall.Rename), - "Renameat": reflect.ValueOf(syscall.Renameat), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), - "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), - "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), - "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), - "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), - "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), - "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), - "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), - "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), - "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), - "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), - "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), - "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), - "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), - "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), - "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), - "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), - "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), - "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), - "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), - "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), - "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), - "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), - "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), - "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), - "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), - "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), - "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), - "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), - "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), - "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), - "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), - "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), - "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_MEMBARRIER": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "SYS_MLOCK2": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), - "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), - "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), - "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), - "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), - "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), - "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), - "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS_S390_PCI_MMIO_READ": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), - "SYS_S390_PCI_MMIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), - "SYS_S390_RUNTIME_INSTR": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), - "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), - "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), - "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), - "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_USERFAULTFD": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setdomainname": reflect.ValueOf(syscall.Setdomainname), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setfsgid": reflect.ValueOf(syscall.Setfsgid), - "Setfsuid": reflect.ValueOf(syscall.Setfsuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Sethostname": reflect.ValueOf(syscall.Sethostname), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setresgid": reflect.ValueOf(syscall.Setresgid), - "Setresuid": reflect.ValueOf(syscall.Setresuid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "Setxattr": reflect.ValueOf(syscall.Setxattr), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Splice": reflect.ValueOf(syscall.Splice), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), - "Sysinfo": reflect.ValueOf(syscall.Sysinfo), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), - "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), - "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), - "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), - "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), - "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), - "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), - "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), - "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), - "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), - "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), - "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), - "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), - "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), - "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), - "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), - "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), - "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), - "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), - "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), - "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), - "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), - "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), - "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), - "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), - "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), - "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), - "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), - "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), - "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), - "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), - "TUNGETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("2147767519", token.INT, 0)), - "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), - "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), - "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), - "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), - "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), - "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), - "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), - "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), - "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), - "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), - "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), - "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), - "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), - "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), - "TUNSETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("1074025694", token.INT, 0)), - "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), - "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), - "Tee": reflect.ValueOf(syscall.Tee), - "Tgkill": reflect.ValueOf(syscall.Tgkill), - "Time": reflect.ValueOf(syscall.Time), - "Times": reflect.ValueOf(syscall.Times), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "Uname": reflect.ValueOf(syscall.Uname), - "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unlinkat": reflect.ValueOf(syscall.Unlinkat), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Unshare": reflect.ValueOf(syscall.Unshare), - "Ustat": reflect.ValueOf(syscall.Ustat), - "Utime": reflect.ValueOf(syscall.Utime), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - - // type definitions - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), - "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), - "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), - "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), - "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), - "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), - "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), - "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), - "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), - "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), - "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), - "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), - "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), - "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), - "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), - "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timex": reflect.ValueOf((*syscall.Timex)(nil)), - "Tms": reflect.ValueOf((*syscall.Tms)(nil)), - "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), - "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), - "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), - "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_netbsd_386.go b/stdlib/syscall/go1_17_syscall_netbsd_386.go deleted file mode 100644 index eed6eb654..000000000 --- a/stdlib/syscall/go1_17_syscall_netbsd_386.go +++ /dev/null @@ -1,2143 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EN_SW_CTL_INF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "EN_SW_CTL_PREC": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "EN_SW_CTL_ROUND": reflect.ValueOf(constant.MakeFromLiteral("3072", token.INT, 0)), - "EN_SW_DATACHAIN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EN_SW_DENORM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EN_SW_INVOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EN_SW_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EN_SW_PRECLOSS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EN_SW_UNDERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EN_SW_ZERODIV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_netbsd_amd64.go b/stdlib/syscall/go1_17_syscall_netbsd_amd64.go deleted file mode 100644 index cd8f207f8..000000000 --- a/stdlib/syscall/go1_17_syscall_netbsd_amd64.go +++ /dev/null @@ -1,2133 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_netbsd_arm.go b/stdlib/syscall/go1_17_syscall_netbsd_arm.go deleted file mode 100644 index 3df409f2f..000000000 --- a/stdlib/syscall/go1_17_syscall_netbsd_arm.go +++ /dev/null @@ -1,2119 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1208513606", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1208513608", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_netbsd_arm64.go b/stdlib/syscall/go1_17_syscall_netbsd_arm64.go deleted file mode 100644 index cd8f207f8..000000000 --- a/stdlib/syscall/go1_17_syscall_netbsd_arm64.go +++ /dev/null @@ -1,2133 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), - "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), - "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), - "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), - "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), - "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), - "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), - "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), - "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), - "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), - "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), - "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), - "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), - "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), - "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), - "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), - "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), - "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), - "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), - "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), - "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), - "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), - "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), - "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), - "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), - "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), - "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), - "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), - "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), - "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), - "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), - "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), - "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), - "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), - "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), - "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), - "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), - "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), - "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), - "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), - "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), - "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), - "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), - "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), - "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), - "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), - "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), - "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), - "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), - "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), - "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), - "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), - "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), - "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), - "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), - "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), - "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), - "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), - "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), - "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), - "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), - "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), - "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), - "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), - "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), - "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), - "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), - "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), - "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), - "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), - "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), - "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), - "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), - "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), - "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), - "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), - "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), - "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), - "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), - "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), - "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), - "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), - "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), - "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_openbsd_386.go b/stdlib/syscall/go1_17_syscall_openbsd_386.go deleted file mode 100644 index bb2c4613a..000000000 --- a/stdlib/syscall/go1_17_syscall_openbsd_386.go +++ /dev/null @@ -1,1976 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PT_MASK": reflect.ValueOf(constant.MakeFromLiteral("4190208", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), - "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_openbsd_amd64.go b/stdlib/syscall/go1_17_syscall_openbsd_amd64.go deleted file mode 100644 index a0b6fe97c..000000000 --- a/stdlib/syscall/go1_17_syscall_openbsd_amd64.go +++ /dev/null @@ -1,1975 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153277756", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153277761", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153277757", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153277762", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153277768", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227019582", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), - "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019580", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019586", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153277781", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153277759", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153277780", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_openbsd_arm.go b/stdlib/syscall/go1_17_syscall_openbsd_arm.go deleted file mode 100644 index 67d7fabab..000000000 --- a/stdlib/syscall/go1_17_syscall_openbsd_arm.go +++ /dev/null @@ -1,1979 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("16375", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("7403528", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), - "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), - "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), - "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_openbsd_arm64.go b/stdlib/syscall/go1_17_syscall_openbsd_arm64.go deleted file mode 100644 index 7377669fd..000000000 --- a/stdlib/syscall/go1_17_syscall_openbsd_arm64.go +++ /dev/null @@ -1,2074 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), - "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), - "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), - "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), - "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), - "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), - "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), - "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), - "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), - "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), - "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), - "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), - "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), - "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), - "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), - "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), - "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), - "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), - "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), - "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), - "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), - "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), - "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), - "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_openbsd_mips64.go b/stdlib/syscall/go1_17_syscall_openbsd_mips64.go deleted file mode 100644 index c853e8ca2..000000000 --- a/stdlib/syscall/go1_17_syscall_openbsd_mips64.go +++ /dev/null @@ -1,2084 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Accept4": reflect.ValueOf(syscall.Accept4), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), - "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), - "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), - "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), - "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), - "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), - "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), - "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), - "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), - "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), - "BpfInterface": reflect.ValueOf(syscall.BpfInterface), - "BpfJump": reflect.ValueOf(syscall.BpfJump), - "BpfStats": reflect.ValueOf(syscall.BpfStats), - "BpfStmt": reflect.ValueOf(syscall.BpfStmt), - "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), - "Chflags": reflect.ValueOf(syscall.Chflags), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "Dup2": reflect.ValueOf(syscall.Dup2), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EAUTH": reflect.ValueOf(syscall.EAUTH), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADRPC": reflect.ValueOf(syscall.EBADRPC), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EFTYPE": reflect.ValueOf(syscall.EFTYPE), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EIPSEC": reflect.ValueOf(syscall.EIPSEC), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "ELAST": reflect.ValueOf(syscall.ELAST), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOATTR": reflect.ValueOf(syscall.ENOATTR), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), - "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), - "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), - "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), - "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), - "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), - "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), - "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), - "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), - "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), - "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), - "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), - "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), - "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), - "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), - "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), - "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), - "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), - "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), - "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), - "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), - "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), - "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), - "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), - "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), - "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), - "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), - "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), - "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), - "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), - "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), - "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), - "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), - "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), - "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), - "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), - "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), - "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), - "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), - "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), - "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), - "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), - "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), - "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), - "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), - "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), - "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), - "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), - "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), - "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), - "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), - "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), - "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), - "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), - "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), - "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), - "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), - "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), - "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), - "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), - "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), - "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), - "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), - "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), - "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), - "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), - "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), - "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), - "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), - "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), - "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), - "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), - "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), - "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), - "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), - "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), - "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), - "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), - "ETHERTYPE_MACSEC": reflect.ValueOf(constant.MakeFromLiteral("35045", token.INT, 0)), - "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), - "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), - "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), - "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), - "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), - "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), - "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), - "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), - "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), - "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), - "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), - "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), - "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), - "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), - "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), - "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), - "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), - "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), - "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), - "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), - "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), - "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), - "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), - "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), - "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), - "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), - "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), - "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), - "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), - "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), - "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), - "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), - "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), - "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), - "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), - "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), - "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), - "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), - "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), - "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), - "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), - "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), - "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), - "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), - "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), - "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), - "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), - "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), - "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), - "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), - "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), - "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), - "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), - "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), - "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), - "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), - "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), - "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), - "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), - "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), - "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), - "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), - "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), - "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), - "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), - "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), - "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), - "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), - "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), - "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), - "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), - "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), - "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), - "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), - "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), - "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), - "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), - "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), - "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), - "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), - "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), - "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), - "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), - "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), - "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), - "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), - "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), - "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), - "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), - "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), - "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), - "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), - "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), - "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), - "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), - "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), - "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), - "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), - "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), - "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), - "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), - "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), - "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), - "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), - "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), - "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), - "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), - "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), - "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), - "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), - "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), - "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchflags": reflect.ValueOf(syscall.Fchflags), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "Flock": reflect.ValueOf(syscall.Flock), - "FlushBpf": reflect.ValueOf(syscall.FlushBpf), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fstatfs": reflect.ValueOf(syscall.Fstatfs), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Futimes": reflect.ValueOf(syscall.Futimes), - "Getdirentries": reflect.ValueOf(syscall.Getdirentries), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getfsstat": reflect.ValueOf(syscall.Getfsstat), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpgid": reflect.ValueOf(syscall.Getpgid), - "Getpgrp": reflect.ValueOf(syscall.Getpgrp), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getrusage": reflect.ValueOf(syscall.Getrusage), - "Getsid": reflect.ValueOf(syscall.Getsid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), - "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), - "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), - "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), - "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), - "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), - "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), - "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), - "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), - "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), - "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), - "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), - "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), - "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), - "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), - "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), - "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), - "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), - "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), - "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), - "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), - "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), - "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), - "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), - "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), - "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), - "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), - "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), - "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), - "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), - "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), - "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), - "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), - "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), - "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), - "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Issetugid": reflect.ValueOf(syscall.Issetugid), - "Kevent": reflect.ValueOf(syscall.Kevent), - "Kqueue": reflect.ValueOf(syscall.Kqueue), - "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), - "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mkfifo": reflect.ValueOf(syscall.Mkfifo), - "Mknod": reflect.ValueOf(syscall.Mknod), - "Mmap": reflect.ValueOf(syscall.Mmap), - "Munmap": reflect.ValueOf(syscall.Munmap), - "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), - "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), - "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pipe2": reflect.ValueOf(syscall.Pipe2), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Revoke": reflect.ValueOf(syscall.Revoke), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "RouteRIB": reflect.ValueOf(syscall.RouteRIB), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINFO": reflect.ValueOf(syscall.SIGINFO), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHR": reflect.ValueOf(syscall.SIGTHR), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), - "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), - "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), - "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), - "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), - "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), - "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), - "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), - "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), - "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), - "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), - "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), - "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), - "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), - "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), - "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), - "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), - "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), - "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), - "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), - "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), - "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), - "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), - "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), - "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), - "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), - "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), - "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), - "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), - "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), - "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), - "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), - "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), - "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), - "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), - "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), - "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), - "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), - "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), - "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), - "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), - "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), - "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), - "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), - "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), - "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), - "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), - "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), - "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), - "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), - "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), - "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), - "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), - "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), - "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), - "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), - "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), - "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), - "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), - "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), - "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), - "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), - "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), - "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), - "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), - "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), - "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), - "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), - "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), - "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), - "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), - "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), - "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), - "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), - "SIOCGRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349723", token.INT, 0)), - "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), - "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), - "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), - "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), - "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), - "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), - "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), - "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), - "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), - "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), - "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), - "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), - "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), - "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), - "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), - "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), - "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), - "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), - "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), - "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), - "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), - "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), - "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), - "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), - "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), - "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), - "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), - "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), - "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), - "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), - "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), - "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), - "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), - "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), - "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), - "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), - "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), - "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), - "SIOCSRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607899", token.INT, 0)), - "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), - "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), - "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), - "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), - "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), - "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), - "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), - "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), - "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), - "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), - "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), - "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), - "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), - "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), - "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), - "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), - "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), - "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), - "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), - "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), - "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), - "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), - "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), - "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), - "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), - "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), - "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), - "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), - "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), - "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), - "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), - "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), - "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), - "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), - "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), - "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), - "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), - "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), - "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), - "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), - "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), - "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), - "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), - "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), - "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), - "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), - "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), - "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), - "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), - "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SYS_MSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), - "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), - "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), - "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), - "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), - "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), - "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), - "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), - "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), - "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), - "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), - "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), - "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), - "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), - "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), - "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), - "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), - "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), - "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), - "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), - "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), - "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), - "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), - "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), - "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), - "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), - "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), - "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), - "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), - "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), - "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), - "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), - "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), - "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), - "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), - "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), - "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), - "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), - "SYS___REALPATH": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), - "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), - "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), - "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), - "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), - "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), - "SYS___TMPFD": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Select": reflect.ValueOf(syscall.Select), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetBpf": reflect.ValueOf(syscall.SetBpf), - "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), - "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), - "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), - "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), - "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), - "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), - "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), - "SetKevent": reflect.ValueOf(syscall.SetKevent), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setlogin": reflect.ValueOf(syscall.Setlogin), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Settimeofday": reflect.ValueOf(syscall.Settimeofday), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Statfs": reflect.ValueOf(syscall.Statfs), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "Sysctl": reflect.ValueOf(syscall.Sysctl), - "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_SACKHOLE_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), - "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), - "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), - "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), - "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), - "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), - "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), - "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), - "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), - "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), - "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), - "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), - "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), - "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), - "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), - "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), - "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), - "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), - "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), - "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), - "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), - "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), - "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), - "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), - "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), - "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type -type _syscall_RoutingMessage struct { - IValue interface{} -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_plan9_386.go b/stdlib/syscall/go1_17_syscall_plan9_386.go deleted file mode 100644 index d4fbac8ad..000000000 --- a/stdlib/syscall/go1_17_syscall_plan9_386.go +++ /dev/null @@ -1,244 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Await": reflect.ValueOf(syscall.Await), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "Create": reflect.ValueOf(syscall.Create), - "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), - "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), - "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), - "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), - "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), - "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), - "EIO": reflect.ValueOf(&syscall.EIO).Elem(), - "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), - "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), - "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), - "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), - "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), - "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), - "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), - "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), - "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), - "Environ": reflect.ValueOf(syscall.Environ), - "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), - "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), - "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fd2path": reflect.ValueOf(syscall.Fd2path), - "Fixwd": reflect.ValueOf(syscall.Fixwd), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fwstat": reflect.ValueOf(syscall.Fwstat), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mount": reflect.ValueOf(syscall.Mount), - "NewError": reflect.ValueOf(syscall.NewError), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "Remove": reflect.ValueOf(syscall.Remove), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "WaitProcess": reflect.ValueOf(syscall.WaitProcess), - "Write": reflect.ValueOf(syscall.Write), - "Wstat": reflect.ValueOf(syscall.Wstat), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dir": reflect.ValueOf((*syscall.Dir)(nil)), - "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), - "Note": reflect.ValueOf((*syscall.Note)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Qid": reflect.ValueOf((*syscall.Qid)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} diff --git a/stdlib/syscall/go1_17_syscall_plan9_amd64.go b/stdlib/syscall/go1_17_syscall_plan9_amd64.go deleted file mode 100644 index d4fbac8ad..000000000 --- a/stdlib/syscall/go1_17_syscall_plan9_amd64.go +++ /dev/null @@ -1,244 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Await": reflect.ValueOf(syscall.Await), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "Create": reflect.ValueOf(syscall.Create), - "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), - "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), - "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), - "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), - "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), - "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), - "EIO": reflect.ValueOf(&syscall.EIO).Elem(), - "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), - "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), - "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), - "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), - "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), - "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), - "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), - "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), - "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), - "Environ": reflect.ValueOf(syscall.Environ), - "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), - "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), - "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fd2path": reflect.ValueOf(syscall.Fd2path), - "Fixwd": reflect.ValueOf(syscall.Fixwd), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fwstat": reflect.ValueOf(syscall.Fwstat), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mount": reflect.ValueOf(syscall.Mount), - "NewError": reflect.ValueOf(syscall.NewError), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "Remove": reflect.ValueOf(syscall.Remove), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "WaitProcess": reflect.ValueOf(syscall.WaitProcess), - "Write": reflect.ValueOf(syscall.Write), - "Wstat": reflect.ValueOf(syscall.Wstat), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dir": reflect.ValueOf((*syscall.Dir)(nil)), - "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), - "Note": reflect.ValueOf((*syscall.Note)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Qid": reflect.ValueOf((*syscall.Qid)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} diff --git a/stdlib/syscall/go1_17_syscall_plan9_arm.go b/stdlib/syscall/go1_17_syscall_plan9_arm.go deleted file mode 100644 index d4fbac8ad..000000000 --- a/stdlib/syscall/go1_17_syscall_plan9_arm.go +++ /dev/null @@ -1,244 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Await": reflect.ValueOf(syscall.Await), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "Create": reflect.ValueOf(syscall.Create), - "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), - "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), - "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), - "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), - "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), - "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), - "EIO": reflect.ValueOf(&syscall.EIO).Elem(), - "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), - "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), - "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), - "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), - "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), - "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), - "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), - "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), - "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), - "Environ": reflect.ValueOf(syscall.Environ), - "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), - "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), - "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fd2path": reflect.ValueOf(syscall.Fd2path), - "Fixwd": reflect.ValueOf(syscall.Fixwd), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fwstat": reflect.ValueOf(syscall.Fwstat), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mount": reflect.ValueOf(syscall.Mount), - "NewError": reflect.ValueOf(syscall.NewError), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "Remove": reflect.ValueOf(syscall.Remove), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Setenv": reflect.ValueOf(syscall.Setenv), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), - "Unmount": reflect.ValueOf(syscall.Unmount), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "WaitProcess": reflect.ValueOf(syscall.WaitProcess), - "Write": reflect.ValueOf(syscall.Write), - "Wstat": reflect.ValueOf(syscall.Wstat), - - // type definitions - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Dir": reflect.ValueOf((*syscall.Dir)(nil)), - "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), - "Note": reflect.ValueOf((*syscall.Note)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "Qid": reflect.ValueOf((*syscall.Qid)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} diff --git a/stdlib/syscall/go1_17_syscall_solaris_amd64.go b/stdlib/syscall/go1_17_syscall_solaris_amd64.go deleted file mode 100644 index 8b824e112..000000000 --- a/stdlib/syscall/go1_17_syscall_solaris_amd64.go +++ /dev/null @@ -1,1501 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "Access": reflect.ValueOf(syscall.Access), - "Adjtime": reflect.ValueOf(syscall.Adjtime), - "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), - "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), - "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), - "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), - "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), - "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), - "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), - "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), - "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), - "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), - "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), - "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), - "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), - "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), - "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), - "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), - "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), - "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), - "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), - "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), - "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), - "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), - "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), - "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), - "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), - "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), - "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), - "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), - "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), - "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), - "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), - "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), - "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Chroot": reflect.ValueOf(syscall.Chroot), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "CmsgLen": reflect.ValueOf(syscall.CmsgLen), - "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), - "Connect": reflect.ValueOf(syscall.Connect), - "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), - "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), - "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), - "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), - "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), - "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), - "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), - "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), - "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), - "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), - "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), - "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), - "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), - "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), - "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), - "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), - "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), - "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), - "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), - "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), - "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), - "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), - "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), - "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), - "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), - "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), - "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), - "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), - "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), - "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), - "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), - "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), - "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), - "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), - "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), - "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), - "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), - "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), - "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), - "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), - "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), - "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), - "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), - "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), - "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), - "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), - "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), - "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), - "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), - "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), - "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), - "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), - "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), - "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), - "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), - "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), - "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Dup": reflect.ValueOf(syscall.Dup), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "Environ": reflect.ValueOf(syscall.Environ), - "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "Fpathconf": reflect.ValueOf(syscall.Fpathconf), - "Fstat": reflect.ValueOf(syscall.Fstat), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "Getcwd": reflect.ValueOf(syscall.Getcwd), - "Getdents": reflect.ValueOf(syscall.Getdents), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getexecname": reflect.ValueOf(syscall.Getexecname), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Gethostname": reflect.ValueOf(syscall.Gethostname), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getpriority": reflect.ValueOf(syscall.Getpriority), - "Getrlimit": reflect.ValueOf(syscall.Getrlimit), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), - "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), - "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), - "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), - "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), - "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), - "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), - "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), - "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), - "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), - "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), - "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), - "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), - "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), - "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), - "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), - "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), - "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), - "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), - "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), - "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), - "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), - "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), - "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), - "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), - "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), - "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), - "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), - "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), - "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), - "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), - "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), - "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), - "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), - "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), - "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), - "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), - "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), - "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), - "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), - "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), - "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), - "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), - "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), - "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), - "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), - "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "Lstat": reflect.ValueOf(syscall.Lstat), - "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "Mknod": reflect.ValueOf(syscall.Mknod), - "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "Nanosleep": reflect.ValueOf(syscall.Nanosleep), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), - "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), - "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "ParseDirent": reflect.ValueOf(syscall.ParseDirent), - "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), - "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), - "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "Pathconf": reflect.ValueOf(syscall.Pathconf), - "Pipe": reflect.ValueOf(syscall.Pipe), - "Pread": reflect.ValueOf(syscall.Pread), - "Pwrite": reflect.ValueOf(syscall.Pwrite), - "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), - "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), - "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadDirent": reflect.ValueOf(syscall.ReadDirent), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "Recvmsg": reflect.ValueOf(syscall.Recvmsg), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), - "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), - "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), - "SIGCLD": reflect.ValueOf(syscall.SIGCLD), - "SIGCONT": reflect.ValueOf(syscall.SIGCONT), - "SIGEMT": reflect.ValueOf(syscall.SIGEMT), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGIO": reflect.ValueOf(syscall.SIGIO), - "SIGIOT": reflect.ValueOf(syscall.SIGIOT), - "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), - "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGLOST": reflect.ValueOf(syscall.SIGLOST), - "SIGLWP": reflect.ValueOf(syscall.SIGLWP), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), - "SIGPROF": reflect.ValueOf(syscall.SIGPROF), - "SIGPWR": reflect.ValueOf(syscall.SIGPWR), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), - "SIGSYS": reflect.ValueOf(syscall.SIGSYS), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), - "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), - "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), - "SIGURG": reflect.ValueOf(syscall.SIGURG), - "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), - "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), - "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), - "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), - "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), - "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), - "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), - "SIGXRES": reflect.ValueOf(syscall.SIGXRES), - "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), - "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), - "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), - "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), - "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), - "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), - "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), - "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), - "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), - "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), - "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), - "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), - "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), - "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), - "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), - "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), - "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), - "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), - "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), - "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), - "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), - "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), - "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), - "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), - "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), - "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), - "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), - "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), - "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), - "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), - "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), - "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), - "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), - "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), - "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), - "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), - "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), - "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), - "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), - "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), - "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), - "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), - "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), - "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), - "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), - "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), - "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), - "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), - "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), - "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), - "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), - "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), - "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), - "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), - "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), - "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), - "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), - "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), - "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), - "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), - "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), - "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), - "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), - "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), - "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), - "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), - "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), - "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), - "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), - "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), - "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), - "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), - "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), - "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), - "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), - "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), - "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), - "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), - "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), - "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), - "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), - "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), - "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), - "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), - "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), - "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), - "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), - "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), - "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), - "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), - "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), - "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), - "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), - "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), - "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), - "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), - "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), - "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), - "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), - "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), - "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), - "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), - "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), - "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), - "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), - "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), - "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), - "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), - "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), - "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), - "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), - "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), - "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), - "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), - "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), - "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), - "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), - "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), - "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), - "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), - "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), - "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), - "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), - "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), - "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), - "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), - "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), - "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), - "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), - "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), - "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), - "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), - "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), - "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), - "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), - "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), - "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), - "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), - "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), - "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), - "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), - "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), - "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), - "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), - "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), - "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), - "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), - "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), - "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), - "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), - "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), - "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendfile": reflect.ValueOf(syscall.Sendfile), - "Sendmsg": reflect.ValueOf(syscall.Sendmsg), - "SendmsgN": reflect.ValueOf(syscall.SendmsgN), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setegid": reflect.ValueOf(syscall.Setegid), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Seteuid": reflect.ValueOf(syscall.Seteuid), - "Setgid": reflect.ValueOf(syscall.Setgid), - "Setgroups": reflect.ValueOf(syscall.Setgroups), - "Setpgid": reflect.ValueOf(syscall.Setpgid), - "Setpriority": reflect.ValueOf(syscall.Setpriority), - "Setregid": reflect.ValueOf(syscall.Setregid), - "Setreuid": reflect.ValueOf(syscall.Setreuid), - "Setrlimit": reflect.ValueOf(syscall.Setrlimit), - "Setsid": reflect.ValueOf(syscall.Setsid), - "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), - "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "Setuid": reflect.ValueOf(syscall.Setuid), - "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), - "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), - "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), - "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), - "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Socketpair": reflect.ValueOf(syscall.Socketpair), - "Stat": reflect.ValueOf(syscall.Stat), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "Sync": reflect.ValueOf(syscall.Sync), - "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), - "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), - "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), - "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), - "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), - "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), - "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), - "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), - "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), - "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), - "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), - "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), - "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), - "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), - "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), - "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), - "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), - "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), - "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), - "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), - "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), - "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), - "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), - "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), - "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), - "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), - "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), - "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), - "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), - "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), - "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), - "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), - "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), - "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), - "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), - "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), - "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), - "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), - "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), - "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), - "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), - "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), - "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), - "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), - "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), - "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), - "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), - "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), - "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), - "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), - "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), - "Truncate": reflect.ValueOf(syscall.Truncate), - "Umask": reflect.ValueOf(syscall.Umask), - "UnixRights": reflect.ValueOf(syscall.UnixRights), - "Unlink": reflect.ValueOf(syscall.Unlink), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), - "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), - "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "Wait4": reflect.ValueOf(syscall.Wait4), - "Write": reflect.ValueOf(syscall.Write), - - // type definitions - "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), - "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), - "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), - "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), - "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), - "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), - "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "Credential": reflect.ValueOf((*syscall.Credential)(nil)), - "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), - "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), - "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "IfData": reflect.ValueOf((*syscall.IfData)(nil)), - "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), - "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), - "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), - "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), - "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), - "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), - "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Termios": reflect.ValueOf((*syscall.Termios)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_windows_386.go b/stdlib/syscall/go1_17_syscall_windows_386.go deleted file mode 100644 index 3622d3b86..000000000 --- a/stdlib/syscall/go1_17_syscall_windows_386.go +++ /dev/null @@ -1,1037 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_windows_amd64.go b/stdlib/syscall/go1_17_syscall_windows_amd64.go deleted file mode 100644 index 3622d3b86..000000000 --- a/stdlib/syscall/go1_17_syscall_windows_amd64.go +++ /dev/null @@ -1,1037 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_windows_arm.go b/stdlib/syscall/go1_17_syscall_windows_arm.go deleted file mode 100644 index 3622d3b86..000000000 --- a/stdlib/syscall/go1_17_syscall_windows_arm.go +++ /dev/null @@ -1,1037 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_17_syscall_windows_arm64.go b/stdlib/syscall/go1_17_syscall_windows_arm64.go deleted file mode 100644 index 3622d3b86..000000000 --- a/stdlib/syscall/go1_17_syscall_windows_arm64.go +++ /dev/null @@ -1,1037 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package syscall - -import ( - "go/constant" - "go/token" - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "Accept": reflect.ValueOf(syscall.Accept), - "AcceptEx": reflect.ValueOf(syscall.AcceptEx), - "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Bind": reflect.ValueOf(syscall.Bind), - "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), - "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), - "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), - "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), - "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), - "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), - "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), - "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), - "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), - "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), - "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "CancelIo": reflect.ValueOf(syscall.CancelIo), - "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), - "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), - "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), - "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), - "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), - "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), - "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), - "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), - "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), - "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), - "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), - "Chdir": reflect.ValueOf(syscall.Chdir), - "Chmod": reflect.ValueOf(syscall.Chmod), - "Chown": reflect.ValueOf(syscall.Chown), - "Clearenv": reflect.ValueOf(syscall.Clearenv), - "Close": reflect.ValueOf(syscall.Close), - "CloseHandle": reflect.ValueOf(syscall.CloseHandle), - "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), - "Closesocket": reflect.ValueOf(syscall.Closesocket), - "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), - "ComputerName": reflect.ValueOf(syscall.ComputerName), - "Connect": reflect.ValueOf(syscall.Connect), - "ConnectEx": reflect.ValueOf(syscall.ConnectEx), - "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), - "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), - "CopySid": reflect.ValueOf(syscall.CopySid), - "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), - "CreateFile": reflect.ValueOf(syscall.CreateFile), - "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), - "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), - "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), - "CreatePipe": reflect.ValueOf(syscall.CreatePipe), - "CreateProcess": reflect.ValueOf(syscall.CreateProcess), - "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), - "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), - "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), - "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), - "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), - "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), - "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), - "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), - "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), - "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), - "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), - "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), - "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), - "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), - "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), - "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), - "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), - "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), - "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), - "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), - "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), - "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), - "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), - "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), - "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), - "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), - "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), - "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), - "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), - "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), - "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), - "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), - "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), - "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), - "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), - "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DeleteFile": reflect.ValueOf(syscall.DeleteFile), - "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), - "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), - "DnsQuery": reflect.ValueOf(syscall.DnsQuery), - "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), - "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), - "E2BIG": reflect.ValueOf(syscall.E2BIG), - "EACCES": reflect.ValueOf(syscall.EACCES), - "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), - "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), - "EADV": reflect.ValueOf(syscall.EADV), - "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), - "EAGAIN": reflect.ValueOf(syscall.EAGAIN), - "EALREADY": reflect.ValueOf(syscall.EALREADY), - "EBADE": reflect.ValueOf(syscall.EBADE), - "EBADF": reflect.ValueOf(syscall.EBADF), - "EBADFD": reflect.ValueOf(syscall.EBADFD), - "EBADMSG": reflect.ValueOf(syscall.EBADMSG), - "EBADR": reflect.ValueOf(syscall.EBADR), - "EBADRQC": reflect.ValueOf(syscall.EBADRQC), - "EBADSLT": reflect.ValueOf(syscall.EBADSLT), - "EBFONT": reflect.ValueOf(syscall.EBFONT), - "EBUSY": reflect.ValueOf(syscall.EBUSY), - "ECANCELED": reflect.ValueOf(syscall.ECANCELED), - "ECHILD": reflect.ValueOf(syscall.ECHILD), - "ECHRNG": reflect.ValueOf(syscall.ECHRNG), - "ECOMM": reflect.ValueOf(syscall.ECOMM), - "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), - "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), - "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), - "EDEADLK": reflect.ValueOf(syscall.EDEADLK), - "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), - "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), - "EDOM": reflect.ValueOf(syscall.EDOM), - "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), - "EDQUOT": reflect.ValueOf(syscall.EDQUOT), - "EEXIST": reflect.ValueOf(syscall.EEXIST), - "EFAULT": reflect.ValueOf(syscall.EFAULT), - "EFBIG": reflect.ValueOf(syscall.EFBIG), - "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), - "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), - "EIDRM": reflect.ValueOf(syscall.EIDRM), - "EILSEQ": reflect.ValueOf(syscall.EILSEQ), - "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), - "EINTR": reflect.ValueOf(syscall.EINTR), - "EINVAL": reflect.ValueOf(syscall.EINVAL), - "EIO": reflect.ValueOf(syscall.EIO), - "EISCONN": reflect.ValueOf(syscall.EISCONN), - "EISDIR": reflect.ValueOf(syscall.EISDIR), - "EISNAM": reflect.ValueOf(syscall.EISNAM), - "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), - "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), - "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), - "EL2HLT": reflect.ValueOf(syscall.EL2HLT), - "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), - "EL3HLT": reflect.ValueOf(syscall.EL3HLT), - "EL3RST": reflect.ValueOf(syscall.EL3RST), - "ELIBACC": reflect.ValueOf(syscall.ELIBACC), - "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), - "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), - "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), - "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), - "ELNRNG": reflect.ValueOf(syscall.ELNRNG), - "ELOOP": reflect.ValueOf(syscall.ELOOP), - "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), - "EMFILE": reflect.ValueOf(syscall.EMFILE), - "EMLINK": reflect.ValueOf(syscall.EMLINK), - "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), - "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), - "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), - "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), - "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), - "ENETRESET": reflect.ValueOf(syscall.ENETRESET), - "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), - "ENFILE": reflect.ValueOf(syscall.ENFILE), - "ENOANO": reflect.ValueOf(syscall.ENOANO), - "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), - "ENOCSI": reflect.ValueOf(syscall.ENOCSI), - "ENODATA": reflect.ValueOf(syscall.ENODATA), - "ENODEV": reflect.ValueOf(syscall.ENODEV), - "ENOENT": reflect.ValueOf(syscall.ENOENT), - "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), - "ENOKEY": reflect.ValueOf(syscall.ENOKEY), - "ENOLCK": reflect.ValueOf(syscall.ENOLCK), - "ENOLINK": reflect.ValueOf(syscall.ENOLINK), - "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), - "ENOMEM": reflect.ValueOf(syscall.ENOMEM), - "ENOMSG": reflect.ValueOf(syscall.ENOMSG), - "ENONET": reflect.ValueOf(syscall.ENONET), - "ENOPKG": reflect.ValueOf(syscall.ENOPKG), - "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), - "ENOSPC": reflect.ValueOf(syscall.ENOSPC), - "ENOSR": reflect.ValueOf(syscall.ENOSR), - "ENOSTR": reflect.ValueOf(syscall.ENOSTR), - "ENOSYS": reflect.ValueOf(syscall.ENOSYS), - "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), - "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), - "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), - "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), - "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), - "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), - "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), - "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), - "ENOTTY": reflect.ValueOf(syscall.ENOTTY), - "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), - "ENXIO": reflect.ValueOf(syscall.ENXIO), - "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), - "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), - "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), - "EPERM": reflect.ValueOf(syscall.EPERM), - "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), - "EPIPE": reflect.ValueOf(syscall.EPIPE), - "EPROTO": reflect.ValueOf(syscall.EPROTO), - "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), - "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), - "ERANGE": reflect.ValueOf(syscall.ERANGE), - "EREMCHG": reflect.ValueOf(syscall.EREMCHG), - "EREMOTE": reflect.ValueOf(syscall.EREMOTE), - "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), - "ERESTART": reflect.ValueOf(syscall.ERESTART), - "EROFS": reflect.ValueOf(syscall.EROFS), - "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), - "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), - "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), - "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), - "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), - "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), - "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), - "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), - "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), - "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), - "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), - "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), - "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), - "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), - "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), - "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), - "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), - "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), - "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), - "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), - "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), - "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), - "ESPIPE": reflect.ValueOf(syscall.ESPIPE), - "ESRCH": reflect.ValueOf(syscall.ESRCH), - "ESRMNT": reflect.ValueOf(syscall.ESRMNT), - "ESTALE": reflect.ValueOf(syscall.ESTALE), - "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), - "ETIME": reflect.ValueOf(syscall.ETIME), - "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), - "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), - "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), - "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), - "EUNATCH": reflect.ValueOf(syscall.EUNATCH), - "EUSERS": reflect.ValueOf(syscall.EUSERS), - "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), - "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), - "EXDEV": reflect.ValueOf(syscall.EXDEV), - "EXFULL": reflect.ValueOf(syscall.EXFULL), - "Environ": reflect.ValueOf(syscall.Environ), - "EscapeArg": reflect.ValueOf(syscall.EscapeArg), - "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), - "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), - "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), - "Fchdir": reflect.ValueOf(syscall.Fchdir), - "Fchmod": reflect.ValueOf(syscall.Fchmod), - "Fchown": reflect.ValueOf(syscall.Fchown), - "FindClose": reflect.ValueOf(syscall.FindClose), - "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), - "FindNextFile": reflect.ValueOf(syscall.FindNextFile), - "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), - "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), - "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), - "FormatMessage": reflect.ValueOf(syscall.FormatMessage), - "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), - "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), - "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), - "Fsync": reflect.ValueOf(syscall.Fsync), - "Ftruncate": reflect.ValueOf(syscall.Ftruncate), - "FullPath": reflect.ValueOf(syscall.FullPath), - "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), - "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), - "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), - "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), - "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), - "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), - "GetComputerName": reflect.ValueOf(syscall.GetComputerName), - "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), - "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), - "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), - "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), - "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), - "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), - "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), - "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), - "GetFileType": reflect.ValueOf(syscall.GetFileType), - "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), - "GetHostByName": reflect.ValueOf(syscall.GetHostByName), - "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), - "GetLastError": reflect.ValueOf(syscall.GetLastError), - "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), - "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), - "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), - "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), - "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), - "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), - "GetServByName": reflect.ValueOf(syscall.GetServByName), - "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), - "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), - "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), - "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), - "GetTempPath": reflect.ValueOf(syscall.GetTempPath), - "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), - "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), - "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), - "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), - "GetVersion": reflect.ValueOf(syscall.GetVersion), - "Getegid": reflect.ValueOf(syscall.Getegid), - "Getenv": reflect.ValueOf(syscall.Getenv), - "Geteuid": reflect.ValueOf(syscall.Geteuid), - "Getgid": reflect.ValueOf(syscall.Getgid), - "Getgroups": reflect.ValueOf(syscall.Getgroups), - "Getpagesize": reflect.ValueOf(syscall.Getpagesize), - "Getpeername": reflect.ValueOf(syscall.Getpeername), - "Getpid": reflect.ValueOf(syscall.Getpid), - "Getppid": reflect.ValueOf(syscall.Getppid), - "Getsockname": reflect.ValueOf(syscall.Getsockname), - "Getsockopt": reflect.ValueOf(syscall.Getsockopt), - "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), - "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), - "Getuid": reflect.ValueOf(syscall.Getuid), - "Getwd": reflect.ValueOf(syscall.Getwd), - "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), - "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), - "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), - "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), - "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), - "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), - "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), - "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), - "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), - "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), - "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), - "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), - "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), - "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), - "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), - "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), - "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), - "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "Lchown": reflect.ValueOf(syscall.Lchown), - "Link": reflect.ValueOf(syscall.Link), - "Listen": reflect.ValueOf(syscall.Listen), - "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), - "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), - "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), - "LoadDLL": reflect.ValueOf(syscall.LoadDLL), - "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), - "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), - "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), - "LocalFree": reflect.ValueOf(syscall.LocalFree), - "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), - "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), - "LookupSID": reflect.ValueOf(syscall.LookupSID), - "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), - "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), - "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), - "Mkdir": reflect.ValueOf(syscall.Mkdir), - "MoveFile": reflect.ValueOf(syscall.MoveFile), - "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), - "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), - "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), - "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), - "NewCallback": reflect.ValueOf(syscall.NewCallback), - "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), - "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), - "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), - "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), - "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), - "Ntohs": reflect.ValueOf(syscall.Ntohs), - "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), - "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), - "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), - "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Open": reflect.ValueOf(syscall.Open), - "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), - "OpenProcess": reflect.ValueOf(syscall.OpenProcess), - "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), - "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "Pipe": reflect.ValueOf(syscall.Pipe), - "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), - "Process32First": reflect.ValueOf(syscall.Process32First), - "Process32Next": reflect.ValueOf(syscall.Process32Next), - "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "Read": reflect.ValueOf(syscall.Read), - "ReadConsole": reflect.ValueOf(syscall.ReadConsole), - "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), - "ReadFile": reflect.ValueOf(syscall.ReadFile), - "Readlink": reflect.ValueOf(syscall.Readlink), - "Recvfrom": reflect.ValueOf(syscall.Recvfrom), - "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), - "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), - "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), - "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), - "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), - "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), - "Rename": reflect.ValueOf(syscall.Rename), - "Rmdir": reflect.ValueOf(syscall.Rmdir), - "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SIGABRT": reflect.ValueOf(syscall.SIGABRT), - "SIGALRM": reflect.ValueOf(syscall.SIGALRM), - "SIGBUS": reflect.ValueOf(syscall.SIGBUS), - "SIGFPE": reflect.ValueOf(syscall.SIGFPE), - "SIGHUP": reflect.ValueOf(syscall.SIGHUP), - "SIGILL": reflect.ValueOf(syscall.SIGILL), - "SIGINT": reflect.ValueOf(syscall.SIGINT), - "SIGKILL": reflect.ValueOf(syscall.SIGKILL), - "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), - "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), - "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), - "SIGTERM": reflect.ValueOf(syscall.SIGTERM), - "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), - "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), - "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), - "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), - "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), - "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), - "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), - "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), - "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), - "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), - "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), - "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), - "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), - "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), - "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), - "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), - "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), - "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), - "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), - "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), - "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), - "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), - "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "Seek": reflect.ValueOf(syscall.Seek), - "Sendto": reflect.ValueOf(syscall.Sendto), - "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), - "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), - "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), - "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), - "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), - "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), - "SetFileTime": reflect.ValueOf(syscall.SetFileTime), - "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), - "SetNonblock": reflect.ValueOf(syscall.SetNonblock), - "Setenv": reflect.ValueOf(syscall.Setenv), - "Setsockopt": reflect.ValueOf(syscall.Setsockopt), - "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), - "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), - "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), - "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), - "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), - "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), - "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "Socket": reflect.ValueOf(syscall.Socket), - "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), - "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), - "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), - "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), - "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), - "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), - "StringToSid": reflect.ValueOf(syscall.StringToSid), - "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), - "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), - "Symlink": reflect.ValueOf(syscall.Symlink), - "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), - "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), - "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), - "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), - "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), - "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), - "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), - "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), - "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), - "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), - "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), - "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), - "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), - "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), - "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), - "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), - "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), - "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), - "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), - "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), - "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), - "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), - "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), - "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), - "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), - "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), - "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), - "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), - "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), - "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), - "TranslateName": reflect.ValueOf(syscall.TranslateName), - "TransmitFile": reflect.ValueOf(syscall.TransmitFile), - "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), - "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), - "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), - "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), - "Unlink": reflect.ValueOf(syscall.Unlink), - "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), - "Unsetenv": reflect.ValueOf(syscall.Unsetenv), - "Utimes": reflect.ValueOf(syscall.Utimes), - "UtimesNano": reflect.ValueOf(syscall.UtimesNano), - "VirtualLock": reflect.ValueOf(syscall.VirtualLock), - "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), - "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), - "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), - "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), - "WSACleanup": reflect.ValueOf(syscall.WSACleanup), - "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), - "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), - "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), - "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), - "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), - "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), - "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), - "WSARecv": reflect.ValueOf(syscall.WSARecv), - "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), - "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "WSASend": reflect.ValueOf(syscall.WSASend), - "WSASendTo": reflect.ValueOf(syscall.WSASendTo), - "WSASendto": reflect.ValueOf(syscall.WSASendto), - "WSAStartup": reflect.ValueOf(syscall.WSAStartup), - "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), - "Write": reflect.ValueOf(syscall.Write), - "WriteConsole": reflect.ValueOf(syscall.WriteConsole), - "WriteFile": reflect.ValueOf(syscall.WriteFile), - "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), - "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), - "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), - "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), - "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), - "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), - "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), - "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), - "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), - "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), - "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), - "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), - "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), - "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), - "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), - "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), - "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), - "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), - "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), - - // type definitions - "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), - "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), - "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), - "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), - "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), - "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), - "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), - "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), - "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), - "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), - "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), - "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), - "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), - "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), - "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), - "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), - "Conn": reflect.ValueOf((*syscall.Conn)(nil)), - "DLL": reflect.ValueOf((*syscall.DLL)(nil)), - "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), - "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), - "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), - "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), - "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), - "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), - "Errno": reflect.ValueOf((*syscall.Errno)(nil)), - "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), - "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), - "GUID": reflect.ValueOf((*syscall.GUID)(nil)), - "Handle": reflect.ValueOf((*syscall.Handle)(nil)), - "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), - "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), - "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), - "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), - "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), - "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), - "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), - "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), - "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), - "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), - "Linger": reflect.ValueOf((*syscall.Linger)(nil)), - "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), - "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), - "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), - "Proc": reflect.ValueOf((*syscall.Proc)(nil)), - "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), - "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), - "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), - "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), - "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), - "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), - "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), - "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), - "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), - "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), - "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), - "SID": reflect.ValueOf((*syscall.SID)(nil)), - "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), - "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), - "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), - "Servent": reflect.ValueOf((*syscall.Servent)(nil)), - "Signal": reflect.ValueOf((*syscall.Signal)(nil)), - "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), - "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), - "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), - "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), - "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), - "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), - "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), - "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), - "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), - "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), - "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), - "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), - "Token": reflect.ValueOf((*syscall.Token)(nil)), - "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), - "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), - "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), - "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), - "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), - "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), - "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), - "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), - "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), - "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), - "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), - - // interface wrapper definitions - "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), - "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), - "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), - } -} - -// _syscall_Conn is an interface wrapper for Conn type -type _syscall_Conn struct { - IValue interface{} - WSyscallConn func() (syscall.RawConn, error) -} - -func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { - return W.WSyscallConn() -} - -// _syscall_RawConn is an interface wrapper for RawConn type -type _syscall_RawConn struct { - IValue interface{} - WControl func(f func(fd uintptr)) error - WRead func(f func(fd uintptr) (done bool)) error - WWrite func(f func(fd uintptr) (done bool)) error -} - -func (W _syscall_RawConn) Control(f func(fd uintptr)) error { - return W.WControl(f) -} -func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { - return W.WRead(f) -} -func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { - return W.WWrite(f) -} - -// _syscall_Sockaddr is an interface wrapper for Sockaddr type -type _syscall_Sockaddr struct { - IValue interface{} -} diff --git a/stdlib/syscall/go1_18_syscall_aix_ppc64.go b/stdlib/syscall/go1_18_syscall_aix_ppc64.go new file mode 100644 index 000000000..60eb8123d --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_aix_ppc64.go @@ -0,0 +1,1385 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_INTF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_NDD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETWARE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RIF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_802_3": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_802_5": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666332", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSMAP_DIR": reflect.ValueOf(constant.MakeFromLiteral("\"/usr/lib/nls/csmap/\"", token.STRING, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECH_ICMPID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECLONEME": reflect.ValueOf(syscall.ECLONEME), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "ECORRUPT": reflect.ValueOf(syscall.ECORRUPT), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDREQ": reflect.ValueOf(syscall.EDESTADDREQ), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDIST": reflect.ValueOf(syscall.EDIST), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFORMAT": reflect.ValueOf(syscall.EFORMAT), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIA": reflect.ValueOf(syscall.EMEDIA), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCONNECT": reflect.ValueOf(syscall.ENOCONNECT), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTREADY": reflect.ValueOf(syscall.ENOTREADY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTRUST": reflect.ValueOf(syscall.ENOTRUST), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESAD": reflect.ValueOf(syscall.ESAD), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESOFT": reflect.ValueOf(syscall.ESOFT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESYSERROR": reflect.ValueOf(syscall.ESYSERROR), + "ETHERNET_CSMACD": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVENP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EWRPROTECT": reflect.ValueOf(syscall.EWRPROTECT), + "EXCONTINUE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXDLOK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EXIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EXPGIO": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXRESUME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EXRETURN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EXSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTRAP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EYEC_RTENTRYA": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992513", token.INT, 0)), + "EYEC_RTENTRYF": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992518", token.INT, 0)), + "E_ACC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "FLUSHBAND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FLUSHLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "FLUSHR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FLUSHRW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FLUSHW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_TSTLK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getkerninfo": reflect.ValueOf(syscall.Getkerninfo), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "ICMP6_SEC_SEND_DEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "ICMP6_SEC_SEND_GET": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "ICMP6_SEC_SEND_SET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "ICMP6_SEC_SEND_SET_CGA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFA_FIRSTALIAS": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_64BIT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IFF_ALLCAST": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BPF": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IFF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("527442", token.INT, 0)), + "IFF_CHECKSUM_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_D1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_D2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_D3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_D4": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_DO_HW_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_GROUP_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IFF_IFBUFMGT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOECHO": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_PSEG": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SNAP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TCP_DISABLE_CKSUM": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IFF_TCP_NOCKSUM": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VIPA": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFO_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CLUSTER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FCS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIFTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HF": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SN": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_VIPA": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_USE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BIP": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GIF": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_QOS": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_ADDR_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_AIXRAWSOCKET": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IPV6_FLOWINFO_PRIFLOW": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IPV6_FLOWINFO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), + "IPV6_FLOWINFO_SRFLAG": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IPV6_FLOWINFO_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MIPDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_NOPROBE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_PRIORITY_10": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), + "IPV6_PRIORITY_11": reflect.ValueOf(constant.MakeFromLiteral("184549376", token.INT, 0)), + "IPV6_PRIORITY_12": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), + "IPV6_PRIORITY_13": reflect.ValueOf(constant.MakeFromLiteral("218103808", token.INT, 0)), + "IPV6_PRIORITY_14": reflect.ValueOf(constant.MakeFromLiteral("234881024", token.INT, 0)), + "IPV6_PRIORITY_15": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), + "IPV6_PRIORITY_8": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IPV6_PRIORITY_9": reflect.ValueOf(constant.MakeFromLiteral("150994944", token.INT, 0)), + "IPV6_PRIORITY_BULK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IPV6_PRIORITY_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("117440512", token.INT, 0)), + "IPV6_PRIORITY_FILLER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IPV6_PRIORITY_INTERACTIVE": reflect.ValueOf(constant.MakeFromLiteral("100663296", token.INT, 0)), + "IPV6_PRIORITY_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("50331648", token.INT, 0)), + "IPV6_PRIORITY_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("83886080", token.INT, 0)), + "IPV6_PRIORITY_UNATTENDED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IPV6_PRIORITY_UNCHARACTERIZED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVHOPS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVSRCRT": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_TYPE_2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_SENDIF": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_SRFLAG_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SRFLAG_STRICT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_TOKEN_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1610612736", token.INT, 0)), + "IP_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_BROADCAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_CACHE_LINE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DHCPMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_FINDPMTU": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_INC_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_INIT_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OPT": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PMTUAGE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RECVINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_RECVMACHDR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "I_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("536892165", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "LNOFLSH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "MAP_VARIABLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_ANY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_BAND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_MPEG2": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_EINTR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_PER_SEC": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_CIO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_CIOR": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DEFER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_DELAY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EFSOFF": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), + "O_EFSON": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_NSHARE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_RAW": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSHARE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_64BIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_ADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PR_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_CONNREQUIRED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_FASTHZ": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_INP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PR_INTRLEVEL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PR_MLS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PR_MLS_1_LABEL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PR_NOEOR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PR_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_SLOWHZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_WANTRCVD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PT_COMMAND_MAX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_GET_UKEY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_LDINFO": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PT_LDXINFO": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PT_MULTI": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PT_NEXT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PT_QUERY": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_READ_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_FPR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_READ_GPR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_REATT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PT_REGSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_SET": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WATCH": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PT_WRITE_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_FPR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PT_WRITE_GPR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1023", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_ACTIVE_DGD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_BCE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_BUL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FREE_IN_PROG": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PERMANENT6": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SMALLMTU": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STOPSRCH": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GETNEXT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTLOST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SAMEADDR": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_SET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_VERSION_GR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_VERSION_GR_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_VERSION_POLICY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_VERSION_POLICY_EXT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_VERSION_POLICY_PRFN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGAIO": reflect.ValueOf(syscall.SIGAIO), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGALRM1": reflect.ValueOf(syscall.SIGALRM1), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCAPI": reflect.ValueOf(syscall.SIGCAPI), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGCPUFAIL": reflect.ValueOf(syscall.SIGCPUFAIL), + "SIGDANGER": reflect.ValueOf(syscall.SIGDANGER), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGGRANT": reflect.ValueOf(syscall.SIGGRANT), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOINT": reflect.ValueOf(syscall.SIGIOINT), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKAP": reflect.ValueOf(syscall.SIGKAP), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLOST": reflect.ValueOf(syscall.SIGLOST), + "SIGMAX": reflect.ValueOf(syscall.SIGMAX), + "SIGMAX32": reflect.ValueOf(syscall.SIGMAX32), + "SIGMAX64": reflect.ValueOf(syscall.SIGMAX64), + "SIGMIGRATE": reflect.ValueOf(syscall.SIGMIGRATE), + "SIGMSG": reflect.ValueOf(syscall.SIGMSG), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPRE": reflect.ValueOf(syscall.SIGPRE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPTY": reflect.ValueOf(syscall.SIGPTY), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUEUE_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGRECONFIG": reflect.ValueOf(syscall.SIGRECONFIG), + "SIGRETRACT": reflect.ValueOf(syscall.SIGRETRACT), + "SIGSAK": reflect.ValueOf(syscall.SIGSAK), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSOUND": reflect.ValueOf(syscall.SIGSOUND), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGSYSERROR": reflect.ValueOf(syscall.SIGSYSERROR), + "SIGTALRM": reflect.ValueOf(syscall.SIGTALRM), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVIRT": reflect.ValueOf(syscall.SIGVIRT), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897858", token.INT, 0)), + "SIOCADDMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194512", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), + "SIOCADDNETID": reflect.ValueOf(constant.MakeFromLiteral("-2144835241", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784438", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2143262438", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476000", token.INT, 0)), + "SIOCDELIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897859", token.INT, 0)), + "SIOCDELMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194511", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), + "SIOCDELPMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144833526", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784437", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835303", token.INT, 0)), + "SIOCDNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649280", token.INT, 0)), + "SIOCDX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835227", token.INT, 0)), + "SIOCFIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359469", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1068734170", token.INT, 0)), + "SIOCGETMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897903", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401100", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401101", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093471", token.INT, 0)), + "SIOCGIFADDRS": reflect.ValueOf(constant.MakeFromLiteral("536897932", token.INT, 0)), + "SIOCGIFBAUDRATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093395", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093469", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666299", token.INT, 0)), + "SIOCGIFCONFGLOB": reflect.ValueOf(constant.MakeFromLiteral("-1072666224", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093470", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071093487", token.INT, 0)), + "SIOCGIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897896", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1068209771", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071093481", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071093418", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071093467", token.INT, 0)), + "SIOCGIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-1071093462", token.INT, 0)), + "SIOCGISNO": reflect.ValueOf(constant.MakeFromLiteral("-1071093397", token.INT, 0)), + "SIOCGLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452670", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649317", token.INT, 0)), + "SIOCGNETOPT1": reflect.ValueOf(constant.MakeFromLiteral("-1071617663", token.INT, 0)), + "SIOCGNMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897902", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSIZIFCONF": reflect.ValueOf(constant.MakeFromLiteral("1074030954", token.INT, 0)), + "SIOCGSRCFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1072142027", token.INT, 0)), + "SIOCGTUNEPHASE": reflect.ValueOf(constant.MakeFromLiteral("-1073452662", token.INT, 0)), + "SIOCGX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093404", token.INT, 0)), + "SIOCIFATTACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359513", token.INT, 0)), + "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359514", token.INT, 0)), + "SIOCIFGETPKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359515", token.INT, 0)), + "SIOCIF_ATM_DARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359491", token.INT, 0)), + "SIOCIF_ATM_DUMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359493", token.INT, 0)), + "SIOCIF_ATM_GARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359490", token.INT, 0)), + "SIOCIF_ATM_IDLE": reflect.ValueOf(constant.MakeFromLiteral("-2145359494", token.INT, 0)), + "SIOCIF_ATM_SARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359489", token.INT, 0)), + "SIOCIF_ATM_SNMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359495", token.INT, 0)), + "SIOCIF_ATM_SVC": reflect.ValueOf(constant.MakeFromLiteral("-2145359492", token.INT, 0)), + "SIOCIF_ATM_UBR": reflect.ValueOf(constant.MakeFromLiteral("-2145359496", token.INT, 0)), + "SIOCIF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("-2147194476", token.INT, 0)), + "SIOCIF_IB_ARP_INCOMP": reflect.ValueOf(constant.MakeFromLiteral("-2145359479", token.INT, 0)), + "SIOCIF_IB_ARP_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-2145359480", token.INT, 0)), + "SIOCIF_IB_CLEAR_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617647", token.INT, 0)), + "SIOCIF_IB_DEL_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359487", token.INT, 0)), + "SIOCIF_IB_DEL_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617648", token.INT, 0)), + "SIOCIF_IB_DUMP_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359488", token.INT, 0)), + "SIOCIF_IB_GET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359486", token.INT, 0)), + "SIOCIF_IB_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850485", token.INT, 0)), + "SIOCIF_IB_GET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), + "SIOCIF_IB_NOTIFY_ADDR_REM": reflect.ValueOf(constant.MakeFromLiteral("-1065850474", token.INT, 0)), + "SIOCIF_IB_RESET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850481", token.INT, 0)), + "SIOCIF_IB_RESIZE_CQ": reflect.ValueOf(constant.MakeFromLiteral("-2145359481", token.INT, 0)), + "SIOCIF_IB_SET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359485", token.INT, 0)), + "SIOCIF_IB_SET_PKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359484", token.INT, 0)), + "SIOCIF_IB_SET_PORT": reflect.ValueOf(constant.MakeFromLiteral("-2145359483", token.INT, 0)), + "SIOCIF_IB_SET_QKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359478", token.INT, 0)), + "SIOCIF_IB_SET_QSIZE": reflect.ValueOf(constant.MakeFromLiteral("-2145359482", token.INT, 0)), + "SIOCLISTIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897860", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476002", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359552", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835316", token.INT, 0)), + "SIOCSIFADDRORI": reflect.ValueOf(constant.MakeFromLiteral("-2145097331", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835309", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835314", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2144835312", token.INT, 0)), + "SIOCSIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897897", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2144835304", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144835240", token.INT, 0)), + "SIOCSIFNETDUMP": reflect.ValueOf(constant.MakeFromLiteral("-2144835300", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2144835306", token.INT, 0)), + "SIOCSIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-2144835287", token.INT, 0)), + "SIOCSIFSUBCHAN": reflect.ValueOf(constant.MakeFromLiteral("-2144835301", token.INT, 0)), + "SIOCSISNO": reflect.ValueOf(constant.MakeFromLiteral("-2144835220", token.INT, 0)), + "SIOCSLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452669", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359554", token.INT, 0)), + "SIOCSNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-2147391142", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359560", token.INT, 0)), + "SIOCSX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835229", token.INT, 0)), + "SOCK_CONN_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_CKSUMRECV": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_KERNACCEPT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOMULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_NOREUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERID": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USE_IFBUFS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "S_BANDURG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_EMODFMT": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), + "S_ENFMT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ERROR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_HANGUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_ICRYPTO": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFJOURNAL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMPX": reflect.ValueOf(constant.MakeFromLiteral("8704", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFPDIR": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "S_IFPSDIR": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "S_IFPSSDIR": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFSYSEA": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "S_INPUT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ITCB": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "S_ITP": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXACL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "S_IXATTR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IXMOD": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_MSG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_RDBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_RDNORM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "S_RESERVED3": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "S_RESERVED4": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "S_RESFMT1": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "S_RESFMT10": reflect.ValueOf(constant.MakeFromLiteral("872415232", token.INT, 0)), + "S_RESFMT11": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "S_RESFMT12": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), + "S_RESFMT2": reflect.ValueOf(constant.MakeFromLiteral("335544320", token.INT, 0)), + "S_RESFMT3": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "S_RESFMT4": reflect.ValueOf(constant.MakeFromLiteral("469762048", token.INT, 0)), + "S_RESFMT5": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "S_RESFMT6": reflect.ValueOf(constant.MakeFromLiteral("603979776", token.INT, 0)), + "S_RESFMT7": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "S_RESFMT8": reflect.ValueOf(constant.MakeFromLiteral("738197504", token.INT, 0)), + "S_WRBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_WRNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("1028", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_24DAYS_WORTH_OF_SLOWTICKS": reflect.ValueOf(constant.MakeFromLiteral("4147200", token.INT, 0)), + "TCP_ACLADD": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCP_ACLBIND": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "TCP_ACLCLEAR": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_ACLDEL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_ACLDENY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_ACLFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_ACLGID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_ACLLS": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "TCP_ACLSUBNET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_ACLUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CWND_DF": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_CWND_IF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_DELAY_ACK_FIN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_DELAY_ACK_SYN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_FASTNAME": reflect.ValueOf(constant.MakeFromLiteral("16844810", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_LSPRIV": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "TCP_LUID": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXDF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "TCP_MAXIF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAXWINDOWSCALE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("1460", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NODELAYACK": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_NOREDUCE_CWND_EXIT_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_NOREDUCE_CWND_IN_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_NOTENTER_SSTART": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_OPT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_RFC1323": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_SETPRIV": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "TCP_STDURG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP_OPTLEN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_UNSETPRIV": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359906", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359824", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033664", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033736", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("536900610", token.INT, 0)), + "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359934", token.INT, 0)), + "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359935", token.INT, 0)), + "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("1074033788", token.INT, 0)), + "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359933", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359915", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359916", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359908", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359812", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359917", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359920", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359913", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490897", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359809", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490890", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490889", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490997", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359926", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("18446744071562163314", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359910", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTRT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "VTDELAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERSE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "WPARSTART": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WPARSTOP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WPARTTYNAME": reflect.ValueOf(constant.MakeFromLiteral("\"Global\"", token.STRING, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid64_t": reflect.ValueOf((*syscall.Fsid64_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfMsgHdr": reflect.ValueOf((*syscall.IfMsgHdr)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "StTimespec_t": reflect.ValueOf((*syscall.StTimespec_t)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "Timezone": reflect.ValueOf((*syscall.Timezone)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_android_386.go b/stdlib/syscall/go1_18_syscall_android_386.go new file mode 100644 index 000000000..18048c772 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_android_386.go @@ -0,0 +1,2247 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_android_amd64.go b/stdlib/syscall/go1_18_syscall_android_amd64.go new file mode 100644 index 000000000..52ebe77d2 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_android_amd64.go @@ -0,0 +1,2213 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_android_arm.go b/stdlib/syscall/go1_18_syscall_android_arm.go new file mode 100644 index 000000000..5202bfcfc --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_android_arm.go @@ -0,0 +1,2266 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), + "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_android_arm64.go b/stdlib/syscall/go1_18_syscall_android_arm64.go new file mode 100644 index 000000000..58e02d0f7 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_android_arm64.go @@ -0,0 +1,2357 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_darwin_amd64.go b/stdlib/syscall/go1_18_syscall_darwin_amd64.go new file mode 100644 index 000000000..842ca1024 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_darwin_amd64.go @@ -0,0 +1,1951 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_darwin_arm64.go b/stdlib/syscall/go1_18_syscall_darwin_arm64.go new file mode 100644 index 000000000..386f2caf2 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_darwin_arm64.go @@ -0,0 +1,1959 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "EQFULL": reflect.ValueOf(syscall.EQFULL), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), + "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_dragonfly_amd64.go b/stdlib/syscall/go1_18_syscall_dragonfly_amd64.go new file mode 100644 index 000000000..8f916e58d --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_dragonfly_amd64.go @@ -0,0 +1,2014 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DEFAULTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MAX_CLONES": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_REDBACK_SMARTEDGE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DBF": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EASYNC": reflect.ValueOf(syscall.EASYNC), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNUSED94": reflect.ValueOf(syscall.EUNUSED94), + "EUNUSED95": reflect.ValueOf(syscall.EUNUSED95), + "EUNUSED96": reflect.ValueOf(syscall.EUNUSED96), + "EUNUSED97": reflect.ValueOf(syscall.EUNUSED97), + "EUNUSED98": reflect.ValueOf(syscall.EUNUSED98), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_EXCEPT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_MARKER": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_NODATA": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTEXIT_LWP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "EXTEXIT_PROC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXTEXIT_SETINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EXTEXIT_SIMPLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("1150578", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NPOLLING": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_OACTIVE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POLLING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_POLLING_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CONTROL_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_CONTROL_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_INVAL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SETMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_SIZEALIGN": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_VPAGETABLE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_FMASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MSG_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_OOB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_FASYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_FBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "O_FMASK": reflect.ValueOf(constant.MakeFromLiteral("133955584", token.INT, 0)), + "O_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_FOFFSET": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_FUNBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_MAPONREAD": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTA_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPLSOPS": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_IWCAPSEGS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTV_IWMAXSEGS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTV_MSL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCKPT": reflect.ValueOf(syscall.SIGCKPT), + "SIGCKPTEXIT": reflect.ValueOf(syscall.SIGCKPTEXIT), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("3223349632", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDSPACE": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHROOT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXEC_SYS_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_EXEC_SYS_UNREGISTER": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTACCEPT": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTCONNECT": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_EXTEXIT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_EXTPREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_EXTPREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_EXTPWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_EXTPWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FHSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_GETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_GET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("521", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LWP_GETTID": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_LWP_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOUNTCTL": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQ_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "SYS_MQ_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), + "SYS_MQ_RECEIVE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_MQ_SEND": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_MQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATVFS": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_SYS_CHECKPOINT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMTX_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_UMTX_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_USCHED_SET": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VARSYM_GET": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_VARSYM_LIST": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_VARSYM_SET": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VMM_GUEST_CTL": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), + "SYS_VMM_GUEST_SYNC_ADDR": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), + "SYS_VMSPACE_CREATE": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_VMSPACE_CTL": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_VMSPACE_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_VMSPACE_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_VMSPACE_MMAP": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_VMSPACE_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_VMSPACE_PREAD": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_VMSPACE_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_VQUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_FASTKEEP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_MIN_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_SIGNATURE_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCISPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VCHECKPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_freebsd_386.go b/stdlib/syscall/go1_18_syscall_freebsd_386.go new file mode 100644 index 000000000..f81ac8819 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_freebsd_386.go @@ -0,0 +1,2255 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074283118", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148024941", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074295897", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_freebsd_amd64.go b/stdlib/syscall/go1_18_syscall_freebsd_amd64.go new file mode 100644 index 000000000..27d043503 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_freebsd_amd64.go @@ -0,0 +1,2256 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_freebsd_arm.go b/stdlib/syscall/go1_18_syscall_freebsd_arm.go new file mode 100644 index 000000000..e5ed7533b --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_freebsd_arm.go @@ -0,0 +1,2255 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_freebsd_arm64.go b/stdlib/syscall/go1_18_syscall_freebsd_arm64.go new file mode 100644 index 000000000..fb9b904b9 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_freebsd_arm64.go @@ -0,0 +1,2301 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_AIO_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("543", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_FCNTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("537", token.INT, 0)), + "SYS_CAP_FCNTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_IOCTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), + "SYS_CAP_IOCTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), + "SYS_CAP_RIGHTS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("550", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("546", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GSSD_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KMQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_KMQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_KMQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_KMQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_KMQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_KMQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KSEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_KSEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_KSEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_KSEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_KSEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_KSEM_POST": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_KSEM_TIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_KSEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_KSEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_KSEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLM_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_NUMA_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), + "SYS_NUMA_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("549", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("545", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___CAP_RIGHTS_GET": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_illumos_amd64.go b/stdlib/syscall/go1_18_syscall_illumos_amd64.go new file mode 100644 index 000000000..5ed92442c --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_illumos_amd64.go @@ -0,0 +1,1507 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !solaris +// +build go1.18,!go1.19,!solaris + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), + "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), + "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), + "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), + "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getexecname": reflect.ValueOf(syscall.Getexecname), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Gethostname": reflect.ValueOf(syscall.Gethostname), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), + "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), + "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), + "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), + "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), + "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), + "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), + "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), + "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), + "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), + "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), + "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), + "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), + "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mknod": reflect.ValueOf(syscall.Mknod), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), + "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), + "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLOST": reflect.ValueOf(syscall.SIGLOST), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIGXRES": reflect.ValueOf(syscall.SIGXRES), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), + "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), + "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), + "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), + "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), + "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), + "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), + "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), + "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), + "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), + "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), + "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), + "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), + "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), + "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), + "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), + "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), + "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), + "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), + "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), + "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), + "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), + "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), + "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), + "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), + "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), + "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), + "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), + "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), + "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), + "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), + "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), + "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), + "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), + "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), + "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), + "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), + "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), + "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), + "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), + "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), + "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), + "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), + "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), + "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), + "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), + "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), + "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), + "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), + "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), + "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), + "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), + "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), + "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), + "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), + "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), + "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), + "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), + "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), + "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), + "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), + "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), + "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), + "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), + "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), + "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), + "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), + "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), + "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), + "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), + "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), + "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), + "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), + "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), + "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), + "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), + "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), + "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), + "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), + "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), + "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), + "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), + "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), + "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), + "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), + "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), + "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), + "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), + "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), + "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), + "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), + "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), + "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), + "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), + "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), + "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), + "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), + "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), + "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), + "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), + "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), + "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), + "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), + "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), + "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_ios_amd64.go b/stdlib/syscall/go1_18_syscall_ios_amd64.go new file mode 100644 index 000000000..842ca1024 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_ios_amd64.go @@ -0,0 +1,1951 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_ios_arm64.go b/stdlib/syscall/go1_18_syscall_ios_arm64.go new file mode 100644 index 000000000..386f2caf2 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_ios_arm64.go @@ -0,0 +1,1959 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "EQFULL": reflect.ValueOf(syscall.EQFULL), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), + "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_js_wasm.go b/stdlib/syscall/go1_18_syscall_js_wasm.go new file mode 100644 index 000000000..ebae88890 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_js_wasm.go @@ -0,0 +1,368 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Connect": reflect.ValueOf(syscall.Connect), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECASECLASH": reflect.ValueOf(syscall.ECASECLASH), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELBIN": reflect.ValueOf(syscall.ELBIN), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENMFILE": reflect.ValueOf(syscall.ENMFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSHARE": reflect.ValueOf(syscall.ENOSHARE), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "F_CNVT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RGETLK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_RSETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_RSETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CREATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFBOUNDSOCK": reflect.ValueOf(constant.MakeFromLiteral("77824", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFCOND": reflect.ValueOf(constant.MakeFromLiteral("90112", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFDSOCK": reflect.ValueOf(constant.MakeFromLiteral("69632", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFMUTEX": reflect.ValueOf(constant.MakeFromLiteral("86016", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSEMA": reflect.ValueOf(constant.MakeFromLiteral("94208", token.INT, 0)), + "S_IFSHM": reflect.ValueOf(constant.MakeFromLiteral("81920", token.INT, 0)), + "S_IFSHM_SYSV": reflect.ValueOf(constant.MakeFromLiteral("98304", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFSOCKADDR": reflect.ValueOf(constant.MakeFromLiteral("73728", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_UNSUP": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "SetReadDeadline": reflect.ValueOf(syscall.SetReadDeadline), + "SetWriteDeadline": reflect.ValueOf(syscall.SetWriteDeadline), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "Socket": reflect.ValueOf(syscall.Socket), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Stdin": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Stdout": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "StopIO": reflect.ValueOf(syscall.StopIO), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_386.go b/stdlib/syscall/go1_18_syscall_linux_386.go new file mode 100644 index 000000000..082f05a32 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_386.go @@ -0,0 +1,2247 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_amd64.go b/stdlib/syscall/go1_18_syscall_linux_amd64.go new file mode 100644 index 000000000..f442c4a68 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_amd64.go @@ -0,0 +1,2213 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_arm.go b/stdlib/syscall/go1_18_syscall_linux_arm.go new file mode 100644 index 000000000..ef399edcd --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_arm.go @@ -0,0 +1,2266 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), + "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_arm64.go b/stdlib/syscall/go1_18_syscall_linux_arm64.go new file mode 100644 index 000000000..ec9bdf57f --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_arm64.go @@ -0,0 +1,2357 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_mips.go b/stdlib/syscall/go1_18_syscall_linux_mips.go new file mode 100644 index 000000000..bed57a7ba --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_mips.go @@ -0,0 +1,2451 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), + "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), + "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), + "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), + "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), + "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), + "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), + "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), + "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), + "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), + "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_mips64.go b/stdlib/syscall/go1_18_syscall_linux_mips64.go new file mode 100644 index 000000000..6a7ef7558 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_mips64.go @@ -0,0 +1,2400 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), + "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), + "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_mips64le.go b/stdlib/syscall/go1_18_syscall_linux_mips64le.go new file mode 100644 index 000000000..6a7ef7558 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_mips64le.go @@ -0,0 +1,2400 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), + "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), + "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_mipsle.go b/stdlib/syscall/go1_18_syscall_linux_mipsle.go new file mode 100644 index 000000000..bed57a7ba --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_mipsle.go @@ -0,0 +1,2451 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), + "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), + "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), + "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), + "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), + "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), + "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), + "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), + "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), + "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), + "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_ppc64.go b/stdlib/syscall/go1_18_syscall_linux_ppc64.go new file mode 100644 index 000000000..795463701 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_ppc64.go @@ -0,0 +1,2491 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_ppc64le.go b/stdlib/syscall/go1_18_syscall_linux_ppc64le.go new file mode 100644 index 000000000..9240040d7 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_ppc64le.go @@ -0,0 +1,2515 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_riscv64.go b/stdlib/syscall/go1_18_syscall_linux_riscv64.go new file mode 100644 index 000000000..b83a6b6fc --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_riscv64.go @@ -0,0 +1,2411 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IB": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KCM": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLEXCLUSIVE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BIND_ADDRESS_NO_PORT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MCL_ONFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_BATCH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_LAZYTIME": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("41943121", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ALG": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SOL_CAIF": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SOL_DCCP": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_IUCV": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SOL_KCM": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SOL_LLC": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SOL_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SOL_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SOL_NFC": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_PNPIPE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SOL_PPPOL2TP": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_RDS": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SOL_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_TIPC": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CC_INFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SAVED_SYN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_SAVE_SYN": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_linux_s390x.go b/stdlib/syscall/go1_18_syscall_linux_s390x.go new file mode 100644 index 000000000..261d5b549 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_linux_s390x.go @@ -0,0 +1,2527 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWCGROUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_TSN": reflect.ValueOf(constant.MakeFromLiteral("8944", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CAP_ACK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_LISTEN_ALL_NSID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_LIST_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_FILTERED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CBPF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_DATA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PACKET_FANOUT_EBPF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_ROLLOVER_STATS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CAP_AMBIENT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "PR_CAP_AMBIENT_CLEAR_ALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_CAP_AMBIENT_IS_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_CAP_AMBIENT_LOWER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_CAP_AMBIENT_RAISE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_DISABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20496", token.INT, 0)), + "PTRACE_ENABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20489", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_LAST_BREAK": reflect.ValueOf(constant.MakeFromLiteral("20486", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("3145983", token.INT, 0)), + "PTRACE_O_SUSPEND_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20483", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20482", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_PEEKUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20480", token.INT, 0)), + "PTRACE_PEEK_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20487", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20485", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20484", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_POKEUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20481", token.INT, 0)), + "PTRACE_POKE_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20488", token.INT, 0)), + "PTRACE_PROT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_SECCOMP_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("16908", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TE_ABORT_RAND": reflect.ValueOf(constant.MakeFromLiteral("20497", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ACR0": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "PT_ACR1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "PT_ACR10": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "PT_ACR11": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "PT_ACR12": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PT_ACR13": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PT_ACR14": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "PT_ACR15": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "PT_ACR2": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "PT_ACR3": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "PT_ACR4": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "PT_ACR5": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "PT_ACR6": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "PT_ACR7": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "PT_ACR8": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "PT_ACR9": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "PT_CR_10": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "PT_CR_11": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "PT_CR_9": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "PT_ENDREGS": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "PT_FPC": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "PT_FPR1": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "PT_FPR10": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "PT_FPR11": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "PT_FPR12": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "PT_FPR13": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "PT_FPR14": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "PT_FPR15": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "PT_FPR2": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "PT_FPR3": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "PT_FPR4": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PT_FPR5": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "PT_FPR6": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "PT_FPR7": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "PT_FPR8": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "PT_FPR9": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "PT_GPR0": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PT_GPR1": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PT_GPR10": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "PT_GPR11": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "PT_GPR12": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "PT_GPR13": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "PT_GPR14": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PT_GPR15": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "PT_GPR2": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_GPR3": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_GPR4": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "PT_GPR5": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "PT_GPR6": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PT_GPR7": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "PT_GPR8": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "PT_GPR9": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "PT_IEEE_IP": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "PT_LASTOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "PT_ORIGGPR2": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PT_PSWADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_PSWMASK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_MASK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_LOOKUP_TABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_COMPARE_MASK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_LINKDOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_MEMBARRIER": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCK2": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_S390_PCI_MMIO_READ": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_S390_PCI_MMIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_S390_RUNTIME_INSTR": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USERFAULTFD": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("2147767519", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("1074025694", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_netbsd_386.go b/stdlib/syscall/go1_18_syscall_netbsd_386.go new file mode 100644 index 000000000..0d3b4ff90 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_netbsd_386.go @@ -0,0 +1,2143 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EN_SW_CTL_INF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EN_SW_CTL_PREC": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "EN_SW_CTL_ROUND": reflect.ValueOf(constant.MakeFromLiteral("3072", token.INT, 0)), + "EN_SW_DATACHAIN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EN_SW_DENORM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EN_SW_INVOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EN_SW_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EN_SW_PRECLOSS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EN_SW_UNDERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EN_SW_ZERODIV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_netbsd_amd64.go b/stdlib/syscall/go1_18_syscall_netbsd_amd64.go new file mode 100644 index 000000000..156c907ac --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_netbsd_amd64.go @@ -0,0 +1,2133 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_netbsd_arm.go b/stdlib/syscall/go1_18_syscall_netbsd_arm.go new file mode 100644 index 000000000..b544b8c63 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_netbsd_arm.go @@ -0,0 +1,2119 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1208513606", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1208513608", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_netbsd_arm64.go b/stdlib/syscall/go1_18_syscall_netbsd_arm64.go new file mode 100644 index 000000000..156c907ac --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_netbsd_arm64.go @@ -0,0 +1,2133 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_openbsd_386.go b/stdlib/syscall/go1_18_syscall_openbsd_386.go new file mode 100644 index 000000000..d567e370d --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_openbsd_386.go @@ -0,0 +1,1976 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_MASK": reflect.ValueOf(constant.MakeFromLiteral("4190208", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), + "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_openbsd_amd64.go b/stdlib/syscall/go1_18_syscall_openbsd_amd64.go new file mode 100644 index 000000000..65709fbc6 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_openbsd_amd64.go @@ -0,0 +1,1975 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153277756", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153277761", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153277757", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153277762", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153277768", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227019582", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), + "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019580", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019586", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153277781", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153277759", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153277780", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_openbsd_arm.go b/stdlib/syscall/go1_18_syscall_openbsd_arm.go new file mode 100644 index 000000000..805c24207 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_openbsd_arm.go @@ -0,0 +1,1979 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("16375", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("7403528", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), + "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), + "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_openbsd_arm64.go b/stdlib/syscall/go1_18_syscall_openbsd_arm64.go new file mode 100644 index 000000000..a0482def5 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_openbsd_arm64.go @@ -0,0 +1,2074 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), + "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), + "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), + "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), + "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), + "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), + "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), + "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), + "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), + "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), + "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), + "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), + "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), + "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), + "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), + "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), + "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), + "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), + "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), + "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), + "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), + "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), + "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), + "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_openbsd_mips64.go b/stdlib/syscall/go1_18_syscall_openbsd_mips64.go new file mode 100644 index 000000000..0ca46973b --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_openbsd_mips64.go @@ -0,0 +1,2084 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MACSEC": reflect.ValueOf(constant.MakeFromLiteral("35045", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), + "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), + "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), + "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), + "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), + "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), + "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), + "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), + "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), + "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), + "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), + "SIOCGRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349723", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), + "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), + "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), + "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), + "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), + "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), + "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), + "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), + "SIOCSRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607899", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), + "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), + "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), + "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), + "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), + "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___REALPATH": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS___TMPFD": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_SACKHOLE_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), + "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_plan9_386.go b/stdlib/syscall/go1_18_syscall_plan9_386.go new file mode 100644 index 000000000..f84032b0d --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_plan9_386.go @@ -0,0 +1,244 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Await": reflect.ValueOf(syscall.Await), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "Create": reflect.ValueOf(syscall.Create), + "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), + "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), + "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), + "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), + "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), + "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), + "EIO": reflect.ValueOf(&syscall.EIO).Elem(), + "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), + "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), + "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), + "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), + "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), + "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), + "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), + "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), + "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), + "Environ": reflect.ValueOf(syscall.Environ), + "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), + "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), + "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fd2path": reflect.ValueOf(syscall.Fd2path), + "Fixwd": reflect.ValueOf(syscall.Fixwd), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fwstat": reflect.ValueOf(syscall.Fwstat), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mount": reflect.ValueOf(syscall.Mount), + "NewError": reflect.ValueOf(syscall.NewError), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "Remove": reflect.ValueOf(syscall.Remove), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "WaitProcess": reflect.ValueOf(syscall.WaitProcess), + "Write": reflect.ValueOf(syscall.Write), + "Wstat": reflect.ValueOf(syscall.Wstat), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dir": reflect.ValueOf((*syscall.Dir)(nil)), + "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), + "Note": reflect.ValueOf((*syscall.Note)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Qid": reflect.ValueOf((*syscall.Qid)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} diff --git a/stdlib/syscall/go1_18_syscall_plan9_amd64.go b/stdlib/syscall/go1_18_syscall_plan9_amd64.go new file mode 100644 index 000000000..f84032b0d --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_plan9_amd64.go @@ -0,0 +1,244 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Await": reflect.ValueOf(syscall.Await), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "Create": reflect.ValueOf(syscall.Create), + "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), + "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), + "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), + "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), + "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), + "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), + "EIO": reflect.ValueOf(&syscall.EIO).Elem(), + "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), + "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), + "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), + "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), + "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), + "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), + "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), + "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), + "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), + "Environ": reflect.ValueOf(syscall.Environ), + "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), + "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), + "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fd2path": reflect.ValueOf(syscall.Fd2path), + "Fixwd": reflect.ValueOf(syscall.Fixwd), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fwstat": reflect.ValueOf(syscall.Fwstat), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mount": reflect.ValueOf(syscall.Mount), + "NewError": reflect.ValueOf(syscall.NewError), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "Remove": reflect.ValueOf(syscall.Remove), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "WaitProcess": reflect.ValueOf(syscall.WaitProcess), + "Write": reflect.ValueOf(syscall.Write), + "Wstat": reflect.ValueOf(syscall.Wstat), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dir": reflect.ValueOf((*syscall.Dir)(nil)), + "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), + "Note": reflect.ValueOf((*syscall.Note)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Qid": reflect.ValueOf((*syscall.Qid)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} diff --git a/stdlib/syscall/go1_18_syscall_plan9_arm.go b/stdlib/syscall/go1_18_syscall_plan9_arm.go new file mode 100644 index 000000000..f84032b0d --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_plan9_arm.go @@ -0,0 +1,244 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Await": reflect.ValueOf(syscall.Await), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "Create": reflect.ValueOf(syscall.Create), + "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), + "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), + "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), + "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), + "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), + "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), + "EIO": reflect.ValueOf(&syscall.EIO).Elem(), + "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), + "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), + "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), + "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), + "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), + "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), + "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), + "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), + "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), + "Environ": reflect.ValueOf(syscall.Environ), + "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), + "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), + "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fd2path": reflect.ValueOf(syscall.Fd2path), + "Fixwd": reflect.ValueOf(syscall.Fixwd), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fwstat": reflect.ValueOf(syscall.Fwstat), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mount": reflect.ValueOf(syscall.Mount), + "NewError": reflect.ValueOf(syscall.NewError), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "Remove": reflect.ValueOf(syscall.Remove), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "WaitProcess": reflect.ValueOf(syscall.WaitProcess), + "Write": reflect.ValueOf(syscall.Write), + "Wstat": reflect.ValueOf(syscall.Wstat), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dir": reflect.ValueOf((*syscall.Dir)(nil)), + "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), + "Note": reflect.ValueOf((*syscall.Note)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Qid": reflect.ValueOf((*syscall.Qid)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} diff --git a/stdlib/syscall/go1_18_syscall_solaris_amd64.go b/stdlib/syscall/go1_18_syscall_solaris_amd64.go new file mode 100644 index 000000000..7438a5959 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_solaris_amd64.go @@ -0,0 +1,1501 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), + "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), + "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), + "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), + "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getexecname": reflect.ValueOf(syscall.Getexecname), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Gethostname": reflect.ValueOf(syscall.Gethostname), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), + "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), + "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), + "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), + "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), + "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), + "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), + "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), + "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), + "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), + "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), + "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), + "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), + "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mknod": reflect.ValueOf(syscall.Mknod), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), + "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), + "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLOST": reflect.ValueOf(syscall.SIGLOST), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIGXRES": reflect.ValueOf(syscall.SIGXRES), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), + "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), + "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), + "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), + "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), + "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), + "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), + "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), + "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), + "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), + "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), + "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), + "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), + "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), + "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), + "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), + "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), + "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), + "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), + "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), + "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), + "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), + "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), + "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), + "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), + "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), + "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), + "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), + "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), + "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), + "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), + "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), + "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), + "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), + "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), + "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), + "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), + "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), + "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), + "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), + "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), + "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), + "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), + "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), + "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), + "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), + "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), + "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), + "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), + "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), + "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), + "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), + "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), + "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), + "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), + "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), + "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), + "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), + "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), + "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), + "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), + "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), + "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), + "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), + "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), + "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), + "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), + "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), + "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), + "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), + "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), + "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), + "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), + "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), + "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), + "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), + "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), + "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), + "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), + "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), + "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), + "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), + "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), + "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), + "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), + "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), + "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), + "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), + "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), + "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), + "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), + "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), + "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), + "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), + "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), + "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), + "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), + "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), + "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), + "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), + "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), + "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), + "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), + "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), + "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_windows_386.go b/stdlib/syscall/go1_18_syscall_windows_386.go new file mode 100644 index 000000000..0038ff4d8 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_windows_386.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_windows_amd64.go b/stdlib/syscall/go1_18_syscall_windows_amd64.go new file mode 100644 index 000000000..0038ff4d8 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_windows_amd64.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_windows_arm.go b/stdlib/syscall/go1_18_syscall_windows_arm.go new file mode 100644 index 000000000..0038ff4d8 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_windows_arm.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_18_syscall_windows_arm64.go b/stdlib/syscall/go1_18_syscall_windows_arm64.go new file mode 100644 index 000000000..0038ff4d8 --- /dev/null +++ b/stdlib/syscall/go1_18_syscall_windows_arm64.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_aix_ppc64.go b/stdlib/syscall/go1_19_syscall_aix_ppc64.go new file mode 100644 index 000000000..d8be080d1 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_aix_ppc64.go @@ -0,0 +1,1386 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_INTF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_NDD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETWARE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RIF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_802_3": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_802_5": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666332", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSMAP_DIR": reflect.ValueOf(constant.MakeFromLiteral("\"/usr/lib/nls/csmap/\"", token.STRING, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECH_ICMPID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECLONEME": reflect.ValueOf(syscall.ECLONEME), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "ECORRUPT": reflect.ValueOf(syscall.ECORRUPT), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDREQ": reflect.ValueOf(syscall.EDESTADDREQ), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDIST": reflect.ValueOf(syscall.EDIST), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFORMAT": reflect.ValueOf(syscall.EFORMAT), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIA": reflect.ValueOf(syscall.EMEDIA), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCONNECT": reflect.ValueOf(syscall.ENOCONNECT), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTREADY": reflect.ValueOf(syscall.ENOTREADY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTRUST": reflect.ValueOf(syscall.ENOTRUST), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESAD": reflect.ValueOf(syscall.ESAD), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESOFT": reflect.ValueOf(syscall.ESOFT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESYSERROR": reflect.ValueOf(syscall.ESYSERROR), + "ETHERNET_CSMACD": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVENP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EWRPROTECT": reflect.ValueOf(syscall.EWRPROTECT), + "EXCONTINUE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXDLOK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EXIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EXPGIO": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXRESUME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EXRETURN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EXSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTRAP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EYEC_RTENTRYA": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992513", token.INT, 0)), + "EYEC_RTENTRYF": reflect.ValueOf(constant.MakeFromLiteral("2698347105741992518", token.INT, 0)), + "E_ACC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "FLUSHBAND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FLUSHLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "FLUSHR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FLUSHRW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FLUSHW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_TSTLK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getkerninfo": reflect.ValueOf(syscall.Getkerninfo), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "ICMP6_SEC_SEND_DEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "ICMP6_SEC_SEND_GET": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "ICMP6_SEC_SEND_SET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "ICMP6_SEC_SEND_SET_CGA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFA_FIRSTALIAS": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_64BIT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IFF_ALLCAST": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BPF": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IFF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("527442", token.INT, 0)), + "IFF_CHECKSUM_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_D1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_D2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_D3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_D4": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_DO_HW_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_GROUP_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IFF_IFBUFMGT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOECHO": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_PSEG": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SNAP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TCP_DISABLE_CKSUM": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IFF_TCP_NOCKSUM": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VIPA": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFO_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CLUSTER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FCS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIFTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HF": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SN": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_VIPA": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_USE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BIP": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GIF": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_QOS": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_ADDR_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_AIXRAWSOCKET": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IPV6_FLOWINFO_PRIFLOW": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IPV6_FLOWINFO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), + "IPV6_FLOWINFO_SRFLAG": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IPV6_FLOWINFO_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MIPDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_NOPROBE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_PRIORITY_10": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), + "IPV6_PRIORITY_11": reflect.ValueOf(constant.MakeFromLiteral("184549376", token.INT, 0)), + "IPV6_PRIORITY_12": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), + "IPV6_PRIORITY_13": reflect.ValueOf(constant.MakeFromLiteral("218103808", token.INT, 0)), + "IPV6_PRIORITY_14": reflect.ValueOf(constant.MakeFromLiteral("234881024", token.INT, 0)), + "IPV6_PRIORITY_15": reflect.ValueOf(constant.MakeFromLiteral("251658240", token.INT, 0)), + "IPV6_PRIORITY_8": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IPV6_PRIORITY_9": reflect.ValueOf(constant.MakeFromLiteral("150994944", token.INT, 0)), + "IPV6_PRIORITY_BULK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IPV6_PRIORITY_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("117440512", token.INT, 0)), + "IPV6_PRIORITY_FILLER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IPV6_PRIORITY_INTERACTIVE": reflect.ValueOf(constant.MakeFromLiteral("100663296", token.INT, 0)), + "IPV6_PRIORITY_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("50331648", token.INT, 0)), + "IPV6_PRIORITY_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("83886080", token.INT, 0)), + "IPV6_PRIORITY_UNATTENDED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IPV6_PRIORITY_UNCHARACTERIZED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVHOPS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVSRCRT": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_TYPE_2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_SENDIF": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_SRFLAG_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SRFLAG_STRICT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_TOKEN_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1610612736", token.INT, 0)), + "IP_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_BROADCAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_CACHE_LINE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DHCPMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_FINDPMTU": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_INC_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_INIT_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OPT": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PMTUAGE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RECVINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_RECVMACHDR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "I_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("536892165", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "LNOFLSH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "MAP_VARIABLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_ANY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_BAND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_MPEG2": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_EINTR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_PER_SEC": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_CIO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_CIOR": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DEFER": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_DELAY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EFSOFF": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), + "O_EFSON": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_NSHARE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_RAW": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSHARE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_64BIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_ADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_ARGEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PR_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_CONNREQUIRED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_FASTHZ": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_INP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PR_INTRLEVEL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PR_MLS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PR_MLS_1_LABEL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PR_NOEOR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PR_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_SLOWHZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_WANTRCVD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PT_COMMAND_MAX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_GET_UKEY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_LDINFO": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PT_LDXINFO": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PT_MULTI": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PT_NEXT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PT_QUERY": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_READ_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_FPR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_READ_GPR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_REATT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PT_REGSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_SET": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WATCH": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PT_WRITE_BLOCK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_FPR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PT_WRITE_GPR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1023", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_ACTIVE_DGD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_BCE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_BUL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FREE_IN_PROG": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PERMANENT6": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SMALLMTU": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STOPSRCH": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GETNEXT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTLOST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SAMEADDR": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_SET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_VERSION_GR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_VERSION_GR_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_VERSION_POLICY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_VERSION_POLICY_EXT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_VERSION_POLICY_PRFN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGAIO": reflect.ValueOf(syscall.SIGAIO), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGALRM1": reflect.ValueOf(syscall.SIGALRM1), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCAPI": reflect.ValueOf(syscall.SIGCAPI), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGCPUFAIL": reflect.ValueOf(syscall.SIGCPUFAIL), + "SIGDANGER": reflect.ValueOf(syscall.SIGDANGER), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGGRANT": reflect.ValueOf(syscall.SIGGRANT), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOINT": reflect.ValueOf(syscall.SIGIOINT), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKAP": reflect.ValueOf(syscall.SIGKAP), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLOST": reflect.ValueOf(syscall.SIGLOST), + "SIGMAX": reflect.ValueOf(syscall.SIGMAX), + "SIGMAX32": reflect.ValueOf(syscall.SIGMAX32), + "SIGMAX64": reflect.ValueOf(syscall.SIGMAX64), + "SIGMIGRATE": reflect.ValueOf(syscall.SIGMIGRATE), + "SIGMSG": reflect.ValueOf(syscall.SIGMSG), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPRE": reflect.ValueOf(syscall.SIGPRE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPTY": reflect.ValueOf(syscall.SIGPTY), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUEUE_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGRECONFIG": reflect.ValueOf(syscall.SIGRECONFIG), + "SIGRETRACT": reflect.ValueOf(syscall.SIGRETRACT), + "SIGSAK": reflect.ValueOf(syscall.SIGSAK), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSOUND": reflect.ValueOf(syscall.SIGSOUND), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGSYSERROR": reflect.ValueOf(syscall.SIGSYSERROR), + "SIGTALRM": reflect.ValueOf(syscall.SIGTALRM), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVIRT": reflect.ValueOf(syscall.SIGVIRT), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897858", token.INT, 0)), + "SIOCADDMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194512", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), + "SIOCADDNETID": reflect.ValueOf(constant.MakeFromLiteral("-2144835241", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784438", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2143262438", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476000", token.INT, 0)), + "SIOCDELIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897859", token.INT, 0)), + "SIOCDELMTU": reflect.ValueOf(constant.MakeFromLiteral("-2147194511", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), + "SIOCDELPMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144833526", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2143784437", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835303", token.INT, 0)), + "SIOCDNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649280", token.INT, 0)), + "SIOCDX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835227", token.INT, 0)), + "SIOCFIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359469", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1068734170", token.INT, 0)), + "SIOCGETMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897903", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401100", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401101", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093471", token.INT, 0)), + "SIOCGIFADDRS": reflect.ValueOf(constant.MakeFromLiteral("536897932", token.INT, 0)), + "SIOCGIFBAUDRATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093395", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093469", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666299", token.INT, 0)), + "SIOCGIFCONFGLOB": reflect.ValueOf(constant.MakeFromLiteral("-1072666224", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071093470", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071093487", token.INT, 0)), + "SIOCGIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897896", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1068209771", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071093481", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071093418", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071093467", token.INT, 0)), + "SIOCGIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-1071093462", token.INT, 0)), + "SIOCGISNO": reflect.ValueOf(constant.MakeFromLiteral("-1071093397", token.INT, 0)), + "SIOCGLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452670", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-1073649317", token.INT, 0)), + "SIOCGNETOPT1": reflect.ValueOf(constant.MakeFromLiteral("-1071617663", token.INT, 0)), + "SIOCGNMTUS": reflect.ValueOf(constant.MakeFromLiteral("536897902", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSIZIFCONF": reflect.ValueOf(constant.MakeFromLiteral("1074030954", token.INT, 0)), + "SIOCGSRCFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1072142027", token.INT, 0)), + "SIOCGTUNEPHASE": reflect.ValueOf(constant.MakeFromLiteral("-1073452662", token.INT, 0)), + "SIOCGX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-1071093404", token.INT, 0)), + "SIOCIFATTACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359513", token.INT, 0)), + "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359514", token.INT, 0)), + "SIOCIFGETPKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359515", token.INT, 0)), + "SIOCIF_ATM_DARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359491", token.INT, 0)), + "SIOCIF_ATM_DUMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359493", token.INT, 0)), + "SIOCIF_ATM_GARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359490", token.INT, 0)), + "SIOCIF_ATM_IDLE": reflect.ValueOf(constant.MakeFromLiteral("-2145359494", token.INT, 0)), + "SIOCIF_ATM_SARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359489", token.INT, 0)), + "SIOCIF_ATM_SNMPARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359495", token.INT, 0)), + "SIOCIF_ATM_SVC": reflect.ValueOf(constant.MakeFromLiteral("-2145359492", token.INT, 0)), + "SIOCIF_ATM_UBR": reflect.ValueOf(constant.MakeFromLiteral("-2145359496", token.INT, 0)), + "SIOCIF_DEVHEALTH": reflect.ValueOf(constant.MakeFromLiteral("-2147194476", token.INT, 0)), + "SIOCIF_IB_ARP_INCOMP": reflect.ValueOf(constant.MakeFromLiteral("-2145359479", token.INT, 0)), + "SIOCIF_IB_ARP_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-2145359480", token.INT, 0)), + "SIOCIF_IB_CLEAR_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617647", token.INT, 0)), + "SIOCIF_IB_DEL_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359487", token.INT, 0)), + "SIOCIF_IB_DEL_PINFO": reflect.ValueOf(constant.MakeFromLiteral("-1071617648", token.INT, 0)), + "SIOCIF_IB_DUMP_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359488", token.INT, 0)), + "SIOCIF_IB_GET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359486", token.INT, 0)), + "SIOCIF_IB_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850485", token.INT, 0)), + "SIOCIF_IB_GET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), + "SIOCIF_IB_NOTIFY_ADDR_REM": reflect.ValueOf(constant.MakeFromLiteral("-1065850474", token.INT, 0)), + "SIOCIF_IB_RESET_STATS": reflect.ValueOf(constant.MakeFromLiteral("-1065850481", token.INT, 0)), + "SIOCIF_IB_RESIZE_CQ": reflect.ValueOf(constant.MakeFromLiteral("-2145359481", token.INT, 0)), + "SIOCIF_IB_SET_ARP": reflect.ValueOf(constant.MakeFromLiteral("-2145359485", token.INT, 0)), + "SIOCIF_IB_SET_PKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359484", token.INT, 0)), + "SIOCIF_IB_SET_PORT": reflect.ValueOf(constant.MakeFromLiteral("-2145359483", token.INT, 0)), + "SIOCIF_IB_SET_QKEY": reflect.ValueOf(constant.MakeFromLiteral("-2145359478", token.INT, 0)), + "SIOCIF_IB_SET_QSIZE": reflect.ValueOf(constant.MakeFromLiteral("-2145359482", token.INT, 0)), + "SIOCLISTIFVIPA": reflect.ValueOf(constant.MakeFromLiteral("536897860", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2142476002", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359552", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835316", token.INT, 0)), + "SIOCSIFADDRORI": reflect.ValueOf(constant.MakeFromLiteral("-2145097331", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835309", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2144835314", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2144835312", token.INT, 0)), + "SIOCSIFGIDLIST": reflect.ValueOf(constant.MakeFromLiteral("536897897", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2144835304", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2144835240", token.INT, 0)), + "SIOCSIFNETDUMP": reflect.ValueOf(constant.MakeFromLiteral("-2144835300", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2144835306", token.INT, 0)), + "SIOCSIFOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("-2144835287", token.INT, 0)), + "SIOCSIFSUBCHAN": reflect.ValueOf(constant.MakeFromLiteral("-2144835301", token.INT, 0)), + "SIOCSISNO": reflect.ValueOf(constant.MakeFromLiteral("-2144835220", token.INT, 0)), + "SIOCSLOADF": reflect.ValueOf(constant.MakeFromLiteral("-1073452669", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359554", token.INT, 0)), + "SIOCSNETOPT": reflect.ValueOf(constant.MakeFromLiteral("-2147391142", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359560", token.INT, 0)), + "SIOCSX25XLATE": reflect.ValueOf(constant.MakeFromLiteral("-2144835229", token.INT, 0)), + "SOCK_CONN_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_CKSUMRECV": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_KERNACCEPT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOMULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_NOREUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERID": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USE_IFBUFS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "S_BANDURG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_EMODFMT": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), + "S_ENFMT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ERROR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_HANGUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_HIPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_ICRYPTO": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFJOURNAL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMPX": reflect.ValueOf(constant.MakeFromLiteral("8704", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFPDIR": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "S_IFPSDIR": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "S_IFPSSDIR": reflect.ValueOf(constant.MakeFromLiteral("201326592", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFSYSEA": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "S_INPUT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ITCB": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "S_ITP": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXACL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "S_IXATTR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IXMOD": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_MSG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_RDBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_RDNORM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_RESERVED2": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "S_RESERVED3": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "S_RESERVED4": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "S_RESFMT1": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "S_RESFMT10": reflect.ValueOf(constant.MakeFromLiteral("872415232", token.INT, 0)), + "S_RESFMT11": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "S_RESFMT12": reflect.ValueOf(constant.MakeFromLiteral("1006632960", token.INT, 0)), + "S_RESFMT2": reflect.ValueOf(constant.MakeFromLiteral("335544320", token.INT, 0)), + "S_RESFMT3": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "S_RESFMT4": reflect.ValueOf(constant.MakeFromLiteral("469762048", token.INT, 0)), + "S_RESFMT5": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "S_RESFMT6": reflect.ValueOf(constant.MakeFromLiteral("603979776", token.INT, 0)), + "S_RESFMT7": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "S_RESFMT8": reflect.ValueOf(constant.MakeFromLiteral("738197504", token.INT, 0)), + "S_WRBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_WRNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("1028", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_24DAYS_WORTH_OF_SLOWTICKS": reflect.ValueOf(constant.MakeFromLiteral("4147200", token.INT, 0)), + "TCP_ACLADD": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCP_ACLBIND": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "TCP_ACLCLEAR": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_ACLDEL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_ACLDENY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_ACLFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_ACLGID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_ACLLS": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "TCP_ACLSUBNET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_ACLUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CWND_DF": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_CWND_IF": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_DELAY_ACK_FIN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_DELAY_ACK_SYN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_FASTNAME": reflect.ValueOf(constant.MakeFromLiteral("16844810", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_LSPRIV": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "TCP_LUID": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXDF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "TCP_MAXIF": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAXWINDOWSCALE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("1460", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NODELAYACK": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_NOREDUCE_CWND_EXIT_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_NOREDUCE_CWND_IN_FRXMT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_NOTENTER_SSTART": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_OPT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_RFC1323": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_SETPRIV": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "TCP_STDURG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP_OPTLEN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_UNSETPRIV": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359906", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359824", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033664", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033736", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("536900610", token.INT, 0)), + "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359934", token.INT, 0)), + "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359935", token.INT, 0)), + "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("1074033788", token.INT, 0)), + "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359933", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359915", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359916", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359908", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359812", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359917", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359920", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359913", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490897", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359809", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490890", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490889", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("18446744071562490997", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359926", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("18446744071562163314", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("18446744071562622055", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("18446744071562359910", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTRT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "VTDELAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERSE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "WPARSTART": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WPARSTOP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WPARTTYNAME": reflect.ValueOf(constant.MakeFromLiteral("\"Global\"", token.STRING, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid64_t": reflect.ValueOf((*syscall.Fsid64_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfMsgHdr": reflect.ValueOf((*syscall.IfMsgHdr)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "StTimespec_t": reflect.ValueOf((*syscall.StTimespec_t)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "Timezone": reflect.ValueOf((*syscall.Timezone)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_android_386.go b/stdlib/syscall/go1_19_syscall_android_386.go new file mode 100644 index 000000000..c9666dfd7 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_android_386.go @@ -0,0 +1,2247 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_android_amd64.go b/stdlib/syscall/go1_19_syscall_android_amd64.go new file mode 100644 index 000000000..7a7be83c7 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_android_amd64.go @@ -0,0 +1,2213 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_android_arm.go b/stdlib/syscall/go1_19_syscall_android_arm.go new file mode 100644 index 000000000..2914a818e --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_android_arm.go @@ -0,0 +1,2266 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), + "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_android_arm64.go b/stdlib/syscall/go1_19_syscall_android_arm64.go new file mode 100644 index 000000000..d32f4c1d1 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_android_arm64.go @@ -0,0 +1,2357 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_darwin_amd64.go b/stdlib/syscall/go1_19_syscall_darwin_amd64.go new file mode 100644 index 000000000..2588b031a --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_darwin_amd64.go @@ -0,0 +1,1951 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_darwin_arm64.go b/stdlib/syscall/go1_19_syscall_darwin_arm64.go new file mode 100644 index 000000000..a65d1d46b --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_darwin_arm64.go @@ -0,0 +1,1959 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "EQFULL": reflect.ValueOf(syscall.EQFULL), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), + "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_dragonfly_amd64.go b/stdlib/syscall/go1_19_syscall_dragonfly_amd64.go new file mode 100644 index 000000000..b782ca449 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_dragonfly_amd64.go @@ -0,0 +1,2014 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DEFAULTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MAX_CLONES": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_REDBACK_SMARTEDGE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DBF": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EASYNC": reflect.ValueOf(syscall.EASYNC), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNUSED94": reflect.ValueOf(syscall.EUNUSED94), + "EUNUSED95": reflect.ValueOf(syscall.EUNUSED95), + "EUNUSED96": reflect.ValueOf(syscall.EUNUSED96), + "EUNUSED97": reflect.ValueOf(syscall.EUNUSED97), + "EUNUSED98": reflect.ValueOf(syscall.EUNUSED98), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_EXCEPT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_MARKER": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_NODATA": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTEXIT_LWP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "EXTEXIT_PROC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXTEXIT_SETINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EXTEXIT_SIMPLE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("1150578", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NPOLLING": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_OACTIVE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POLLING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_POLLING_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CONTROL_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_CONTROL_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_INVAL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SETMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_SIZEALIGN": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_VPAGETABLE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_FMASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MSG_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_OOB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_FASYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_FBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_FBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "O_FMASK": reflect.ValueOf(constant.MakeFromLiteral("133955584", token.INT, 0)), + "O_FNONBLOCKING": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_FOFFSET": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNCWRITE": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_FUNBUFFERED": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_MAPONREAD": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_MPLS1": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_MPLS2": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTA_MPLS3": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPLSOPS": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_IWCAPSEGS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTV_IWMAXSEGS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTV_MSL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCKPT": reflect.ValueOf(syscall.SIGCKPT), + "SIGCKPTEXIT": reflect.ValueOf(syscall.SIGCKPTEXIT), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("3223349632", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFPOLLCPU": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFTSOLEN": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDSPACE": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHROOT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXEC_SYS_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_EXEC_SYS_UNREGISTER": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTACCEPT": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTCONNECT": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_EXTEXIT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_EXTPREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_EXTPREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_EXTPWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_EXTPWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FHSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATVFS": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_GETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_GET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("521", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LWP_GETTID": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_LWP_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOUNTCTL": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQ_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "SYS_MQ_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), + "SYS_MQ_RECEIVE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_MQ_SEND": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_MQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SET_TLS_AREA": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATVFS": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_SYS_CHECKPOINT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMTX_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_UMTX_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_USCHED_SET": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VARSYM_GET": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_VARSYM_LIST": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_VARSYM_SET": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VMM_GUEST_CTL": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), + "SYS_VMM_GUEST_SYNC_ADDR": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), + "SYS_VMSPACE_CREATE": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_VMSPACE_CTL": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_VMSPACE_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_VMSPACE_MCONTROL": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_VMSPACE_MMAP": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_VMSPACE_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_VMSPACE_PREAD": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_VMSPACE_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_VQUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_FASTKEEP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_MIN_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_SIGNATURE_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCISPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VCHECKPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_freebsd_386.go b/stdlib/syscall/go1_19_syscall_freebsd_386.go new file mode 100644 index 000000000..bfc1e1e02 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_freebsd_386.go @@ -0,0 +1,2255 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074283118", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148024941", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074295897", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_freebsd_amd64.go b/stdlib/syscall/go1_19_syscall_freebsd_amd64.go new file mode 100644 index 000000000..20cb10a7d --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_freebsd_amd64.go @@ -0,0 +1,2256 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_freebsd_arm.go b/stdlib/syscall/go1_19_syscall_freebsd_arm.go new file mode 100644 index 000000000..b1f74f53a --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_freebsd_arm.go @@ -0,0 +1,2255 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766777", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074020991", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1074545280", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148024962", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024955", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2148287105", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565392", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565391", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873848", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_GETRIGHTS": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS_CAP_NEW": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREEBSD6_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FREEBSD6_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FREEBSD6_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FREEBSD6_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_FREEBSD6_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_FREEBSD6_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS__UMTX_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_freebsd_arm64.go b/stdlib/syscall/go1_19_syscall_freebsd_arm64.go new file mode 100644 index 000000000..24954f7b5 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_freebsd_arm64.go @@ -0,0 +1,2301 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_ATM": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_INET6_SDP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_INET_SDP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NETGRAPH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SCLUSTER": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SLOW": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VENDOR00": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_VENDOR01": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_VENDOR02": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_VENDOR03": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_VENDOR04": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "AF_VENDOR05": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "AF_VENDOR06": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "AF_VENDOR07": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "AF_VENDOR08": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "AF_VENDOR09": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "AF_VENDOR10": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "AF_VENDOR11": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "AF_VENDOR12": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "AF_VENDOR13": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "AF_VENDOR14": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "AF_VENDOR15": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "AF_VENDOR16": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "AF_VENDOR17": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "AF_VENDOR18": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "AF_VENDOR19": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "AF_VENDOR20": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "AF_VENDOR21": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "AF_VENDOR22": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "AF_VENDOR23": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "AF_VENDOR24": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "AF_VENDOR25": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "AF_VENDOR26": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "AF_VENDOR27": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "AF_VENDOR28": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "AF_VENDOR29": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "AF_VENDOR30": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "AF_VENDOR31": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "AF_VENDOR32": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "AF_VENDOR33": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "AF_VENDOR34": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "AF_VENDOR35": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "AF_VENDOR36": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "AF_VENDOR37": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "AF_VENDOR38": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "AF_VENDOR39": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "AF_VENDOR40": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "AF_VENDOR41": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "AF_VENDOR42": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "AF_VENDOR43": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "AF_VENDOR44": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "AF_VENDOR45": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "AF_VENDOR46": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "AF_VENDOR47": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762812", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291065", token.INT, 0)), + "BIOCGETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("1074020989", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETZMAX": reflect.ValueOf(constant.MakeFromLiteral("1074283135", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074020995", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887930", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCROTZBUF": reflect.ValueOf(constant.MakeFromLiteral("1075331712", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETBUFMODE": reflect.ValueOf(constant.MakeFromLiteral("2147762814", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETFNR": reflect.ValueOf(constant.MakeFromLiteral("2148549250", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549243", token.INT, 0)), + "BIOCSETZBUF": reflect.ValueOf(constant.MakeFromLiteral("2149073537", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2147762820", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_BUFMODE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_BUFMODE_ZBUF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_T_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_T_BINTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("514", token.INT, 0)), + "BPF_T_BINTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "BPF_T_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_FLAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_FORMAT_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_MICROTIME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_T_MICROTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MICROTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_T_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "BPF_T_NANOTIME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_T_NANOTIME_FAST": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "BPF_T_NANOTIME_MONOTONIC_FAST": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "BPF_T_NONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_T_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DBUS": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_DVB_CI": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPFILTER": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_ATM_CEMIC": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_SRX_E2E": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_JUNIPER_VS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_PPP_WITHDIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MATCHING_MAX": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "DLT_MATCHING_MIN": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPEG_2_TS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_MUX27010": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "DLT_NETANALYZER": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "DLT_NETANALYZER_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "DLT_NFC_LLCP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "DLT_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "DLT_NG40": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PPP_WITH_DIRECTION": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_STANAG_5066_D_PDU": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECAPMODE": reflect.ValueOf(syscall.ECAPMODE), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOOFUS": reflect.ValueOf(syscall.EDOOFUS), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCAPABLE": reflect.ValueOf(syscall.ENOTCAPABLE), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_LIO": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_DROP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OGETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_OSETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_OSETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_UNLCKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("2199410", token.INT, 0)), + "IFF_CANTCONFIG": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DRV_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DRV_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_DYING": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PPROMISC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RENAMING": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SMART": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_IPXIP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OLD_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SKIP": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPPROTO_SPACER": reflect.ValueOf(constant.MakeFromLiteral("32767", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TLSP": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_TEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET3": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW3": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_FW_NAT_CFG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_FW_NAT_DEL": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IP_FW_NAT_GET_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IP_FW_NAT_GET_LOG": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_FW_TABLE_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_TABLE_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_TABLE_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_TABLE_GETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_FW_TABLE_LIST": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOURCE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_ONESBCAST": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_AUTOSYNC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_CORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_PROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_ALIGNED_SUPER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_NOCORE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_NOSYNC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_PREFAULT_READ": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_RESERVED0100": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLISTL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_IFMALIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_TTY_INIT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("268752904", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_GWFLAG_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLDATA": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_RNH_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_STICKY": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTV_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RT_CACHING_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RT_DEFAULT_FIB": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_NORTREF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLIBRT": reflect.ValueOf(syscall.SIGLIBRT), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151707146", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860635", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151707147", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223351824", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876111", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349535", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349546", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFIB": reflect.ValueOf(constant.MakeFromLiteral("3223349596", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("3223349536", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398136", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795323", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602460", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPRIVATE_0": reflect.ValueOf(constant.MakeFromLiteral("3223349584", token.INT, 0)), + "SIOCGPRIVATE_1": reflect.ValueOf(constant.MakeFromLiteral("3223349585", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607710", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607721", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFIB": reflect.ValueOf(constant.MakeFromLiteral("2149607773", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("2149607720", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFRVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCSIFVNET": reflect.ValueOf(constant.MakeFromLiteral("3223349594", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BINTIME": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LISTENINCQLEN": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_LISTENQLEN": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SO_LISTENQLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_NO_DDP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_NO_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_USER_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SYS_ABORT2": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("541", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_AIO_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("543", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_WAITCOMPLETE": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BINDAT": reflect.ValueOf(constant.MakeFromLiteral("538", token.INT, 0)), + "SYS_CAP_ENTER": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "SYS_CAP_FCNTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("537", token.INT, 0)), + "SYS_CAP_FCNTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "SYS_CAP_GETMODE": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "SYS_CAP_IOCTLS_GET": reflect.ValueOf(constant.MakeFromLiteral("535", token.INT, 0)), + "SYS_CAP_IOCTLS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("534", token.INT, 0)), + "SYS_CAP_RIGHTS_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("533", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("540", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETCPUCLOCKID2": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("509", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECTAT": reflect.ValueOf(constant.MakeFromLiteral("539", token.INT, 0)), + "SYS_CPUSET": reflect.ValueOf(constant.MakeFromLiteral("484", token.INT, 0)), + "SYS_CPUSET_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("487", token.INT, 0)), + "SYS_CPUSET_GETID": reflect.ValueOf(constant.MakeFromLiteral("486", token.INT, 0)), + "SYS_CPUSET_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("488", token.INT, 0)), + "SYS_CPUSET_SETID": reflect.ValueOf(constant.MakeFromLiteral("485", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EACCESS": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("489", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("490", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("491", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("550", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("492", token.INT, 0)), + "SYS_FFCLOCK_GETCOUNTER": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FFCLOCK_GETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_FFCLOCK_SETESTIMATE": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("493", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("480", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("546", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("494", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("523", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GSSD_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("505", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_JAIL": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_JAIL_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_JAIL_GET": reflect.ValueOf(constant.MakeFromLiteral("506", token.INT, 0)), + "SYS_JAIL_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("508", token.INT, 0)), + "SYS_JAIL_SET": reflect.ValueOf(constant.MakeFromLiteral("507", token.INT, 0)), + "SYS_KENV": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KLDFIND": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_KLDFIRSTMOD": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_KLDLOAD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_KLDNEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_KLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_KLDSYM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_KLDUNLOAD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KLDUNLOADF": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_KMQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_KMQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_KMQ_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_KMQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_KMQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_KMQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_KSEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_KSEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_KSEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_KSEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_KSEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_KSEM_POST": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_KSEM_TIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_KSEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_KSEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_KSEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_KTIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_KTIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_KTIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_KTIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_KTIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LGETFH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("495", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("478", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("496", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("497", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("498", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("477", token.INT, 0)), + "SYS_MODFIND": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MODFNEXT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MODNEXT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_MODSTAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_NFSTAT": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_NLM_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_NLSTAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_NMOUNT": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_NSTAT": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_NUMA_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("548", token.INT, 0)), + "SYS_NUMA_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("549", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("499", token.INT, 0)), + "SYS_OPENBSD_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_OVADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PDFORK": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "SYS_PDGETPID": reflect.ValueOf(constant.MakeFromLiteral("520", token.INT, 0)), + "SYS_PDKILL": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("542", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("531", token.INT, 0)), + "SYS_POSIX_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("530", token.INT, 0)), + "SYS_POSIX_OPENPT": reflect.ValueOf(constant.MakeFromLiteral("504", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("545", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROCCTL": reflect.ValueOf(constant.MakeFromLiteral("544", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("522", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_RCTL_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("528", token.INT, 0)), + "SYS_RCTL_GET_LIMITS": reflect.ValueOf(constant.MakeFromLiteral("527", token.INT, 0)), + "SYS_RCTL_GET_RACCT": reflect.ValueOf(constant.MakeFromLiteral("525", token.INT, 0)), + "SYS_RCTL_GET_RULES": reflect.ValueOf(constant.MakeFromLiteral("526", token.INT, 0)), + "SYS_RCTL_REMOVE_RULE": reflect.ValueOf(constant.MakeFromLiteral("529", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("501", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RTPRIO": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_RTPRIO_THREAD": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SCTP_GENERIC_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_SCTP_GENERIC_SENDMSG_IOV": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS_SCTP_PEELOFF": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("452", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETFIB": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETLOGINCLASS": reflect.ValueOf(constant.MakeFromLiteral("524", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("482", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("483", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_SIGQUEUE": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_SIGWAITINFO": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("502", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_THR_CREATE": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_THR_EXIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_THR_KILL": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_THR_KILL2": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_THR_NEW": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_THR_SELF": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_THR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_THR_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_THR_WAKE": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("479", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("503", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("547", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("532", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_YIELD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__UMTX_OP": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS___ACL_ACLCHECK_FD": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS___ACL_ACLCHECK_FILE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS___ACL_ACLCHECK_LINK": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS___ACL_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS___ACL_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS___ACL_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS___ACL_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___ACL_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS___ACL_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___ACL_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS___ACL_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___ACL_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___CAP_RIGHTS_GET": reflect.ValueOf(constant.MakeFromLiteral("515", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("510", token.INT, 0)), + "SYS___SETUGID": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofBpfZbuf": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofBpfZbufHeader": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CA_NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074033679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DCD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMASTER": reflect.ValueOf(constant.MakeFromLiteral("536900636", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("537162847", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VERASE2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WLINUXCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "BpfZbuf": reflect.ValueOf((*syscall.BpfZbuf)(nil)), + "BpfZbufHeader": reflect.ValueOf((*syscall.BpfZbufHeader)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_illumos_amd64.go b/stdlib/syscall/go1_19_syscall_illumos_amd64.go new file mode 100644 index 000000000..61a5a2a8c --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_illumos_amd64.go @@ -0,0 +1,1509 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !solaris +// +build go1.19,!solaris + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), + "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), + "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), + "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), + "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getexecname": reflect.ValueOf(syscall.Getexecname), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Gethostname": reflect.ValueOf(syscall.Gethostname), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), + "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), + "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), + "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), + "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), + "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), + "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), + "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), + "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), + "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), + "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), + "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), + "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), + "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mknod": reflect.ValueOf(syscall.Mknod), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), + "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), + "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLOST": reflect.ValueOf(syscall.SIGLOST), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIGXRES": reflect.ValueOf(syscall.SIGXRES), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), + "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), + "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), + "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), + "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), + "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), + "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), + "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), + "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), + "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), + "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), + "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), + "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), + "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), + "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), + "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), + "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), + "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), + "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), + "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), + "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), + "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), + "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), + "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), + "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), + "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), + "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), + "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), + "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), + "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), + "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), + "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), + "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), + "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), + "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), + "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), + "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), + "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), + "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), + "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), + "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), + "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), + "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), + "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), + "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), + "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), + "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), + "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), + "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), + "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), + "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), + "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), + "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), + "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), + "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), + "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), + "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), + "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), + "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), + "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), + "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), + "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), + "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), + "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), + "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), + "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), + "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), + "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), + "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), + "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), + "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), + "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), + "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), + "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), + "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), + "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), + "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), + "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), + "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), + "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), + "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), + "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), + "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), + "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), + "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), + "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), + "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), + "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), + "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), + "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), + "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), + "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), + "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), + "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), + "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), + "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), + "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), + "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), + "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), + "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), + "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), + "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), + "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), + "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), + "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_ios_amd64.go b/stdlib/syscall/go1_19_syscall_ios_amd64.go new file mode 100644 index 000000000..2588b031a --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_ios_amd64.go @@ -0,0 +1,1951 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_MARKDEPENDENCY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_READBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRITEBOOTSTRAP": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_RESOURCEEND": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860637", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860639", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565404", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222565403", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602462", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602499", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860674", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_RESTRICTIONS": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SO_RESTRICT_DENYIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RESTRICT_DENYOUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RESTRICT_DENYSET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTATV": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTATV": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKCOMPLEX": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STATV": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MINMSSOVERLOAD": reflect.ValueOf(constant.MakeFromLiteral("1000", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_ios_arm64.go b/stdlib/syscall/go1_19_syscall_ios_arm64.go new file mode 100644 index 000000000..a65d1d46b --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_ios_arm64.go @@ -0,0 +1,1959 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_NDRV": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PPP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_RESERVED_36": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_UTUN": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222028921", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020978", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020982", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762808", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762803", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762807", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADARCH": reflect.ValueOf(syscall.EBADARCH), + "EBADEXEC": reflect.ValueOf(syscall.EBADEXEC), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMACHO": reflect.ValueOf(syscall.EBADMACHO), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDEVERR": reflect.ValueOf(syscall.EDEVERR), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPOLICY": reflect.ValueOf(syscall.ENOPOLICY), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EPWROFF": reflect.ValueOf(syscall.EPWROFF), + "EQFULL": reflect.ValueOf(syscall.EQFULL), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHLIBVERS": reflect.ValueOf(syscall.ESHLIBVERS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_FS": reflect.ValueOf(constant.MakeFromLiteral("-9", token.INT, 0)), + "EVFILT_MACHPORT": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_THREADMARKER": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_USER": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "EVFILT_VM": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_OOBAND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_POLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "Exchangedata": reflect.ValueOf(syscall.Exchangedata), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_ADDFILESIGS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "F_ADDSIGS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "F_ALLOCATEALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_ALLOCATECONTIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_CHKCLEAN": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "F_FINDSIGS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "F_FLUSH_DATA": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_FREEZE_FS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "F_FULLFSYNC": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "F_GETCODEDIR": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETLKPID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "F_GETPATH_MTMINFO": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "F_GETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "F_GETPROTECTIONLEVEL": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "F_GLOBAL_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "F_LOG2PHYS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "F_LOG2PHYS_EXT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "F_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "F_NODIRECT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PATHPKG_CHECK": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "F_PEOFPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_PREALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_RDADVISE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "F_RDAHEAD": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETBACKINGSTORE": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETLKWTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETPROTECTIONCLASS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "F_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_SINGLE_WRITER": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "F_THAW_FS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "F_TRANSCODEKEY": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_VOLPOSMODE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getdtablesize": reflect.ValueOf(syscall.Getdtablesize), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ALTPHYS": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CELLULAR": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PDP": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LINKLOCALNETNUM": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_3PC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPPROTO_ADFS": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_AHIP": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPPROTO_APES": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IPPROTO_ARGUS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPPROTO_AX25": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IPPROTO_BHA": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPPROTO_BLT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPPROTO_BRSATMON": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPPROTO_CFTP": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPPROTO_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPPROTO_CMTP": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPPROTO_CPHB": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPPROTO_CPNX": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPPROTO_DDP": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPPROTO_DGP": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_EMCON": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GMTP": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HMP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IDPR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPPROTO_IDRP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IGP": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IPPROTO_IGRP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IPPROTO_IL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPPROTO_INLSP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_INP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPCV": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IPPROTO_IPEIP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPPC": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IRTP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPPROTO_KRYPTOLAN": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPPROTO_LARP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IPPROTO_LEAF1": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPPROTO_LEAF2": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MEAS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPPROTO_MHRP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPPROTO_MICP": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_MUX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NHRP": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_NSP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_NVPII": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPPROTO_OSPFIGP": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PGM": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IPPROTO_PIGP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PRM": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_PVP": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_RCCMON": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPPROTO_RDP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_RVD": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPPROTO_SATEXPAK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPPROTO_SATMON": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IPPROTO_SCCSP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_SDRP": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPPROTO_SEP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_SRPC": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IPPROTO_ST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPPROTO_SVMTP": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IPPROTO_SWIPE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPPROTO_TCF": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_TPXX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPPROTO_TRUNK1": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPPROTO_TRUNK2": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPPROTO_TTP": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VINES": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IPPROTO_VISA": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPPROTO_VMTP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IPPROTO_WBEXPAK": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IPPROTO_WBMON": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPPROTO_WSN": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPPROTO_XNET": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPPROTO_XTP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_2292NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_BINDV6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXOPTHDR": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IPV6_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IPV6_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IPV6_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IP_DUMMYNET_CONFIGURE": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IP_DUMMYNET_DEL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IP_DUMMYNET_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IP_DUMMYNET_GET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IP_FAITH": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IP_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IP_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IP_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_GROUP_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MAX_SOCK_MUTE_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MAX_SOCK_SRC_FILTER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_IFINDEX": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_VIF": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_NAT__XXX": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OLD_FW_ADD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_OLD_FW_DEL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IP_OLD_FW_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IP_OLD_FW_GET": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IP_OLD_FW_RESETLOG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IP_OLD_FW_ZERO": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RSVP_OFF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_RSVP_ON": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_RSVP_VIF_OFF": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_RSVP_VIF_ON": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_STRIPHDR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TRAFFIC_MGT_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_CAN_REUSE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_FREE_REUSABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_FREE_REUSE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_ZERO_WIRED_PAGES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_JIT": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NOCACHE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_RESERVED0080": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOF": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_HAVEMORE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_HOLD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_NEEDSA": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_RCVMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_SEND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_WAITSTREAM": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_DEACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_KILLPAGES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_DUMP2": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFLIST2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NET_RT_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TRASH": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ABSOLUTE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_BACKGROUND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_CRITICAL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXITSTATUS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "NOTE_EXIT_CSERROR": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "NOTE_EXIT_DECRYPTFAIL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "NOTE_EXIT_DETAIL": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "NOTE_EXIT_DETAIL_MASK": reflect.ValueOf(constant.MakeFromLiteral("458752", token.INT, 0)), + "NOTE_EXIT_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "NOTE_EXIT_REPARENTED": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FFAND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_FFCOPY": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "NOTE_FFLAGSMASK": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "NOTE_FFNOP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NOTE_FFOR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LEEWAY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_NONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_NSECONDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_REAP": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_SECONDS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRIGGER": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "NOTE_USECONDS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_VM_ERROR": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "NOTE_VM_PRESSURE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_VM_PRESSURE_SUDDEN_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_VM_PRESSURE_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALERT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "O_DP_GETRAWENCRYPTED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_EVTONLY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_POPUP": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_ATTACHEXC": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_DENY_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_FIRSTMACH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_FORCEQUOTA": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_READ_D": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_READ_I": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_READ_U": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_SIGEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_STEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_THUPDATE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_TRACE_ME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_WRITE_D": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_WRITE_I": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_WRITE_U": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_CPU_USAGE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONDEMNED": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_DELCLONE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_IFREF": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_IFSCOPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_PINNED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PRCLONING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_PROXY": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WASCLONED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DELMADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_GET2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_IFINFO2": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_NEWMADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_NEWMADDR2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCARPIPLL": reflect.ValueOf(constant.MakeFromLiteral("3223349544", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCAUTOADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349542", token.INT, 0)), + "SIOCAUTONETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607719", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607745", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBOND": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349595", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222038820", token.INT, 0)), + "SIOCGIFDEVMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349572", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFKPI": reflect.ValueOf(constant.MakeFromLiteral("3223349639", token.INT, 0)), + "SIOCGIFMAC": reflect.ValueOf(constant.MakeFromLiteral("3223349634", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224135992", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349555", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349568", token.INT, 0)), + "SIOCGIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349567", token.INT, 0)), + "SIOCGIFSTATUS": reflect.ValueOf(constant.MakeFromLiteral("3274795325", token.INT, 0)), + "SIOCGIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349631", token.INT, 0)), + "SIOCGIFWAKEFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349640", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("3223349624", token.INT, 0)), + "SIOCIFCREATE2": reflect.ValueOf(constant.MakeFromLiteral("3223349626", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301057", token.INT, 0)), + "SIOCRSLVMULTI": reflect.ValueOf(constant.MakeFromLiteral("3222300987", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFALTMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607749", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBOND": reflect.ValueOf(constant.MakeFromLiteral("2149607750", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607770", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFKPI": reflect.ValueOf(constant.MakeFromLiteral("2149607814", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607740", token.INT, 0)), + "SIOCSIFMAC": reflect.ValueOf(constant.MakeFromLiteral("2149607811", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607732", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704894", token.INT, 0)), + "SIOCSIFPHYS": reflect.ValueOf(constant.MakeFromLiteral("2149607734", token.INT, 0)), + "SIOCSIFVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607806", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_MAXADDRLEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_DONTTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LABEL": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LINGER_SEC": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SO_NKE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_NOADDRERR": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_NOTIFYCONFLICT": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SO_NP_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SO_NREAD": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_NUMRCVPKT": reflect.ValueOf(constant.MakeFromLiteral("4370", token.INT, 0)), + "SO_NWRITE": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERLABEL": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_RANDOMPORT": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_REUSESHAREUID": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_TIMESTAMP_MONOTONIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_UPCALLCLOSEWAIT": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_WANTMORE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_WANTOOBFLAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("404", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCESS_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_AIO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_AIO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_AIO_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_AIO_READ": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_AIO_RETURN": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_AIO_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_AIO_SUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_AIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_ATGETMSG": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_ATPGETREQ": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_ATPGETRSP": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_ATPSNDREQ": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_ATPSNDRSP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_ATPUTMSG": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_ATSOCKET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_AUDITCTL": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_AUDITON": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_AUDIT_SESSION_JOIN": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_AUDIT_SESSION_PORT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_AUDIT_SESSION_SELF": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BSDTHREAD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_BSDTHREAD_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_BSDTHREAD_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CHUD": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("399", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_CONNECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("409", token.INT, 0)), + "SYS_COPYFILE": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CSOPS": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_CSOPS_AUDITTOKEN": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXCHANGEDATA": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMOD_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FCNTL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("406", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_FFSCTL": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_FGETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FILEPORT_MAKEFD": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FILEPORT_MAKEPORT": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_FSETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSGETPATH": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_FSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("408", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_GETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_GETAUID": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_GETDIRENTRIES": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_GETDIRENTRIES64": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_GETDIRENTRIESATTR": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_GETDTABLESIZE": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETFSSTAT64": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETHOSTUUID": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_GETLCID": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_GETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_IDENTITYSVC": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_INITGROUPS": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPOLICYSYS": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_KAS_INFO": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_KDEBUG_TRACE": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_KEVENT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_LEDGER": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LIO_LISTIO": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_LSTAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_LSTAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MAXSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIR_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFO_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODWATCH": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_MSGRCV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_MSGSND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_MSGSYS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_MSYNC_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("405", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NFSCLNT": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPEN_DPROTECTED_NP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_OPEN_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_OPEN_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("398", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PID_HIBERNATE": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_PID_RESUME": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PID_SHUTDOWN_SOCKETS": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PID_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_POLL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_PREAD_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PROCESS_POLICY": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_PROC_INFO": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PSYNCH_CVBROAD": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_PSYNCH_CVCLRPREPOST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_PSYNCH_CVSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_PSYNCH_CVWAIT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_PSYNCH_MUTEXDROP": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSYNCH_MUTEXWAIT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PSYNCH_RW_DOWNGRADE": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_PSYNCH_RW_LONGRDLOCK": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_PSYNCH_RW_RDLOCK": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PSYNCH_RW_UNLOCK2": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PSYNCH_RW_UPGRADE": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_PSYNCH_RW_WRLOCK": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_PSYNCH_RW_YIELDWRLOCK": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_PWRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_READV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_READ_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("396", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVFROM_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("403", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RECVMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("401", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SEARCHFS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_SELECT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("407", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SEMSYS": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_SEM_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SEM_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SEM_GETVALUE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SEM_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SEM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SEM_POST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SEM_TRYWAIT": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_SEM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SEM_WAIT": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SEM_WAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDMSG_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("402", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SENDTO_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_SETATTRLIST": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SETAUDIT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SETAUID": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SETLCID": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETPRIVEXEC": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSGROUPS": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTID": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_SETTID_WITH_PID": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETWGROUPS": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_SHARED_REGION_CHECK_NP": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SHARED_REGION_MAP_AND_SLIDE_NP": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SHMSYS": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_SHM_OPEN": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SHM_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SIGSUSPEND_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STACK_SNAPSHOT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_STAT64_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_STAT_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_THREAD_SELFID": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMASK_EXTENDED": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_VM_PRESSURE_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WAIT4_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("400", token.INT, 0)), + "SYS_WAITEVENT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_WAITID_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_WATCHEVENT": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_WORKQ_KERNRETURN": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_WORKQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_WRITEV_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_WRITE_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("397", token.INT, 0)), + "SYS___DISABLE_THREADSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS___MAC_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS___MAC_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS___MAC_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("388", token.INT, 0)), + "SYS___MAC_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS___MAC_GET_LCID": reflect.ValueOf(constant.MakeFromLiteral("391", token.INT, 0)), + "SYS___MAC_GET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("392", token.INT, 0)), + "SYS___MAC_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS___MAC_GET_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS___MAC_GET_PID": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS___MAC_GET_PROC": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS___MAC_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS___MAC_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("389", token.INT, 0)), + "SYS___MAC_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS___MAC_SET_LCTX": reflect.ValueOf(constant.MakeFromLiteral("393", token.INT, 0)), + "SYS___MAC_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS___MAC_SET_PROC": reflect.ValueOf(constant.MakeFromLiteral("387", token.INT, 0)), + "SYS___MAC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS___PTHREAD_CANCELED": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS___PTHREAD_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS___PTHREAD_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS___PTHREAD_KILL": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS___PTHREAD_MARKCANCEL": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS___PTHREAD_SIGMASK": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS___SEMWAIT_SIGNAL_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS___SIGWAIT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SIGWAIT_NOCANCEL": reflect.ValueOf(constant.MakeFromLiteral("422", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setprivexec": reflect.ValueOf(syscall.Setprivexec), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfmaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofIfmaMsghdr2": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONNECTIONTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_ENABLE_ECN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "TCP_MAXHLEN": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "TCP_MAXOLEN": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOOPT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "TCP_RXT_CONNDROPTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_RXT_FINDROP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TCP_SENDMOREACKS": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCDSIMICROCODE": reflect.ValueOf(constant.MakeFromLiteral("536900693", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033750", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1078490131", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCIXOFF": reflect.ValueOf(constant.MakeFromLiteral("536900736", token.INT, 0)), + "TIOCIXON": reflect.ValueOf(constant.MakeFromLiteral("536900737", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("1074033754", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033667", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775492", token.INT, 0)), + "TIOCMSDTRWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775579", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTYGNAME": reflect.ValueOf(constant.MakeFromLiteral("1082160211", token.INT, 0)), + "TIOCPTYGRANT": reflect.ValueOf(constant.MakeFromLiteral("536900692", token.INT, 0)), + "TIOCPTYUNLK": reflect.ValueOf(constant.MakeFromLiteral("536900690", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCONS": reflect.ValueOf(constant.MakeFromLiteral("536900707", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDRAINWAIT": reflect.ValueOf(constant.MakeFromLiteral("2147775575", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2152231956", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2152231958", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2152231957", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820185", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Undelete": reflect.ValueOf(syscall.Undelete), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Fbootstraptransfer_t": reflect.ValueOf((*syscall.Fbootstraptransfer_t)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "Fstore_t": reflect.ValueOf((*syscall.Fstore_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "IfmaMsghdr": reflect.ValueOf((*syscall.IfmaMsghdr)(nil)), + "IfmaMsghdr2": reflect.ValueOf((*syscall.IfmaMsghdr2)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "InterfaceMulticastAddrMessage": reflect.ValueOf((*syscall.InterfaceMulticastAddrMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Log2phys_t": reflect.ValueOf((*syscall.Log2phys_t)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Radvisory_t": reflect.ValueOf((*syscall.Radvisory_t)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_js_wasm.go b/stdlib/syscall/go1_19_syscall_js_wasm.go new file mode 100644 index 000000000..3fd223617 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_js_wasm.go @@ -0,0 +1,368 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Connect": reflect.ValueOf(syscall.Connect), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECASECLASH": reflect.ValueOf(syscall.ECASECLASH), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELBIN": reflect.ValueOf(syscall.ELBIN), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENMFILE": reflect.ValueOf(syscall.ENMFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSHARE": reflect.ValueOf(syscall.ENOSHARE), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "F_CNVT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RGETLK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_RSETLK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_RSETLKW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CREATE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("500", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFBOUNDSOCK": reflect.ValueOf(constant.MakeFromLiteral("77824", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFCOND": reflect.ValueOf(constant.MakeFromLiteral("90112", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFDSOCK": reflect.ValueOf(constant.MakeFromLiteral("69632", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFMUTEX": reflect.ValueOf(constant.MakeFromLiteral("86016", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSEMA": reflect.ValueOf(constant.MakeFromLiteral("94208", token.INT, 0)), + "S_IFSHM": reflect.ValueOf(constant.MakeFromLiteral("81920", token.INT, 0)), + "S_IFSHM_SYSV": reflect.ValueOf(constant.MakeFromLiteral("98304", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFSOCKADDR": reflect.ValueOf(constant.MakeFromLiteral("73728", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_UNSUP": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "SetReadDeadline": reflect.ValueOf(syscall.SetReadDeadline), + "SetWriteDeadline": reflect.ValueOf(syscall.SetWriteDeadline), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "Socket": reflect.ValueOf(syscall.Socket), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Stdin": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Stdout": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "StopIO": reflect.ValueOf(syscall.StopIO), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_386.go b/stdlib/syscall/go1_19_syscall_linux_386.go new file mode 100644 index 000000000..286210b63 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_386.go @@ -0,0 +1,2247 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MADVISE1": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_VM86OLD": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_amd64.go b/stdlib/syscall/go1_19_syscall_linux_amd64.go new file mode 100644 index 000000000..426c0cc71 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_amd64.go @@ -0,0 +1,2213 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETFPXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_ARCH_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_EPOLL_CTL_OLD": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_EPOLL_WAIT_OLD": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_arm.go b/stdlib/syscall/go1_19_syscall_linux_arm.go new file mode 100644 index 000000000..1edbf98e8 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_arm.go @@ -0,0 +1,2266 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_PHY": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELF_NGREG": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ELF_PRARGSZ": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CLEAR_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SECCOMP_FILTER_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECCOMP_FILTER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SETCRUNCHREGS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETHBPREGS": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETVFPREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SETWMMXREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SET_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_DATA_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65540", token.INT, 0)), + "PT_TEXT_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PT_TEXT_END_ADDR": reflect.ValueOf(constant.MakeFromLiteral("65544", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_ARM_FADVISE64_64": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_ARM_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_CHOWN32": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEGID32": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETEUID32": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGID32": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_GETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETUID32": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LCHOWN32": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OABI_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSGID32": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETFSUID32": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGID32": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETGROUPS32": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETREGID32": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETRESGID32": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETRESUID32": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETREUID32": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETUID32": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_SYSCALL_BASE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287829", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287830", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_arm64.go b/stdlib/syscall/go1_19_syscall_linux_arm64.go new file mode 100644 index 000000000..20b103d19 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_arm64.go @@ -0,0 +1,2357 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_loong64.go b/stdlib/syscall/go1_19_syscall_linux_loong64.go new file mode 100644 index 000000000..91999ca64 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_loong64.go @@ -0,0 +1,2695 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IB": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KCM": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "AF_MCTP": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_QIPCRTR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SMC": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_XDP": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_MCTP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_RAWIP": reflect.ValueOf(constant.MakeFromLiteral("519", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_VSOCKMON": reflect.ValueOf(constant.MakeFromLiteral("826", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_ARGS_SIZE_VER0": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CLONE_ARGS_SIZE_VER1": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "CLONE_ARGS_SIZE_VER2": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_CLEAR_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_INTO_CGROUP": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWCGROUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWTIME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PIDFD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLEXCLUSIVE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CFM": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_DSA_8021Q": reflect.ValueOf(constant.MakeFromLiteral("56027", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_ERSPAN": reflect.ValueOf(constant.MakeFromLiteral("35006", token.INT, 0)), + "ETH_P_ERSPAN2": reflect.ValueOf(constant.MakeFromLiteral("8939", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_HSR": reflect.ValueOf(constant.MakeFromLiteral("35119", token.INT, 0)), + "ETH_P_IBOE": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IFE": reflect.ValueOf(constant.MakeFromLiteral("60734", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MACSEC": reflect.ValueOf(constant.MakeFromLiteral("35045", token.INT, 0)), + "ETH_P_MAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "ETH_P_MCTP": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MRP": reflect.ValueOf(constant.MakeFromLiteral("35043", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_NCSI": reflect.ValueOf(constant.MakeFromLiteral("35064", token.INT, 0)), + "ETH_P_NSH": reflect.ValueOf(constant.MakeFromLiteral("35151", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PREAUTH": reflect.ValueOf(constant.MakeFromLiteral("35015", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_REALTEK": reflect.ValueOf(constant.MakeFromLiteral("34969", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_TSN": reflect.ValueOf(constant.MakeFromLiteral("8944", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_ADD_SEALS": reflect.ValueOf(constant.MakeFromLiteral("1033", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GET_FILE_RW_HINT": reflect.ValueOf(constant.MakeFromLiteral("1037", token.INT, 0)), + "F_GET_RW_HINT": reflect.ValueOf(constant.MakeFromLiteral("1035", token.INT, 0)), + "F_GET_SEALS": reflect.ValueOf(constant.MakeFromLiteral("1034", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SEAL_FUTURE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_SEAL_GROW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SEAL_SEAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SEAL_SHRINK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SEAL_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SET_FILE_RW_HINT": reflect.ValueOf(constant.MakeFromLiteral("1038", token.INT, 0)), + "F_SET_RW_HINT": reflect.ValueOf(constant.MakeFromLiteral("1036", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NAPI": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_NAPI_FRAGS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MASK_CREATE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERNET": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MPTCP": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADDR_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IPV6_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVERR_RFC4884": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPV6_RECVFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_ROUTER_ALERT_ISOLATE": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BIND_ADDRESS_NO_PORT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVERR_RFC4884": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_COLD": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_KEEPONFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_PAGEOUT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "MADV_POPULATE_READ": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "MADV_POPULATE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MADV_WIPEONFORK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FIXED_NOREPLACE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_SHARED_VALIDATE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_SYNC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MCL_ONFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_BATCH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MSG_ZEROCOPY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_LAZYTIME": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOSYMFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("41943121", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CAP_ACK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_EXT_ACK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_GET_STRICT_CHK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_LISTEN_ALL_NSID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_LIST_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SMC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK_TLVS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CAPPED": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_FILTERED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_NONREC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CBPF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_DATA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PACKET_FANOUT_EBPF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_FLAG_UNIQUEID": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_IGNORE_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_ROLLOVER_STATS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CAP_AMBIENT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "PR_CAP_AMBIENT_CLEAR_ALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_CAP_AMBIENT_IS_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_CAP_AMBIENT_LOWER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_CAP_AMBIENT_RAISE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "PR_GET_IO_FLUSHER": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_SPECULATION_CTRL": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "PR_GET_TAGGED_ADDR_CTRL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PR_MTE_TAG_MASK": reflect.ValueOf(constant.MakeFromLiteral("524280", token.INT, 0)), + "PR_MTE_TAG_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_MTE_TCF_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_MTE_TCF_MASK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_MTE_TCF_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MTE_TCF_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MTE_TCF_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_PAC_APDAKEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_PAC_APDBKEY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_PAC_APGAKEY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_PAC_APIAKEY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_PAC_APIBKEY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_PAC_GET_ENABLED_KEYS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "PR_PAC_RESET_KEYS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "PR_PAC_SET_ENABLED_KEYS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "PR_SCHED_CORE": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "PR_SCHED_CORE_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SCHED_CORE_GET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SCHED_CORE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SCHED_CORE_SCOPE_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SCHED_CORE_SCOPE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SCHED_CORE_SCOPE_THREAD_GROUP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SCHED_CORE_SHARE_FROM": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SCHED_CORE_SHARE_TO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "PR_SET_IO_FLUSHER": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_SPECULATION_CTRL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "PR_SET_SYSCALL_USER_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "PR_SET_TAGGED_ADDR_CTRL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_VMA": reflect.ValueOf(constant.MakeFromLiteral("1398164801", token.INT, 0)), + "PR_SET_VMA_ANON_NAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SPEC_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SPEC_DISABLE_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_SPEC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SPEC_FORCE_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SPEC_INDIRECT_BRANCH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SPEC_L1D_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SPEC_NOT_AFFECTED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SPEC_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SPEC_STORE_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SVE_GET_VL": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "PR_SVE_SET_VL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "PR_SVE_SET_VL_ONEXEC": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_SVE_VL_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_SVE_VL_LEN_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "PR_SYS_DISPATCH_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_SYS_DISPATCH_ON": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TAGGED_ADDR_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENTMSG_SYSCALL_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENTMSG_SYSCALL_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_RSEQ_CONFIGURATION": reflect.ValueOf(constant.MakeFromLiteral("16911", token.INT, 0)), + "PTRACE_GET_SYSCALL_INFO": reflect.ValueOf(constant.MakeFromLiteral("16910", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("3145983", token.INT, 0)), + "PTRACE_O_SUSPEND_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SECCOMP_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("16908", token.INT, 0)), + "PTRACE_SECCOMP_GET_METADATA": reflect.ValueOf(constant.MakeFromLiteral("16909", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_SYSCALL_INFO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_SYSCALL_INFO_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_SYSCALL_INFO_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PTRACE_SYSCALL_INFO_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_SYSEMU": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PTRACE_SYSEMU_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("18446744073709551615", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FASTOPEN_NO_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_MASK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELCHAIN": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELLINKPROP": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELNETCONF": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "RTM_DELNEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "RTM_DELNEXTHOPBUCKET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_DELVLAN": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_FIB_MATCH": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTM_F_LOOKUP_TABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTM_F_OFFLOAD_FAILED": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_F_TRAP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETCHAIN": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETLINKPROP": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETNEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "RTM_GETNEXTHOPBUCKET": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETSTATS": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_GETVLAN": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWCACHEREPORT": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "RTM_NEWCHAIN": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWLINKPROP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWNEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "RTM_NEWNEXTHOPBUCKET": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "RTM_NEWNVLAN": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWSTATS": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_COMPARE_MASK": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_LINKDOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNH_F_TRAP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTNH_F_UNRESOLVED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTPROT_BGP": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_EIGRP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_ISIS": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "RTPROT_KEEPALIVED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_OPENR": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "RTPROT_OSPF": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_RIP": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPING_OPT_STATS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SCM_TIMESTAMPING_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_TXTIME": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMPNS_OLD": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCGSTAMP_OLD": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_BUF_LOCK_MASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RCVBUF_LOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_SNDBUF_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ALG": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SOL_CAIF": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SOL_DCCP": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_IUCV": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SOL_KCM": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SOL_LLC": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SOL_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SOL_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SOL_NFC": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_PNPIPE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SOL_PPPOL2TP": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_RDS": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SOL_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_TIPC": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SOL_TLS": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOL_XDP": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_ATTACH_REUSEPORT_CBPF": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SO_ATTACH_REUSEPORT_EBPF": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BINDTOIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUF_LOCK": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_BUSY_POLL_BUDGET": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SO_CNX_ADVICE": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SO_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DETACH_REUSEPORT_BPF": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SO_INCOMING_NAPI_ID": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_MEMINFO": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SO_NETNS_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERGROUPS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PREFER_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_RCVTIMEO_NEW": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SO_RCVTIMEO_OLD": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_RESERVE_MEM": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_SNDTIMEO_NEW": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SO_SNDTIMEO_OLD": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPING_NEW": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SO_TIMESTAMPING_OLD": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TIMESTAMPNS_NEW": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_TIMESTAMPNS_OLD": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TIMESTAMP_NEW": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SO_TIMESTAMP_OLD": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TXTIME": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SO_ZEROCOPY": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CLOSE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_COPY_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EPOLL_PWAIT2": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FACCESSAT2": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSCONFIG": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSMOUNT": reflect.ValueOf(constant.MakeFromLiteral("432", token.INT, 0)), + "SYS_FSOPEN": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_FSPICK": reflect.ValueOf(constant.MakeFromLiteral("433", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_FUTEX_WAITV": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_PGETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_IO_URING_ENTER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_IO_URING_REGISTER": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_IO_URING_SETUP": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_FILE_LOAD": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LANDLOCK_ADD_RULE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_LANDLOCK_CREATE_RULESET": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_LANDLOCK_RESTRICT_SELF": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMBARRIER": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCK2": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOUNT_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS_MOVE_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPENAT2": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_OPEN_TREE": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIDFD_GETFD": reflect.ValueOf(constant.MakeFromLiteral("438", token.INT, 0)), + "SYS_PIDFD_OPEN": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS_PIDFD_SEND_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PKEY_ALLOC": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PKEY_FREE": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_PKEY_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PREADV2": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_PROCESS_MRELEASE": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_PWRITEV2": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_QUOTACTL_FD": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RSEQ": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_MEMPOLICY_HOME_NODE": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_STATX": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_USERFAULTFD": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CC_INFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCP_CM_INQ": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_FASTOPEN_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "TCP_FASTOPEN_KEY": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_FASTOPEN_NO_COOKIE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_INQ": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_EXT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_MD5SIG_FLAG_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCP_REPAIR_OFF_NO_WP": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "TCP_REPAIR_ON": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_REPAIR_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "TCP_SAVED_SYN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_SAVE_SYN": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_TX_DELAY": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "TCP_ULP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCP_ZEROCOPY_RECEIVE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGISO7816": reflect.ValueOf(constant.MakeFromLiteral("2150126658", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGPTPEER": reflect.ValueOf(constant.MakeFromLiteral("21569", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSISO7816": reflect.ValueOf(constant.MakeFromLiteral("3223868483", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETDEVNETNS": reflect.ValueOf(constant.MakeFromLiteral("21731", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("2147767519", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), + "TUNSETCARRIER": reflect.ValueOf(constant.MakeFromLiteral("1074025698", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETFILTEREBPF": reflect.ValueOf(constant.MakeFromLiteral("2147767521", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETSTEERINGEBPF": reflect.ValueOf(constant.MakeFromLiteral("2147767520", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("1074025694", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_mips.go b/stdlib/syscall/go1_19_syscall_linux_mips.go new file mode 100644 index 000000000..cdada9d07 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_mips.go @@ -0,0 +1,2451 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), + "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), + "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), + "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), + "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), + "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), + "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), + "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), + "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), + "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), + "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_mips64.go b/stdlib/syscall/go1_19_syscall_linux_mips64.go new file mode 100644 index 000000000..c2adabf12 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_mips64.go @@ -0,0 +1,2400 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), + "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), + "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_mips64le.go b/stdlib/syscall/go1_19_syscall_linux_mips64le.go new file mode 100644 index 000000000..c2adabf12 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_mips64le.go @@ -0,0 +1,2400 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("5042", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("5293", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("5020", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("5158", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("5239", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("5154", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5176", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("5037", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("5048", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("5315", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("5012", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("5198", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("5197", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("5123", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("5124", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("5078", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("5088", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("5090", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("5156", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("5300", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("5223", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5222", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5224", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5221", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("5055", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("5003", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("5041", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("5083", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5167", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5169", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5031", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("5032", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("5286", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5207", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("5285", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("5208", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("5272", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("5209", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("5278", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("5284", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("5057", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("5316", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("5058", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("5205", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("5259", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("5215", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("5279", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5295", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("5296", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("5079", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("5089", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("5258", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5091", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("5250", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("5070", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("5073", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5185", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5307", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5188", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("5071", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("5056", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5191", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5182", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("5005", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("5135", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("5072", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5075", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("5194", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("5251", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("5271", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("5077", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("5076", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("5308", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("5106", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("5105", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("5102", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5113", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5035", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("5051", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("5119", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("5109", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("5038", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("5174", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("5108", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5137", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("5313", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5118", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5116", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5095", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("5096", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("5122", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("5050", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5054", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("5178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5094", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("5100", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5183", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("5170", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5228", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5269", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5168", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5244", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("5243", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("5288", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("5245", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("5015", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("5274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("5273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("5204", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("5201", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("5202", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("5200", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("5203", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("5306", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("5270", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("5241", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("5060", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("5092", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5184", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("5084", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("5255", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("5049", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5186", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("5187", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("5206", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5190", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("5008", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5181", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("5006", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("5027", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("5227", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5314", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5246", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("5026", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("5081", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("5248", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("5131", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("5249", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("5146", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5148", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("5009", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("5160", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5267", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("5010", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("5235", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("5234", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5230", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("5233", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("5232", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5231", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("5024", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("5069", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("5066", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("5068", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("5067", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("5025", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("5147", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("5149", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("5011", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5298", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("5034", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("5252", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("5173", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5002", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("5247", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("5299", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("5033", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5292", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("5132", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("5021", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("5287", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("5151", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("5007", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("5261", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("5153", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("5016", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("5289", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("5297", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("5304", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5305", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("5260", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("5099", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("5175", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("5017", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("5290", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("5171", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("5172", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("5000", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("5179", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("5087", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5257", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("5018", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("5164", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("5044", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("5294", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("5046", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("5210", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("5189", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("5080", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("5254", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("5311", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("5240", token.INT, 0)), + "SYS_RESERVED177": reflect.ValueOf(constant.MakeFromLiteral("5177", token.INT, 0)), + "SYS_RESERVED193": reflect.ValueOf(constant.MakeFromLiteral("5193", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("5213", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("5082", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("5013", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("5125", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("5014", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5127", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("5211", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("5128", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("5126", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("5291", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5196", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("5310", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5140", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5142", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("5143", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("5144", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("5145", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("5195", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("5309", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("5139", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("5141", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("5023", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("5312", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("5064", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("5062", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("5063", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("5214", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("5039", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("5302", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("5045", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("5043", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("5166", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("5121", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("5120", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("5104", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("5114", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("5165", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("5036", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("5303", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("5107", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("5138", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("5112", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("5117", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("5115", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("5111", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("5155", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("5110", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("5053", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("5159", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("5103", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5180", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("5229", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("5268", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("5242", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("5212", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("5029", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("5030", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("5065", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("5028", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("5047", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("5129", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("5276", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("5283", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("5040", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("5052", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("5263", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("5004", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("5134", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("5163", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("5162", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("5086", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5256", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("5157", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("5301", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("5264", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("5136", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("5097", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("5101", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("5199", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("5265", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("5225", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("5277", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5280", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5281", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5282", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("5216", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("5220", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("5219", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("5218", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("5217", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("5098", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("5192", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("5074", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("5093", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("5161", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("5061", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("5085", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("5253", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("5262", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("5133", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("5130", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("5275", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("5226", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("5150", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("5266", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("5236", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("5059", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("5237", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("5001", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("5019", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("5022", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("5152", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_mipsle.go b/stdlib/syscall/go1_19_syscall_linux_mipsle.go new file mode 100644 index 000000000..cdada9d07 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_mipsle.go @@ -0,0 +1,2451 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINIT": reflect.ValueOf(syscall.EINIT), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMDEV": reflect.ValueOf(syscall.EREMDEV), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16400", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_GET_THREAD_AREA_3264": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PTRACE_GET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_3264": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_3264": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SET_WATCH_REGS": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STYLE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_64_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("4168", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("4334", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("4033", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("4051", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("4280", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("4124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("4027", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4169", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("4017", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("4045", token.INT, 0)), + "SYS_CACHECTL": reflect.ValueOf(constant.MakeFromLiteral("4148", token.INT, 0)), + "SYS_CACHEFLUSH": reflect.ValueOf(constant.MakeFromLiteral("4147", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("4204", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("4205", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("4012", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("4015", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("4202", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("4061", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("4341", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("4264", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4263", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4265", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4262", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("4120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4006", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("4170", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("4008", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("4041", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("4063", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("4327", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4248", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("4326", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("4249", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("4313", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("4250", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("4319", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("4325", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("4011", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("4001", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("4246", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("4300", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("4254", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("4320", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4336", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("4337", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("4299", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("4291", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("4055", token.INT, 0)), + "SYS_FCNTL64": reflect.ValueOf(constant.MakeFromLiteral("4220", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("4152", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4229", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4232", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("4143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("4002", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4235", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4226", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SYS_FSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4215", token.INT, 0)), + "SYS_FSTATAT64": reflect.ValueOf(constant.MakeFromLiteral("4293", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("4256", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("4035", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4093", token.INT, 0)), + "SYS_FTRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4212", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("4238", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("4292", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("4312", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("4203", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("4141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("4219", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("4050", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("4049", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("4047", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4080", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("4171", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("4065", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("4020", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("4208", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("4064", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4191", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4186", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4076", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("4077", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("4151", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("4172", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4173", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("4222", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4078", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("4024", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4227", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4269", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("4032", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4285", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("4284", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("4329", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("4286", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("4054", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("4315", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("4314", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("4245", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("4242", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4243", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("4241", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("4244", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("4311", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("4282", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("4037", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("4016", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4228", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("4009", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("4296", token.INT, 0)), + "SYS_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("4174", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4230", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("4231", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("4053", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("4247", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4234", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("4019", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4225", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SYS_LSTAT64": reflect.ValueOf(constant.MakeFromLiteral("4214", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("4218", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("4268", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4287", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("4217", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("4039", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("4289", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("4014", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("4290", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("4154", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4156", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("4090", token.INT, 0)), + "SYS_MMAP2": reflect.ValueOf(constant.MakeFromLiteral("4210", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("4123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("4021", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4308", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("4125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("4056", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("4276", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("4275", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4271", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("4274", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("4273", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4272", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("4167", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("4144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("4155", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("4157", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("4091", token.INT, 0)), + "SYS_N32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4310", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4339", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("4166", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("4189", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("4034", token.INT, 0)), + "SYS_O32_LINUX_SYSCALLS": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4005", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("4288", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("4340", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("4029", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("4333", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("4136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("4042", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("4328", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("4216", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("4188", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("4302", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("4192", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("4200", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("4330", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("4338", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("4345", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4346", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("4044", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("4301", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("4026", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("4209", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("4201", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("4331", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("4187", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("4003", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("4223", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("4089", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("4085", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4298", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("4145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("4088", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("4175", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("4176", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("4335", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("4177", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("4251", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("4233", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("4038", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("4295", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("4281", token.INT, 0)), + "SYS_RESERVED221": reflect.ValueOf(constant.MakeFromLiteral("4221", token.INT, 0)), + "SYS_RESERVED82": reflect.ValueOf(constant.MakeFromLiteral("4082", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4253", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("4040", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4194", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4196", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4195", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4198", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4193", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4199", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("4197", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("4332", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4240", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4159", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4161", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("4163", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("4164", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("4165", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("4239", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("4158", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("4160", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("4162", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("4178", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("4207", token.INT, 0)), + "SYS_SENDFILE64": reflect.ValueOf(constant.MakeFromLiteral("4237", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("4343", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("4179", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("4180", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("4121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("4139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("4138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("4046", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("4081", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("4074", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("4344", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("4057", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("4071", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("4190", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("4185", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("4070", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("4075", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("4066", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("4181", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("4079", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("4023", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("4224", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("4270", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("4309", token.INT, 0)), + "SYS_SET_THREAD_AREA": reflect.ValueOf(constant.MakeFromLiteral("4283", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("4252", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("4068", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("4182", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("4067", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("4206", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("4048", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("4317", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("4324", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("4073", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("4126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("4072", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("4183", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("4184", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4304", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("4069", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SYS_STAT64": reflect.ValueOf(constant.MakeFromLiteral("4213", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("4255", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("4025", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("4031", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("4087", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("4083", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4297", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4036", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("4342", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("4305", token.INT, 0)), + "SYS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("4000", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("4135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SYS_SYSMIPS": reflect.ValueOf(constant.MakeFromLiteral("4149", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("4306", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("4266", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("4013", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("4318", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4321", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4322", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4323", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("4257", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4261", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4260", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("4259", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("4258", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("4043", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("4236", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("4092", token.INT, 0)), + "SYS_TRUNCATE64": reflect.ValueOf(constant.MakeFromLiteral("4211", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("4058", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("4060", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4022", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("4052", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("4122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("4010", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("4294", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("4303", token.INT, 0)), + "SYS_UNUSED109": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SYS_UNUSED150": reflect.ValueOf(constant.MakeFromLiteral("4150", token.INT, 0)), + "SYS_UNUSED18": reflect.ValueOf(constant.MakeFromLiteral("4018", token.INT, 0)), + "SYS_UNUSED28": reflect.ValueOf(constant.MakeFromLiteral("4028", token.INT, 0)), + "SYS_UNUSED59": reflect.ValueOf(constant.MakeFromLiteral("4059", token.INT, 0)), + "SYS_UNUSED84": reflect.ValueOf(constant.MakeFromLiteral("4084", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("4086", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("4062", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("4030", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("4316", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("4267", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("4307", token.INT, 0)), + "SYS_VSERVER": reflect.ValueOf(constant.MakeFromLiteral("4277", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("4278", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("4007", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4004", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("4146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("4140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("4142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("4153", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775608", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21650", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21643", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21636", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21633", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("18047", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21635", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21649", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21617", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29810", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21616", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21632", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21640", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21646", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21647", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21645", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21641", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21648", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21642", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21644", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21637", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21634", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21618", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029653", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148029654", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074287835", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_ppc64.go b/stdlib/syscall/go1_19_syscall_linux_ppc64.go new file mode 100644 index 000000000..4042cc4bc --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_ppc64.go @@ -0,0 +1,2491 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPOLL_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_ppc64le.go b/stdlib/syscall/go1_19_syscall_linux_ppc64le.go new file mode 100644 index 000000000..2a7f07793 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_ppc64le.go @@ -0,0 +1,2515 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_802_1Q_VLAN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BONDING": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_BRIDGE_PORT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DISABLE_NETPOLL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_DONT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_EBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_ISATAP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_LIVE_ADDR_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MACVLAN": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_MACVLAN_PORT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MASTER_8023AD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MASTER_ALB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_MASTER_ARPMON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_OVS_DATAPATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_SLAVE_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_SLAVE_NEEDARP": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SUPP_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TEAM_PORT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_TX_SKB_SHARING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_UNICAST_FLT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFF_WAN_HDLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_XMIT_DST_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Ioperm": reflect.ValueOf(syscall.Ioperm), + "Iopl": reflect.ValueOf(syscall.Iopl), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_SAO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PTRACE_GETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGS64": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PTRACE_GETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PTRACE_GET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETEVRREGS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_SETFPREGS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGS64": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SETVRREGS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PTRACE_SETVSRREGS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PTRACE_SET_DEBUGREG": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_CCR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PT_CTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PT_DAR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PT_DSCR": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_DSISR": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "PT_FPSCR": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "PT_LNK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PT_MSR": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PT_NIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_ORIG_R3": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PT_R0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_R1": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PT_R10": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PT_R11": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PT_R12": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PT_R13": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PT_R14": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PT_R15": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PT_R16": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PT_R17": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PT_R18": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PT_R19": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PT_R2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PT_R20": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PT_R21": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PT_R22": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PT_R23": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PT_R24": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PT_R25": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PT_R26": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PT_R27": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PT_R28": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PT_R29": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PT_R3": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PT_R30": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PT_R31": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PT_R4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PT_R5": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PT_R6": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PT_R7": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PT_R8": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_R9": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PT_REGS_COUNT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PT_RESULT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PT_SOFTE": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PT_TRAP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_VR0": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "PT_VRSAVE": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "PT_VSCR": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "PT_VSR0": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "PT_VSR31": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "PT_XER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTIME": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GTTY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPERM": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_IOPL": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_LOCK": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MODIFY_LDT": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MPX": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MULTIPLEXER": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OLDFSTAT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_OLDLSTAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_OLDOLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_OLDSTAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_OLDUNAME": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PCICONFIG_IOBASE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_PCICONFIG_READ": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_PCICONFIG_WRITE": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_PROF": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECV": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RTAS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SEND": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_SGETMASK": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_SPU_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_SPU_RUN": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_SSETMASK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_STIME": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_STTY": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SUBPAGE_PROT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SWAPCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_SYNC_FILE_RANGE2": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SYS_DEBUG_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_TIME": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_TUXCALL": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_UGETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_ULIMIT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VM86": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_WAITPID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__LLSEEK": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS__NEWSELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("536900639", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("1074025522", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("1074164754", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("1074164744", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("1074025536", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("1074164852", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("1074025528", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025529", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("1074025520", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("1074030207", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_LOOP": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "TIOCM_OUT1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "TIOCM_OUT2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("2147906577", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("2147906570", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("2147906569", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147767350", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("2147906677", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767345", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553941", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553942", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("1074025679", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812123", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025682", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025683", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025687", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2147767497", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("2147767502", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767498", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("2147767514", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("2147767501", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("2147767496", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("2147767504", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("2147767500", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("2147767499", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("2147767513", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767508", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("2147767505", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767512", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_riscv64.go b/stdlib/syscall/go1_19_syscall_linux_riscv64.go new file mode 100644 index 000000000..f000022e1 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_riscv64.go @@ -0,0 +1,2411 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IB": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KCM": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLEXCLUSIVE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatat": reflect.ValueOf(syscall.Fstatat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BIND_ADDRESS_NO_PORT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MCL_ONFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_BATCH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_LAZYTIME": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("41943121", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048831", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ALG": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SOL_CAIF": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SOL_DCCP": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_IUCV": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SOL_KCM": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SOL_LLC": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SOL_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SOL_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SOL_NFC": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_PNPIPE": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SOL_PPPOL2TP": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_RDS": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SOL_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_TIPC": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "SYS_ARCH_SPECIFIC_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SEMTIMEDOP": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CC_INFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTSENT_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SAVED_SYN": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_SAVE_SYN": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_linux_s390x.go b/stdlib/syscall/go1_19_syscall_linux_s390x.go new file mode 100644 index 000000000..0cdc11e88 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_linux_s390x.go @@ -0,0 +1,2527 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_ALG": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_ASH": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_ATMPVC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ATMSVC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_CAIF": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "AF_CAN": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_ECONET": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_LLC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "AF_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_NETROM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_NFC": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_PHONET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_PPPOX": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_RDS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_ROSE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_RXRPC": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_SECURITY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_TIPC": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_VSOCK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "AF_WANPIPE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ARPHRD_6LOWPAN": reflect.ValueOf(constant.MakeFromLiteral("825", token.INT, 0)), + "ARPHRD_ADAPT": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "ARPHRD_APPLETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ASH": reflect.ValueOf(constant.MakeFromLiteral("781", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_BIF": reflect.ValueOf(constant.MakeFromLiteral("775", token.INT, 0)), + "ARPHRD_CAIF": reflect.ValueOf(constant.MakeFromLiteral("822", token.INT, 0)), + "ARPHRD_CAN": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_CISCO": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_CSLIP": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "ARPHRD_CSLIP6": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "ARPHRD_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("517", token.INT, 0)), + "ARPHRD_DLCI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_ECONET": reflect.ValueOf(constant.MakeFromLiteral("782", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_EUI64": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ARPHRD_FCAL": reflect.ValueOf(constant.MakeFromLiteral("785", token.INT, 0)), + "ARPHRD_FCFABRIC": reflect.ValueOf(constant.MakeFromLiteral("787", token.INT, 0)), + "ARPHRD_FCPL": reflect.ValueOf(constant.MakeFromLiteral("786", token.INT, 0)), + "ARPHRD_FCPP": reflect.ValueOf(constant.MakeFromLiteral("784", token.INT, 0)), + "ARPHRD_FDDI": reflect.ValueOf(constant.MakeFromLiteral("774", token.INT, 0)), + "ARPHRD_FRAD": reflect.ValueOf(constant.MakeFromLiteral("770", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ARPHRD_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("780", token.INT, 0)), + "ARPHRD_HWX25": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("801", token.INT, 0)), + "ARPHRD_IEEE80211_PRISM": reflect.ValueOf(constant.MakeFromLiteral("802", token.INT, 0)), + "ARPHRD_IEEE80211_RADIOTAP": reflect.ValueOf(constant.MakeFromLiteral("803", token.INT, 0)), + "ARPHRD_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("804", token.INT, 0)), + "ARPHRD_IEEE802154_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("805", token.INT, 0)), + "ARPHRD_IEEE802_TR": reflect.ValueOf(constant.MakeFromLiteral("800", token.INT, 0)), + "ARPHRD_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IP6GRE": reflect.ValueOf(constant.MakeFromLiteral("823", token.INT, 0)), + "ARPHRD_IPDDP": reflect.ValueOf(constant.MakeFromLiteral("777", token.INT, 0)), + "ARPHRD_IPGRE": reflect.ValueOf(constant.MakeFromLiteral("778", token.INT, 0)), + "ARPHRD_IRDA": reflect.ValueOf(constant.MakeFromLiteral("783", token.INT, 0)), + "ARPHRD_LAPB": reflect.ValueOf(constant.MakeFromLiteral("516", token.INT, 0)), + "ARPHRD_LOCALTLK": reflect.ValueOf(constant.MakeFromLiteral("773", token.INT, 0)), + "ARPHRD_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("772", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_NETLINK": reflect.ValueOf(constant.MakeFromLiteral("824", token.INT, 0)), + "ARPHRD_NETROM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_NONE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "ARPHRD_PHONET": reflect.ValueOf(constant.MakeFromLiteral("820", token.INT, 0)), + "ARPHRD_PHONET_PIPE": reflect.ValueOf(constant.MakeFromLiteral("821", token.INT, 0)), + "ARPHRD_PIMREG": reflect.ValueOf(constant.MakeFromLiteral("779", token.INT, 0)), + "ARPHRD_PPP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ARPHRD_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ARPHRD_RAWHDLC": reflect.ValueOf(constant.MakeFromLiteral("518", token.INT, 0)), + "ARPHRD_ROSE": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "ARPHRD_RSRVD": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "ARPHRD_SIT": reflect.ValueOf(constant.MakeFromLiteral("776", token.INT, 0)), + "ARPHRD_SKIP": reflect.ValueOf(constant.MakeFromLiteral("771", token.INT, 0)), + "ARPHRD_SLIP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ARPHRD_SLIP6": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "ARPHRD_TUNNEL6": reflect.ValueOf(constant.MakeFromLiteral("769", token.INT, 0)), + "ARPHRD_VOID": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ARPHRD_X25": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Acct": reflect.ValueOf(syscall.Acct), + "Adjtimex": reflect.ValueOf(syscall.Adjtimex), + "AttachLsf": reflect.ValueOf(syscall.AttachLsf), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B1000000": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "B1152000": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B1500000": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B2000000": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B2500000": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B3000000": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "B3500000": reflect.ValueOf(constant.MakeFromLiteral("4110", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B4000000": reflect.ValueOf(constant.MakeFromLiteral("4111", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B500000": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "B576000": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LL_OFF": reflect.ValueOf(constant.MakeFromLiteral("-2097152", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MOD": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_NET_OFF": reflect.ValueOf(constant.MakeFromLiteral("-1048576", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_XOR": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BindToDevice": reflect.ValueOf(syscall.BindToDevice), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_CHILD_CLEARTID": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "CLONE_CHILD_SETTID": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CLONE_DETACHED": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_IO": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "CLONE_NEWCGROUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CLONE_NEWIPC": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CLONE_NEWNET": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "CLONE_NEWNS": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "CLONE_NEWPID": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "CLONE_NEWUSER": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "CLONE_NEWUTS": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CLONE_PARENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_PARENT_SETTID": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SETTLS": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_SYSVSEM": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "CLONE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "CLONE_UNTRACED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "Creat": reflect.ValueOf(syscall.Creat), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DetachLsf": reflect.ValueOf(syscall.DetachLsf), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "Dup3": reflect.ValueOf(syscall.Dup3), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EHWPOISON": reflect.ValueOf(syscall.EHWPOISON), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENCODING_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ENCODING_FM_MARK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ENCODING_FM_SPACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ENCODING_MANCHESTER": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ENCODING_NRZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ENCODING_NRZI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPOLLERR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EPOLLET": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "EPOLLHUP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EPOLLIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLLMSG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "EPOLLONESHOT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "EPOLLOUT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EPOLLPRI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLLRDBAND": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EPOLLRDHUP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EPOLLRDNORM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EPOLLWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "EPOLLWRBAND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "EPOLLWRNORM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "EPOLL_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "EPOLL_CTL_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EPOLL_CTL_DEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EPOLL_CTL_MOD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "ERFKILL": reflect.ValueOf(syscall.ERFKILL), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETH_P_1588": reflect.ValueOf(constant.MakeFromLiteral("35063", token.INT, 0)), + "ETH_P_8021AD": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETH_P_8021AH": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETH_P_8021Q": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETH_P_80221": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "ETH_P_802_2": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETH_P_802_3": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETH_P_802_3_MIN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETH_P_802_EX1": reflect.ValueOf(constant.MakeFromLiteral("34997", token.INT, 0)), + "ETH_P_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETH_P_AF_IUCV": reflect.ValueOf(constant.MakeFromLiteral("64507", token.INT, 0)), + "ETH_P_ALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ETH_P_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETH_P_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "ETH_P_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETH_P_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETH_P_ATMFATE": reflect.ValueOf(constant.MakeFromLiteral("34948", token.INT, 0)), + "ETH_P_ATMMPOA": reflect.ValueOf(constant.MakeFromLiteral("34892", token.INT, 0)), + "ETH_P_AX25": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETH_P_BATMAN": reflect.ValueOf(constant.MakeFromLiteral("17157", token.INT, 0)), + "ETH_P_BPQ": reflect.ValueOf(constant.MakeFromLiteral("2303", token.INT, 0)), + "ETH_P_CAIF": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "ETH_P_CAN": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "ETH_P_CANFD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "ETH_P_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "ETH_P_CUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETH_P_DDCMP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETH_P_DEC": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETH_P_DIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETH_P_DNA_DL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETH_P_DNA_RC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETH_P_DNA_RT": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETH_P_DSA": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "ETH_P_ECONET": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ETH_P_EDSA": reflect.ValueOf(constant.MakeFromLiteral("56026", token.INT, 0)), + "ETH_P_FCOE": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "ETH_P_FIP": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "ETH_P_HDLC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "ETH_P_IEEE802154": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "ETH_P_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETH_P_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETH_P_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETH_P_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETH_P_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETH_P_IRDA": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ETH_P_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETH_P_LINK_CTL": reflect.ValueOf(constant.MakeFromLiteral("34924", token.INT, 0)), + "ETH_P_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ETH_P_LOOP": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "ETH_P_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETH_P_MOBITEX": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "ETH_P_MPLS_MC": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETH_P_MPLS_UC": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETH_P_MVRP": reflect.ValueOf(constant.MakeFromLiteral("35061", token.INT, 0)), + "ETH_P_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETH_P_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETH_P_PHONET": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "ETH_P_PPPTALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETH_P_PPP_DISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETH_P_PPP_MP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETH_P_PPP_SES": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETH_P_PRP": reflect.ValueOf(constant.MakeFromLiteral("35067", token.INT, 0)), + "ETH_P_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETH_P_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("513", token.INT, 0)), + "ETH_P_QINQ1": reflect.ValueOf(constant.MakeFromLiteral("37120", token.INT, 0)), + "ETH_P_QINQ2": reflect.ValueOf(constant.MakeFromLiteral("37376", token.INT, 0)), + "ETH_P_QINQ3": reflect.ValueOf(constant.MakeFromLiteral("37632", token.INT, 0)), + "ETH_P_RARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETH_P_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETH_P_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETH_P_SNAP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ETH_P_TDLS": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "ETH_P_TEB": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETH_P_TIPC": reflect.ValueOf(constant.MakeFromLiteral("35018", token.INT, 0)), + "ETH_P_TRAILER": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "ETH_P_TR_802_2": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ETH_P_TSN": reflect.ValueOf(constant.MakeFromLiteral("8944", token.INT, 0)), + "ETH_P_WAN_PPP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ETH_P_WCCP": reflect.ValueOf(constant.MakeFromLiteral("34878", token.INT, 0)), + "ETH_P_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETH_P_XDSA": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "EpollCreate": reflect.ValueOf(syscall.EpollCreate), + "EpollCreate1": reflect.ValueOf(syscall.EpollCreate1), + "EpollCtl": reflect.ValueOf(syscall.EpollCtl), + "EpollWait": reflect.ValueOf(syscall.EpollWait), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1030", token.INT, 0)), + "F_EXLCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1025", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_GETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_GETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1032", token.INT, 0)), + "F_GETSIG": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("1026", token.INT, 0)), + "F_OFD_GETLK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_OFD_SETLK": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_OFD_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLEASE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETOWN_EX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_SETPIPE_SZ": reflect.ValueOf(constant.MakeFromLiteral("1031", token.INT, 0)), + "F_SETSIG": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_SHLCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_TEST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_TLOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_ULOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Faccessat": reflect.ValueOf(syscall.Faccessat), + "Fallocate": reflect.ValueOf(syscall.Fallocate), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchmodat": reflect.ValueOf(syscall.Fchmodat), + "Fchown": reflect.ValueOf(syscall.Fchown), + "Fchownat": reflect.ValueOf(syscall.Fchownat), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Fdatasync": reflect.ValueOf(syscall.Fdatasync), + "Flock": reflect.ValueOf(syscall.Flock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Futimesat": reflect.ValueOf(syscall.Futimesat), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPMreqn": reflect.ValueOf(syscall.GetsockoptIPMreqn), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "GetsockoptUcred": reflect.ValueOf(syscall.GetsockoptUcred), + "Gettid": reflect.ValueOf(syscall.Gettid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "Getxattr": reflect.ValueOf(syscall.Getxattr), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICMPV6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFA_F_DADFAILED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_F_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFA_F_HOMEADDRESS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFA_F_MANAGETEMPADDR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFA_F_MCAUTOJOIN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFA_F_NODAD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_F_NOPREFIXROUTE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFA_F_OPTIMISTIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFA_F_PERMANENT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFA_F_SECONDARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_STABLE_PRIVACY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFA_F_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_F_TENTATIVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFA_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFA_MAX": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFA_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ATTACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_AUTOMEDIA": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DETACH_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_DORMANT": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ECHO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_LOWER_UP": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_MASTER": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_MULTI_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NO_PI": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_ONE_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PERSIST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PORTSEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_TAP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_TUN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_TUN_EXCL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_VOLATILE": reflect.ValueOf(constant.MakeFromLiteral("461914", token.INT, 0)), + "IFLA_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFLA_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFLA_COST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFLA_IFALIAS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFLA_IFNAME": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFLA_LINK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFLA_LINKINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFLA_LINKMODE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFLA_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFLA_MASTER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFLA_MAX": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFLA_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFLA_NET_NS_PID": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFLA_OPERSTATE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFLA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFLA_PROTINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFLA_QDISC": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFLA_STATS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFLA_TXQLEN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFLA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFLA_WEIGHT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFLA_WIRELESS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_ALL_EVENTS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IN_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IN_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLOSE_NOWRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLOSE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CREATE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IN_DELETE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IN_DELETE_SELF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IN_DONT_FOLLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IN_EXCL_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IN_IGNORED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IN_ISDIR": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_MASK_ADD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IN_MODIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IN_MOVE": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IN_MOVED_FROM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IN_MOVED_TO": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_MOVE_SELF": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IN_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IN_ONLYDIR": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IN_OPEN": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IN_Q_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IN_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_BEETPH": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IPPROTO_COMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_DCCP": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MH": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IPPROTO_MTP": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_2292DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_2292HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_2292HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_2292PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_2292PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_2292RTHDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_ADDRFORM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_AUTHHDR": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_JOIN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_LEAVE_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_MTU": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPV6_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RXDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_RXHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IP_FREEBIND": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_MSFILTER": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MTU": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IP_MTU_DISCOVER": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_MULTICAST_ALL": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_NODEFRAG": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_ORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_PKTOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_PMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_PMTUDISC_DO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_PMTUDISC_DONT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PMTUDISC_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_PMTUDISC_OMIT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_PMTUDISC_PROBE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_PMTUDISC_WANT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_RECVERR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVORIGDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVTOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ROUTER_ALERT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_TRANSPARENT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_UNICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IP_XFRM_POLICY": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IUCLC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IUTF8": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InotifyAddWatch": reflect.ValueOf(syscall.InotifyAddWatch), + "InotifyInit": reflect.ValueOf(syscall.InotifyInit), + "InotifyInit1": reflect.ValueOf(syscall.InotifyInit1), + "InotifyRmWatch": reflect.ValueOf(syscall.InotifyRmWatch), + "Klogctl": reflect.ValueOf(syscall.Klogctl), + "LINUX_REBOOT_CMD_CAD_OFF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "LINUX_REBOOT_CMD_CAD_ON": reflect.ValueOf(constant.MakeFromLiteral("2309737967", token.INT, 0)), + "LINUX_REBOOT_CMD_HALT": reflect.ValueOf(constant.MakeFromLiteral("3454992675", token.INT, 0)), + "LINUX_REBOOT_CMD_KEXEC": reflect.ValueOf(constant.MakeFromLiteral("1163412803", token.INT, 0)), + "LINUX_REBOOT_CMD_POWER_OFF": reflect.ValueOf(constant.MakeFromLiteral("1126301404", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART": reflect.ValueOf(constant.MakeFromLiteral("19088743", token.INT, 0)), + "LINUX_REBOOT_CMD_RESTART2": reflect.ValueOf(constant.MakeFromLiteral("2712847316", token.INT, 0)), + "LINUX_REBOOT_CMD_SW_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("3489725666", token.INT, 0)), + "LINUX_REBOOT_MAGIC1": reflect.ValueOf(constant.MakeFromLiteral("4276215469", token.INT, 0)), + "LINUX_REBOOT_MAGIC2": reflect.ValueOf(constant.MakeFromLiteral("672274793", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Listxattr": reflect.ValueOf(syscall.Listxattr), + "LsfJump": reflect.ValueOf(syscall.LsfJump), + "LsfSocket": reflect.ValueOf(syscall.LsfSocket), + "LsfStmt": reflect.ValueOf(syscall.LsfStmt), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DODUMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "MADV_DOFORK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "MADV_DONTDUMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MADV_DONTFORK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_HUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "MADV_HWPOISON": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "MADV_MERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "MADV_NOHUGEPAGE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_UNMERGEABLE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_DENYWRITE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_EXECUTABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_HUGETLB": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MAP_HUGE_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "MAP_HUGE_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "MAP_LOCKED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_POPULATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_DETACH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MNT_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MNT_FORCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MSG_CONFIRM": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_ERRQUEUE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MSG_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MSG_FIN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_MORE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_PROXY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_RST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_SYN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_TRYHARD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_WAITFORONE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_ACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_BIND": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MS_DIRSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_I_VERSION": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "MS_KERNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "MS_MANDLOCK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_MGC_MSK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "MS_MGC_VAL": reflect.ValueOf(constant.MakeFromLiteral("3236757504", token.INT, 0)), + "MS_MOVE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MS_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MS_NODEV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_NODIRATIME": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MS_NOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MS_NOSUID": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_NOUSER": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "MS_POSIXACL": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "MS_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "MS_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_REC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MS_RELATIME": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "MS_REMOUNT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MS_RMT_MASK": reflect.ValueOf(constant.MakeFromLiteral("8388689", token.INT, 0)), + "MS_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "MS_SILENT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_SLAVE": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "MS_STRICTATIME": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNCHRONOUS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MS_UNBINDABLE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "Madvise": reflect.ValueOf(syscall.Madvise), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkdirat": reflect.ValueOf(syscall.Mkdirat), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mknodat": reflect.ValueOf(syscall.Mknodat), + "Mlock": reflect.ValueOf(syscall.Mlock), + "Mlockall": reflect.ValueOf(syscall.Mlockall), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Mount": reflect.ValueOf(syscall.Mount), + "Mprotect": reflect.ValueOf(syscall.Mprotect), + "Munlock": reflect.ValueOf(syscall.Munlock), + "Munlockall": reflect.ValueOf(syscall.Munlockall), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NETLINK_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_AUDIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_BROADCAST_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_CAP_ACK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_CONNECTOR": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "NETLINK_CRYPTO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "NETLINK_DNRTMSG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "NETLINK_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_ECRYPTFS": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "NETLINK_FIB_LOOKUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NETLINK_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_GENERIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NETLINK_INET_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_IP6_FW": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "NETLINK_ISCSI": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_KOBJECT_UEVENT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "NETLINK_LISTEN_ALL_NSID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NETLINK_LIST_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NETLINK_NETFILTER": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NETLINK_NFLOG": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_NO_ENOBUFS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NETLINK_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NETLINK_RDMA": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "NETLINK_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NETLINK_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NETLINK_SCSITRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "NETLINK_SELINUX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_SOCK_DIAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NETLINK_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NETLINK_UNUSED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NETLINK_USERSOCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NETLINK_XFRM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NLA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLA_F_NESTED": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "NLA_F_NET_BYTEORDER": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "NLA_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLMSG_DONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NLMSG_ERROR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLMSG_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_MIN_TYPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLMSG_NOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLMSG_OVERRUN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_ACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NLM_F_APPEND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "NLM_F_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_CREATE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "NLM_F_DUMP": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "NLM_F_DUMP_FILTERED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NLM_F_DUMP_INTR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NLM_F_ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NLM_F_EXCL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MATCH": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "NLM_F_MULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NLM_F_REPLACE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NLM_F_REQUEST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NLM_F_ROOT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NetlinkRIB": reflect.ValueOf(syscall.NetlinkRIB), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "OLCUC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOATIME": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_PATH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("1052672", token.INT, 0)), + "O_TMPFILE": reflect.ValueOf(constant.MakeFromLiteral("4259840", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Openat": reflect.ValueOf(syscall.Openat), + "PACKET_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_AUXDATA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PACKET_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_COPY_THRESH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PACKET_FANOUT_CBPF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_FANOUT_CPU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_FANOUT_DATA": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PACKET_FANOUT_EBPF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_FANOUT_FLAG_DEFRAG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "PACKET_FANOUT_FLAG_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PACKET_FANOUT_HASH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_FANOUT_LB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_FANOUT_QM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_FANOUT_RND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_FANOUT_ROLLOVER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_FASTROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_HDRLEN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PACKET_HOST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PACKET_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_LOSS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PACKET_MR_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_MR_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PACKET_MR_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PACKET_MR_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PACKET_ORIGDEV": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PACKET_OTHERHOST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_OUTGOING": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PACKET_QDISC_BYPASS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PACKET_RECV_OUTPUT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PACKET_RESERVE": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PACKET_ROLLOVER_STATS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PACKET_RX_RING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PACKET_STATISTICS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PACKET_TX_HAS_OFF": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PACKET_TX_RING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PACKET_TX_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PACKET_USER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PACKET_VERSION": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PACKET_VNET_HDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PARITY_CRC16_PR0": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PARITY_CRC16_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PARITY_CRC16_PR1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PARITY_CRC16_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PARITY_CRC32_PR0_CCITT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PARITY_CRC32_PR1_CCITT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PARITY_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PARITY_NONE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_GROWSDOWN": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "PROT_GROWSUP": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_CAPBSET_DROP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PR_CAPBSET_READ": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PR_CAP_AMBIENT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "PR_CAP_AMBIENT_CLEAR_ALL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_CAP_AMBIENT_IS_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_CAP_AMBIENT_LOWER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_CAP_AMBIENT_RAISE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_ENDIAN_BIG": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_ENDIAN_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_ENDIAN_PPC_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FPEMU_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FPEMU_SIGFPE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_FP_EXC_DISABLED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_FP_EXC_DIV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PR_FP_EXC_INV": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PR_FP_EXC_NONRECOV": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_EXC_OVF": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "PR_FP_EXC_PRECISE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_FP_EXC_RES": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "PR_FP_EXC_SW_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PR_FP_EXC_UND": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "PR_FP_MODE_FR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_FP_MODE_FRE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "PR_GET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_GET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "PR_GET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_GET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_GET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "PR_GET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_GET_NAME": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PR_GET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "PR_GET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_GET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PR_GET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "PR_GET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "PR_GET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PR_GET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "PR_GET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_GET_TSC": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "PR_GET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_MCE_KILL": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "PR_MCE_KILL_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_MCE_KILL_EARLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MCE_KILL_GET": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "PR_MCE_KILL_LATE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_MCE_KILL_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_MPX_DISABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "PR_MPX_ENABLE_MANAGEMENT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "PR_SET_CHILD_SUBREAPER": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "PR_SET_DUMPABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PR_SET_FPEMU": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_FPEXC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_FP_MODE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "PR_SET_KEEPCAPS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "PR_SET_MM_ARG_END": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PR_SET_MM_ARG_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PR_SET_MM_AUXV": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PR_SET_MM_BRK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PR_SET_MM_END_CODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_SET_MM_END_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PR_SET_MM_ENV_END": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "PR_SET_MM_ENV_START": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "PR_SET_MM_EXE_FILE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PR_SET_MM_MAP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_MM_MAP_SIZE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_MM_START_BRK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_SET_MM_START_CODE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_MM_START_DATA": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PR_SET_MM_START_STACK": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PR_SET_NAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PR_SET_NO_NEW_PRIVS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "PR_SET_PDEATHSIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_SET_PTRACER": reflect.ValueOf(constant.MakeFromLiteral("1499557217", token.INT, 0)), + "PR_SET_PTRACER_ANY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "PR_SET_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PR_SET_SECUREBITS": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "PR_SET_THP_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "PR_SET_TIMERSLACK": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "PR_SET_TIMING": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PR_SET_TSC": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "PR_SET_UNALIGN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PR_TASK_PERF_EVENTS_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "PR_TASK_PERF_EVENTS_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PR_TIMING_STATISTICAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PR_TIMING_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_TSC_SIGSEGV": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PR_UNALIGN_NOPRINT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PR_UNALIGN_SIGBUS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_ATTACH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_DETACH": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PTRACE_DISABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20496", token.INT, 0)), + "PTRACE_ENABLE_TE": reflect.ValueOf(constant.MakeFromLiteral("20489", token.INT, 0)), + "PTRACE_EVENT_CLONE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_EVENT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_EVENT_EXIT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_EVENT_FORK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_EVENT_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_EVENT_STOP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_EVENT_VFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_EVENT_VFORK_DONE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_GETEVENTMSG": reflect.ValueOf(constant.MakeFromLiteral("16897", token.INT, 0)), + "PTRACE_GETREGS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_GETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16900", token.INT, 0)), + "PTRACE_GETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16898", token.INT, 0)), + "PTRACE_GETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16906", token.INT, 0)), + "PTRACE_GET_LAST_BREAK": reflect.ValueOf(constant.MakeFromLiteral("20486", token.INT, 0)), + "PTRACE_INTERRUPT": reflect.ValueOf(constant.MakeFromLiteral("16903", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("16904", token.INT, 0)), + "PTRACE_OLDSETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_O_EXITKILL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PTRACE_O_MASK": reflect.ValueOf(constant.MakeFromLiteral("3145983", token.INT, 0)), + "PTRACE_O_SUSPEND_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "PTRACE_O_TRACECLONE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_O_TRACEEXEC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PTRACE_O_TRACEEXIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PTRACE_O_TRACEFORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_O_TRACESECCOMP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PTRACE_O_TRACESYSGOOD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_O_TRACEVFORK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_O_TRACEVFORKDONE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PTRACE_PEEKDATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_PEEKDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20483", token.INT, 0)), + "PTRACE_PEEKSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16905", token.INT, 0)), + "PTRACE_PEEKSIGINFO_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PTRACE_PEEKTEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20482", token.INT, 0)), + "PTRACE_PEEKUSR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PTRACE_PEEKUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20480", token.INT, 0)), + "PTRACE_PEEK_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20487", token.INT, 0)), + "PTRACE_POKEDATA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PTRACE_POKEDATA_AREA": reflect.ValueOf(constant.MakeFromLiteral("20485", token.INT, 0)), + "PTRACE_POKETEXT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PTRACE_POKETEXT_AREA": reflect.ValueOf(constant.MakeFromLiteral("20484", token.INT, 0)), + "PTRACE_POKEUSR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "PTRACE_POKEUSR_AREA": reflect.ValueOf(constant.MakeFromLiteral("20481", token.INT, 0)), + "PTRACE_POKE_SYSTEM_CALL": reflect.ValueOf(constant.MakeFromLiteral("20488", token.INT, 0)), + "PTRACE_PROT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PTRACE_SECCOMP_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("16908", token.INT, 0)), + "PTRACE_SEIZE": reflect.ValueOf(constant.MakeFromLiteral("16902", token.INT, 0)), + "PTRACE_SETOPTIONS": reflect.ValueOf(constant.MakeFromLiteral("16896", token.INT, 0)), + "PTRACE_SETREGS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PTRACE_SETREGSET": reflect.ValueOf(constant.MakeFromLiteral("16901", token.INT, 0)), + "PTRACE_SETSIGINFO": reflect.ValueOf(constant.MakeFromLiteral("16899", token.INT, 0)), + "PTRACE_SETSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("16907", token.INT, 0)), + "PTRACE_SINGLEBLOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PTRACE_SINGLESTEP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "PTRACE_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PTRACE_TE_ABORT_RAND": reflect.ValueOf(constant.MakeFromLiteral("20497", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_ACR0": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "PT_ACR1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "PT_ACR10": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "PT_ACR11": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "PT_ACR12": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "PT_ACR13": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "PT_ACR14": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "PT_ACR15": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "PT_ACR2": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "PT_ACR3": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "PT_ACR4": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "PT_ACR5": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "PT_ACR6": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "PT_ACR7": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "PT_ACR8": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "PT_ACR9": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "PT_CR_10": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "PT_CR_11": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "PT_CR_9": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "PT_ENDREGS": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "PT_FPC": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "PT_FPR0": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "PT_FPR1": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "PT_FPR10": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "PT_FPR11": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "PT_FPR12": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "PT_FPR13": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "PT_FPR14": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "PT_FPR15": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "PT_FPR2": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "PT_FPR3": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "PT_FPR4": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PT_FPR5": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "PT_FPR6": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "PT_FPR7": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "PT_FPR8": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "PT_FPR9": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "PT_GPR0": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PT_GPR1": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PT_GPR10": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "PT_GPR11": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "PT_GPR12": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "PT_GPR13": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "PT_GPR14": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PT_GPR15": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "PT_GPR2": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PT_GPR3": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "PT_GPR4": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "PT_GPR5": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "PT_GPR6": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PT_GPR7": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "PT_GPR8": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "PT_GPR9": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "PT_IEEE_IP": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "PT_LASTOFF": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "PT_ORIGGPR2": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "PT_PSWADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PT_PSWMASK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseNetlinkMessage": reflect.ValueOf(syscall.ParseNetlinkMessage), + "ParseNetlinkRouteAttr": reflect.ValueOf(syscall.ParseNetlinkRouteAttr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixCredentials": reflect.ValueOf(syscall.ParseUnixCredentials), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "Pause": reflect.ValueOf(syscall.Pause), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "PivotRoot": reflect.ValueOf(syscall.PivotRoot), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RTAX_ADVMSS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_CC_ALGO": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_CWND": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_FEATURES": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_FEATURE_ALLFRAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_FEATURE_ECN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_FEATURE_MASK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_FEATURE_SACK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_FEATURE_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_INITCWND": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_INITRWND": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_LOCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTAX_MTU": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_REORDERING": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTAX_RTT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_CACHEINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_FLOW": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTA_IIF": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTA_MAX": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTA_METRICS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_MULTIPATH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_OIF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_PREFSRC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTA_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_TABLE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTA_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTCF_DIRECTSRC": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTCF_DOREDIRECT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTCF_LOG": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTCF_MASQ": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTCF_NAT": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTCF_VALVE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_ADDRCLASSMASK": reflect.ValueOf(constant.MakeFromLiteral("4160749568", token.INT, 0)), + "RTF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_ALLONLINK": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "RTF_CACHE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FLOW": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INTERFACE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "RTF_IRTT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_LINKRT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MSS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MTU": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "RTF_NAT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "RTF_NOFORWARD": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_NONEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_NOPMTUDISC": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "RTF_REINSTATE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_THROW": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_WINDOW": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_BASE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_DELACTION": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "RTM_DELLINK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_DELMDB": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "RTM_DELNEIGH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "RTM_DELNSID": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "RTM_DELQDISC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "RTM_DELROUTE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "RTM_DELRULE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "RTM_DELTCLASS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "RTM_DELTFILTER": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "RTM_F_CLONED": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_F_EQUALIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTM_F_LOOKUP_TABLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTM_F_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTM_F_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_GETACTION": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "RTM_GETADDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "RTM_GETADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "RTM_GETANYCAST": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "RTM_GETDCB": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "RTM_GETLINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_GETMDB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "RTM_GETMULTICAST": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "RTM_GETNEIGH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "RTM_GETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "RTM_GETNETCONF": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "RTM_GETNSID": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "RTM_GETQDISC": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "RTM_GETROUTE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "RTM_GETRULE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "RTM_GETTCLASS": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTM_GETTFILTER": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "RTM_MAX": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "RTM_NEWACTION": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_NEWADDRLABEL": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "RTM_NEWLINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_NEWMDB": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "RTM_NEWNDUSEROPT": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "RTM_NEWNEIGH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "RTM_NEWNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTM_NEWNETCONF": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "RTM_NEWNSID": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "RTM_NEWPREFIX": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "RTM_NEWQDISC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "RTM_NEWROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "RTM_NEWRULE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTM_NEWTCLASS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "RTM_NEWTFILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "RTM_NR_FAMILIES": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_NR_MSGTYPES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "RTM_SETDCB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "RTM_SETLINK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_SETNEIGHTBL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "RTNH_ALIGNTO": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_COMPARE_MASK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTNH_F_DEAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNH_F_LINKDOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTNH_F_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNH_F_ONLINK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTNH_F_PERVASIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_IPV4_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTNLGRP_IPV4_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTNLGRP_IPV4_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTNLGRP_IPV4_RULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTNLGRP_IPV6_IFADDR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTNLGRP_IPV6_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTNLGRP_IPV6_MROUTE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTNLGRP_IPV6_PREFIX": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTNLGRP_IPV6_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTNLGRP_IPV6_RULE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTNLGRP_LINK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTNLGRP_ND_USEROPT": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTNLGRP_NEIGH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTNLGRP_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTNLGRP_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTNLGRP_TC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTN_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTN_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTN_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTN_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTN_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTN_NAT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTN_PROHIBIT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTN_THROW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTN_UNICAST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTN_UNREACHABLE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTN_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTN_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTPROT_BABEL": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "RTPROT_BIRD": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTPROT_BOOT": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTPROT_DHCP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTPROT_DNROUTED": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTPROT_GATED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTPROT_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTPROT_MROUTED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTPROT_MRT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTPROT_NTK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTPROT_RA": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTPROT_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTPROT_STATIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTPROT_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTPROT_XORP": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTPROT_ZEBRA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RT_CLASS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_CLASS_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_CLASS_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_CLASS_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_SCOPE_HOST": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_SCOPE_LINK": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_SCOPE_NOWHERE": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_SCOPE_SITE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "RT_SCOPE_UNIVERSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RT_TABLE_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "RT_TABLE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "RT_TABLE_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLE_MAIN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "RT_TABLE_MAX": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "RT_TABLE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Removexattr": reflect.ValueOf(syscall.Removexattr), + "Rename": reflect.ValueOf(syscall.Rename), + "Renameat": reflect.ValueOf(syscall.Renameat), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_CREDENTIALS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SCM_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SCM_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SCM_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTKFLT": reflect.ValueOf(syscall.SIGSTKFLT), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGUNUSED": reflect.ValueOf(syscall.SIGUNUSED), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDDLCI": reflect.ValueOf(constant.MakeFromLiteral("35200", token.INT, 0)), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("35121", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("35083", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("35077", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("35155", token.INT, 0)), + "SIOCDELDLCI": reflect.ValueOf(constant.MakeFromLiteral("35201", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("35122", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("35084", token.INT, 0)), + "SIOCDEVPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35312", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35126", token.INT, 0)), + "SIOCDRARP": reflect.ValueOf(constant.MakeFromLiteral("35168", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("35156", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35093", token.INT, 0)), + "SIOCGIFBR": reflect.ValueOf(constant.MakeFromLiteral("35136", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35097", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("35090", token.INT, 0)), + "SIOCGIFCOUNT": reflect.ValueOf(constant.MakeFromLiteral("35128", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35095", token.INT, 0)), + "SIOCGIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35109", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35091", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35111", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("35123", token.INT, 0)), + "SIOCGIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35184", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35103", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35101", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35105", token.INT, 0)), + "SIOCGIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35088", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35099", token.INT, 0)), + "SIOCGIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35125", token.INT, 0)), + "SIOCGIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35113", token.INT, 0)), + "SIOCGIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35138", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("35076", token.INT, 0)), + "SIOCGRARP": reflect.ValueOf(constant.MakeFromLiteral("35169", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("35078", token.INT, 0)), + "SIOCGSTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35079", token.INT, 0)), + "SIOCPROTOPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("35296", token.INT, 0)), + "SIOCRTMSG": reflect.ValueOf(constant.MakeFromLiteral("35085", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("35157", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("35094", token.INT, 0)), + "SIOCSIFBR": reflect.ValueOf(constant.MakeFromLiteral("35137", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("35098", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("35096", token.INT, 0)), + "SIOCSIFENCAP": reflect.ValueOf(constant.MakeFromLiteral("35110", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35092", token.INT, 0)), + "SIOCSIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("35108", token.INT, 0)), + "SIOCSIFHWBROADCAST": reflect.ValueOf(constant.MakeFromLiteral("35127", token.INT, 0)), + "SIOCSIFLINK": reflect.ValueOf(constant.MakeFromLiteral("35089", token.INT, 0)), + "SIOCSIFMAP": reflect.ValueOf(constant.MakeFromLiteral("35185", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("35104", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("35102", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("35106", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("35107", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("35100", token.INT, 0)), + "SIOCSIFPFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35124", token.INT, 0)), + "SIOCSIFSLAVE": reflect.ValueOf(constant.MakeFromLiteral("35120", token.INT, 0)), + "SIOCSIFTXQLEN": reflect.ValueOf(constant.MakeFromLiteral("35139", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("35074", token.INT, 0)), + "SIOCSRARP": reflect.ValueOf(constant.MakeFromLiteral("35170", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DCCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SOCK_PACKET": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_AAL": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SOL_ATM": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SOL_DECNET": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SOL_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SOL_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SOL_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SOL_IRDA": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SOL_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOL_X25": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SO_ATTACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_BINDTODEVICE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SO_BPF_EXTENSIONS": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SO_BSDCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SO_BUSY_POLL": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DETACH_BPF": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_GET_FILTER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SO_INCOMING_CPU": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SO_LOCK_FILTER": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SO_MARK": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SO_MAX_PACING_RATE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SO_NOFCS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SO_NO_CHECK": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SO_PASSCRED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_PASSSEC": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SO_PEEK_OFF": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SO_PEERNAME": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SO_PEERSEC": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SO_PRIORITY": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_RCVBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SO_RXQ_OVFL": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SO_SECURITY_AUTHENTICATION": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_NETWORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SO_SECURITY_ENCRYPTION_TRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SO_SELECT_ERR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SO_SNDBUFFORCE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SO_TIMESTAMPING": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SO_TIMESTAMPNS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SO_WIFI_STATUS": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADD_KEY": reflect.ValueOf(constant.MakeFromLiteral("278", token.INT, 0)), + "SYS_ADJTIMEX": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_AFS_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_BDFLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_BPF": reflect.ValueOf(constant.MakeFromLiteral("351", token.INT, 0)), + "SYS_BRK": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_CAPGET": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "SYS_CAPSET": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("337", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "SYS_CLOCK_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "SYS_CLONE": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_CREATE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_DELETE_MODULE": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("326", token.INT, 0)), + "SYS_EPOLL_CREATE": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "SYS_EPOLL_CREATE1": reflect.ValueOf(constant.MakeFromLiteral("327", token.INT, 0)), + "SYS_EPOLL_CTL": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_EPOLL_PWAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS_EPOLL_WAIT": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "SYS_EVENTFD": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_EVENTFD2": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_EXECVEAT": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXIT_GROUP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "SYS_FADVISE64": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_FALLOCATE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FANOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("332", token.INT, 0)), + "SYS_FANOTIFY_MARK": reflect.ValueOf(constant.MakeFromLiteral("333", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("291", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "SYS_FINIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("232", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_FSTATFS64": reflect.ValueOf(constant.MakeFromLiteral("266", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("238", token.INT, 0)), + "SYS_FUTIMESAT": reflect.ValueOf(constant.MakeFromLiteral("292", token.INT, 0)), + "SYS_GETCPU": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETCWD": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETDENTS64": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPMSG": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_GETRANDOM": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_GETTID": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_GET_KERNEL_SYMS": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "SYS_GET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_GET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_IDLE": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_INIT_MODULE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_INOTIFY_ADD_WATCH": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS_INOTIFY_INIT": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_INOTIFY_INIT1": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_INOTIFY_RM_WATCH": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_IOPRIO_GET": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_IOPRIO_SET": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_IO_CANCEL": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "SYS_IO_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "SYS_IO_GETEVENTS": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_IO_SETUP": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_IO_SUBMIT": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_IPC": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "SYS_KCMP": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_KEXEC_LOAD": reflect.ValueOf(constant.MakeFromLiteral("277", token.INT, 0)), + "SYS_KEYCTL": reflect.ValueOf(constant.MakeFromLiteral("280", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_LOOKUP_DCOOKIE": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("234", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "SYS_MBIND": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_MEMBARRIER": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_MEMFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_MIGRATE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "SYS_MLOCK2": reflect.ValueOf(constant.MakeFromLiteral("374", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MOVE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "SYS_MQ_GETSETATTR": reflect.ValueOf(constant.MakeFromLiteral("276", token.INT, 0)), + "SYS_MQ_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_MQ_OPEN": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MQ_TIMEDRECEIVE": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_MQ_TIMEDSEND": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MQ_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NAME_TO_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("335", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "SYS_NEWFSTATAT": reflect.ValueOf(constant.MakeFromLiteral("293", token.INT, 0)), + "SYS_NFSSERVCTL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "SYS_NICE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_OPEN_BY_HANDLE_AT": reflect.ValueOf(constant.MakeFromLiteral("336", token.INT, 0)), + "SYS_PAUSE": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_PERF_EVENT_OPEN": reflect.ValueOf(constant.MakeFromLiteral("331", token.INT, 0)), + "SYS_PERSONALITY": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_PIVOT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS_PRCTL": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "SYS_PREAD64": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("328", token.INT, 0)), + "SYS_PRLIMIT64": reflect.ValueOf(constant.MakeFromLiteral("334", token.INT, 0)), + "SYS_PROCESS_VM_READV": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS_PROCESS_VM_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_PSELECT6": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PUTPMSG": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "SYS_PWRITE64": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS_QUERY_MODULE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READAHEAD": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_READDIR": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_REMAP_FILE_PAGES": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("233", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS_RENAMEAT2": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS_REQUEST_KEY": reflect.ValueOf(constant.MakeFromLiteral("279", token.INT, 0)), + "SYS_RESTART_SYSCALL": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_RT_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_RT_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_RT_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "SYS_RT_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "SYS_RT_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_RT_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "SYS_RT_SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "SYS_RT_TGSIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS_S390_PCI_MMIO_READ": reflect.ValueOf(constant.MakeFromLiteral("353", token.INT, 0)), + "SYS_S390_PCI_MMIO_WRITE": reflect.ValueOf(constant.MakeFromLiteral("352", token.INT, 0)), + "SYS_S390_RUNTIME_INSTR": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "SYS_SCHED_GETATTR": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS_SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_SCHED_GETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MAX": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "SYS_SCHED_GET_PRIORITY_MIN": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "SYS_SCHED_RR_GET_INTERVAL": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_SCHED_SETATTR": reflect.ValueOf(constant.MakeFromLiteral("345", token.INT, 0)), + "SYS_SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "SYS_SCHED_SETSCHEDULER": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "SYS_SECCOMP": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "SYS_SENDFILE": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_SETDOMAINNAME": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS_SETFSGID": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "SYS_SETFSUID": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "SYS_SETHOSTNAME": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_SETNS": reflect.ValueOf(constant.MakeFromLiteral("339", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SYS_SET_MEMPOLICY": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS_SET_ROBUST_LIST": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_SET_TID_ADDRESS": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("373", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "SYS_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGNALFD": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS_SIGNALFD4": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("359", token.INT, 0)), + "SYS_SOCKETCALL": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_STATFS64": reflect.ValueOf(constant.MakeFromLiteral("265", token.INT, 0)), + "SYS_SWAPOFF": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS_SWAPON": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYNCFS": reflect.ValueOf(constant.MakeFromLiteral("338", token.INT, 0)), + "SYS_SYNC_FILE_RANGE": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_SYSFS": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SYSINFO": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "SYS_SYSLOG": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_TEE": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_TGKILL": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_TIMERFD": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_TIMERFD_CREATE": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_TIMERFD_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_TIMERFD_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_TIMES": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_TKILL": reflect.ValueOf(constant.MakeFromLiteral("237", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UMOUNT2": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNAME": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS_USELIB": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_USERFAULTFD": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_USTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_UTIME": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "SYS_VHANGUP": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_VMSPLICE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_WAITID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "SYS__SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetLsfPromisc": reflect.ValueOf(syscall.SetLsfPromisc), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setdomainname": reflect.ValueOf(syscall.Setdomainname), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setfsgid": reflect.ValueOf(syscall.Setfsgid), + "Setfsuid": reflect.ValueOf(syscall.Setfsuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Sethostname": reflect.ValueOf(syscall.Sethostname), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setresgid": reflect.ValueOf(syscall.Setresgid), + "Setresuid": reflect.ValueOf(syscall.Setresuid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPMreqn": reflect.ValueOf(syscall.SetsockoptIPMreqn), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "Setxattr": reflect.ValueOf(syscall.Setxattr), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPMreqn": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAddrmsg": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIfInfomsg": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofInet4Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInotifyEvent": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofNlAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofNlMsgerr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofNlMsghdr": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofRtAttr": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofRtGenmsg": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SizeofRtMsg": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofRtNexthop": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFilter": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofSockFprog": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrLinklayer": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrNetlink": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SizeofTCPInfo": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SizeofUcred": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Splice": reflect.ValueOf(syscall.Splice), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "SyncFileRange": reflect.ValueOf(syscall.SyncFileRange), + "Sysinfo": reflect.ValueOf(syscall.Sysinfo), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21515", token.INT, 0)), + "TCGETS": reflect.ValueOf(constant.MakeFromLiteral("21505", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_CONGESTION": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TCP_COOKIE_IN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_COOKIE_MAX": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_COOKIE_MIN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_COOKIE_OUT_NEVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_COOKIE_PAIR_SIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_COOKIE_TRANSACTIONS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_DEFER_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TCP_FASTOPEN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_INFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG_MAXKEYLEN": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_MSS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_MSS_DESIRED": reflect.ValueOf(constant.MakeFromLiteral("1220", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_QUEUE_SEQ": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_QUICKACK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TCP_REPAIR": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_REPAIR_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_REPAIR_QUEUE": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_SYNCNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_S_DATA_IN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_S_DATA_OUT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_THIN_DUPACK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_THIN_LINEAR_TIMEOUTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_USER_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_WINDOW_CLAMP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCSETS": reflect.ValueOf(constant.MakeFromLiteral("21506", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("21544", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("21533", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("21516", token.INT, 0)), + "TIOCGDEV": reflect.ValueOf(constant.MakeFromLiteral("2147767346", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("21540", token.INT, 0)), + "TIOCGEXCL": reflect.ValueOf(constant.MakeFromLiteral("2147767360", token.INT, 0)), + "TIOCGICOUNT": reflect.ValueOf(constant.MakeFromLiteral("21597", token.INT, 0)), + "TIOCGLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21590", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("21519", token.INT, 0)), + "TIOCGPKT": reflect.ValueOf(constant.MakeFromLiteral("2147767352", token.INT, 0)), + "TIOCGPTLCK": reflect.ValueOf(constant.MakeFromLiteral("2147767353", token.INT, 0)), + "TIOCGPTN": reflect.ValueOf(constant.MakeFromLiteral("2147767344", token.INT, 0)), + "TIOCGRS485": reflect.ValueOf(constant.MakeFromLiteral("21550", token.INT, 0)), + "TIOCGSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21534", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("21545", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21529", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21523", token.INT, 0)), + "TIOCINQ": reflect.ValueOf(constant.MakeFromLiteral("21531", token.INT, 0)), + "TIOCLINUX": reflect.ValueOf(constant.MakeFromLiteral("21532", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("21527", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("21526", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("21525", token.INT, 0)), + "TIOCMIWAIT": reflect.ValueOf(constant.MakeFromLiteral("21596", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("21528", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("21538", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("21517", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("21521", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("21536", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("21543", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("21518", token.INT, 0)), + "TIOCSERCONFIG": reflect.ValueOf(constant.MakeFromLiteral("21587", token.INT, 0)), + "TIOCSERGETLSR": reflect.ValueOf(constant.MakeFromLiteral("21593", token.INT, 0)), + "TIOCSERGETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21594", token.INT, 0)), + "TIOCSERGSTRUCT": reflect.ValueOf(constant.MakeFromLiteral("21592", token.INT, 0)), + "TIOCSERGWILD": reflect.ValueOf(constant.MakeFromLiteral("21588", token.INT, 0)), + "TIOCSERSETMULTI": reflect.ValueOf(constant.MakeFromLiteral("21595", token.INT, 0)), + "TIOCSERSWILD": reflect.ValueOf(constant.MakeFromLiteral("21589", token.INT, 0)), + "TIOCSER_TEMT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("21539", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("1074025526", token.INT, 0)), + "TIOCSLCKTRMIOS": reflect.ValueOf(constant.MakeFromLiteral("21591", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOCSPTLCK": reflect.ValueOf(constant.MakeFromLiteral("1074025521", token.INT, 0)), + "TIOCSRS485": reflect.ValueOf(constant.MakeFromLiteral("21551", token.INT, 0)), + "TIOCSSERIAL": reflect.ValueOf(constant.MakeFromLiteral("21535", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21530", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("21522", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21524", token.INT, 0)), + "TIOCVHANGUP": reflect.ValueOf(constant.MakeFromLiteral("21559", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TUNATTACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812117", token.INT, 0)), + "TUNDETACHFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074812118", token.INT, 0)), + "TUNGETFEATURES": reflect.ValueOf(constant.MakeFromLiteral("2147767503", token.INT, 0)), + "TUNGETFILTER": reflect.ValueOf(constant.MakeFromLiteral("2148553947", token.INT, 0)), + "TUNGETIFF": reflect.ValueOf(constant.MakeFromLiteral("2147767506", token.INT, 0)), + "TUNGETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("2147767507", token.INT, 0)), + "TUNGETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("2147767519", token.INT, 0)), + "TUNGETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("2147767511", token.INT, 0)), + "TUNGETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("2147767517", token.INT, 0)), + "TUNSETDEBUG": reflect.ValueOf(constant.MakeFromLiteral("1074025673", token.INT, 0)), + "TUNSETGROUP": reflect.ValueOf(constant.MakeFromLiteral("1074025678", token.INT, 0)), + "TUNSETIFF": reflect.ValueOf(constant.MakeFromLiteral("1074025674", token.INT, 0)), + "TUNSETIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("1074025690", token.INT, 0)), + "TUNSETLINK": reflect.ValueOf(constant.MakeFromLiteral("1074025677", token.INT, 0)), + "TUNSETNOCSUM": reflect.ValueOf(constant.MakeFromLiteral("1074025672", token.INT, 0)), + "TUNSETOFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("1074025680", token.INT, 0)), + "TUNSETOWNER": reflect.ValueOf(constant.MakeFromLiteral("1074025676", token.INT, 0)), + "TUNSETPERSIST": reflect.ValueOf(constant.MakeFromLiteral("1074025675", token.INT, 0)), + "TUNSETQUEUE": reflect.ValueOf(constant.MakeFromLiteral("1074025689", token.INT, 0)), + "TUNSETSNDBUF": reflect.ValueOf(constant.MakeFromLiteral("1074025684", token.INT, 0)), + "TUNSETTXFILTER": reflect.ValueOf(constant.MakeFromLiteral("1074025681", token.INT, 0)), + "TUNSETVNETBE": reflect.ValueOf(constant.MakeFromLiteral("1074025694", token.INT, 0)), + "TUNSETVNETHDRSZ": reflect.ValueOf(constant.MakeFromLiteral("1074025688", token.INT, 0)), + "TUNSETVNETLE": reflect.ValueOf(constant.MakeFromLiteral("1074025692", token.INT, 0)), + "Tee": reflect.ValueOf(syscall.Tee), + "Tgkill": reflect.ValueOf(syscall.Tgkill), + "Time": reflect.ValueOf(syscall.Time), + "Times": reflect.ValueOf(syscall.Times), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "Uname": reflect.ValueOf(syscall.Uname), + "UnixCredentials": reflect.ValueOf(syscall.UnixCredentials), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unlinkat": reflect.ValueOf(syscall.Unlinkat), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Unshare": reflect.ValueOf(syscall.Unshare), + "Ustat": reflect.ValueOf(syscall.Ustat), + "Utime": reflect.ValueOf(syscall.Utime), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOTHREAD": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "WORDSIZE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + "XCASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + + // type definitions + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "EpollEvent": reflect.ValueOf((*syscall.EpollEvent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPMreqn": reflect.ValueOf((*syscall.IPMreqn)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAddrmsg": reflect.ValueOf((*syscall.IfAddrmsg)(nil)), + "IfInfomsg": reflect.ValueOf((*syscall.IfInfomsg)(nil)), + "Inet4Pktinfo": reflect.ValueOf((*syscall.Inet4Pktinfo)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InotifyEvent": reflect.ValueOf((*syscall.InotifyEvent)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "NetlinkMessage": reflect.ValueOf((*syscall.NetlinkMessage)(nil)), + "NetlinkRouteAttr": reflect.ValueOf((*syscall.NetlinkRouteAttr)(nil)), + "NetlinkRouteRequest": reflect.ValueOf((*syscall.NetlinkRouteRequest)(nil)), + "NlAttr": reflect.ValueOf((*syscall.NlAttr)(nil)), + "NlMsgerr": reflect.ValueOf((*syscall.NlMsgerr)(nil)), + "NlMsghdr": reflect.ValueOf((*syscall.NlMsghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrLinklayer": reflect.ValueOf((*syscall.RawSockaddrLinklayer)(nil)), + "RawSockaddrNetlink": reflect.ValueOf((*syscall.RawSockaddrNetlink)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtAttr": reflect.ValueOf((*syscall.RtAttr)(nil)), + "RtGenmsg": reflect.ValueOf((*syscall.RtGenmsg)(nil)), + "RtMsg": reflect.ValueOf((*syscall.RtMsg)(nil)), + "RtNexthop": reflect.ValueOf((*syscall.RtNexthop)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "SockFilter": reflect.ValueOf((*syscall.SockFilter)(nil)), + "SockFprog": reflect.ValueOf((*syscall.SockFprog)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrLinklayer": reflect.ValueOf((*syscall.SockaddrLinklayer)(nil)), + "SockaddrNetlink": reflect.ValueOf((*syscall.SockaddrNetlink)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "SysProcIDMap": reflect.ValueOf((*syscall.SysProcIDMap)(nil)), + "Sysinfo_t": reflect.ValueOf((*syscall.Sysinfo_t)(nil)), + "TCPInfo": reflect.ValueOf((*syscall.TCPInfo)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Time_t": reflect.ValueOf((*syscall.Time_t)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timex": reflect.ValueOf((*syscall.Timex)(nil)), + "Tms": reflect.ValueOf((*syscall.Tms)(nil)), + "Ucred": reflect.ValueOf((*syscall.Ucred)(nil)), + "Ustat_t": reflect.ValueOf((*syscall.Ustat_t)(nil)), + "Utimbuf": reflect.ValueOf((*syscall.Utimbuf)(nil)), + "Utsname": reflect.ValueOf((*syscall.Utsname)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_netbsd_386.go b/stdlib/syscall/go1_19_syscall_netbsd_386.go new file mode 100644 index 000000000..a62554285 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_netbsd_386.go @@ -0,0 +1,2143 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EN_SW_CTL_INF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "EN_SW_CTL_PREC": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "EN_SW_CTL_ROUND": reflect.ValueOf(constant.MakeFromLiteral("3072", token.INT, 0)), + "EN_SW_DATACHAIN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EN_SW_DENORM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EN_SW_INVOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EN_SW_OVERFLOW": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EN_SW_PRECLOSS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EN_SW_UNDERFLOW": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EN_SW_ZERODIV": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_netbsd_amd64.go b/stdlib/syscall/go1_19_syscall_netbsd_amd64.go new file mode 100644 index 000000000..fd0d3f639 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_netbsd_amd64.go @@ -0,0 +1,2133 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_netbsd_arm.go b/stdlib/syscall/go1_19_syscall_netbsd_arm.go new file mode 100644 index 000000000..20aa1cd5c --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_netbsd_arm.go @@ -0,0 +1,2119 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766775", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545275", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287098", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148024946", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148024947", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2150658570", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2150658571", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223087483", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3230951712", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776678", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951813", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223087495", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3225708932", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2149345659", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157209887", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2149345672", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3230951814", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558040", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1208513606", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1208513608", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775557", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2147775556", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_netbsd_arm64.go b/stdlib/syscall/go1_19_syscall_netbsd_arm64.go new file mode 100644 index 000000000..fd0d3f639 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_netbsd_arm64.go @@ -0,0 +1,2133 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_ARP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_STRIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("460800", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("921600", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291063", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1083196011", token.INT, 0)), + "BIOCGFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762806", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2156937836", token.INT, 0)), + "BIOCSFEEDBACK": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549242", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("2148549234", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("2148549235", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_ALIGNMENT32": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CLONE_CSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CLONE_FILES": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CLONE_FS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CLONE_PID": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CLONE_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CLONE_SIGHAND": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CLONE_VFORK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CLONE_VM": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CTL_QUERY": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCBSFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536896632", token.INT, 0)), + "DLT_A429": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "DLT_A653_ICM": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_AOS": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_AX25_KISS": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "DLT_BLUETOOTH_HCI_H4_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "DLT_CAN20B": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "DLT_CAN_SOCKETCAN": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_C_HDLC_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "DLT_DECT": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FC_2": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "DLT_FC_2_WITH_FRAME_DELIMS": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FLEXRAY": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_FRELAY_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_GSMTAP_ABIS": reflect.ValueOf(constant.MakeFromLiteral("218", token.INT, 0)), + "DLT_GSMTAP_UM": reflect.ValueOf(constant.MakeFromLiteral("217", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IEEE802_15_4": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "DLT_IEEE802_15_4_LINUX": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "DLT_IEEE802_15_4_NONASK_PHY": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "DLT_IEEE802_16_MAC_CPS_RADIO": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "DLT_IPMB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "DLT_IPMB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "DLT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("229", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_ISM": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_JUNIPER_ST": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "DLT_JUNIPER_VP": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "DLT_LAPB_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "DLT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "DLT_LIN": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "DLT_LINUX_EVDEV": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MFR": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "DLT_MOST": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPI": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PPP_WITH_DIR": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAIF1": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SITA": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "DLT_USB": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "DLT_USB_LINUX": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "DLT_USB_LINUX_MMAPPED": reflect.ValueOf(constant.MakeFromLiteral("220", token.INT, 0)), + "DLT_WIHART": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "DLT_X2E_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "DLT_X2E_XORAYA": reflect.ValueOf(constant.MakeFromLiteral("214", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DT_WHT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "EMUL_LINUX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_LINUX32": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EMUL_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERCAP_JUMBO_MTU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERCAP_VLAN_HWTAGGING": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHERCAP_VLAN_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERMTU_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9000", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOWPROTOCOLS": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MAX_LEN_JUMBO": reflect.ValueOf(constant.MakeFromLiteral("9018", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_PPPOE_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_CLOSEM": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "F_FSCTL": reflect.ValueOf(constant.MakeFromLiteral("-2147483648", token.INT, 0)), + "F_FSDIRMASK": reflect.ValueOf(constant.MakeFromLiteral("1879048192", token.INT, 0)), + "F_FSIN": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "F_FSINOUT": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "F_FSOUT": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "F_FSPRIV": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "F_FSVOID": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_MAXFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_PARAM_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_PARAM_MAX": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETNOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36690", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_STF": reflect.ValueOf(constant.MakeFromLiteral("215", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_IPV6_ICMP": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_EF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_ERRORMTU": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPSEC_POLICY": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINFRAGSIZE": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ALIGNMENT_16MB": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "MAP_ALIGNMENT_1TB": reflect.ValueOf(constant.MakeFromLiteral("671088640", token.INT, 0)), + "MAP_ALIGNMENT_256TB": reflect.ValueOf(constant.MakeFromLiteral("805306368", token.INT, 0)), + "MAP_ALIGNMENT_4GB": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "MAP_ALIGNMENT_64KB": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "MAP_ALIGNMENT_64PB": reflect.ValueOf(constant.MakeFromLiteral("939524096", token.INT, 0)), + "MAP_ALIGNMENT_MASK": reflect.ValueOf(constant.MakeFromLiteral("-16777216", token.INT, 0)), + "MAP_ALIGNMENT_SHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_WIRED": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CONTROLMBUF": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_IOVUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "MSG_LENUSRSPACE": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NAMEMBUF": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "MSG_NBIO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_USERFLAGS": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("511", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_OIFLIST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_OOIFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OFIOGETBMAP": reflect.ValueOf(constant.MakeFromLiteral("3221513850", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_ALT_IO": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PRI_IOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_TAG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_TAG": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SRC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_LLINFO_UPD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OIFINFO": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_OOIFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_SETGATE": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_CREDS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947761", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("2151182858", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860636", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2156947762", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("2151182859", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947737", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947785", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860638", token.INT, 0)), + "SIOCGDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("3223873915", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3230689784", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689569", token.INT, 0)), + "SIOCGIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("3231213856", token.INT, 0)), + "SIOCGIFALIAS": reflect.ValueOf(constant.MakeFromLiteral("3225446683", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689571", token.INT, 0)), + "SIOCGIFCAP": reflect.ValueOf(constant.MakeFromLiteral("3223349622", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300966", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213957", token.INT, 0)), + "SIOCGIFDLT": reflect.ValueOf(constant.MakeFromLiteral("3230689655", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689570", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3230689553", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3230689594", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3230689559", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3230689662", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3230689573", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689608", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3230689607", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602461", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3239602507", token.INT, 0)), + "SIOCGLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("3223873927", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3230689667", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2156947834", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2156947833", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCINITIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3228592516", token.INT, 0)), + "SIOCSDRVSPEC": reflect.ValueOf(constant.MakeFromLiteral("2150132091", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2156947959", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947724", token.INT, 0)), + "SIOCSIFADDRPREF": reflect.ValueOf(constant.MakeFromLiteral("2157472031", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947731", token.INT, 0)), + "SIOCSIFCAP": reflect.ValueOf(constant.MakeFromLiteral("2149607797", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2156947726", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2156947728", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2156947769", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3230689589", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2156947736", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2156947839", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2156947734", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2165860682", token.INT, 0)), + "SIOCSLINKSTR": reflect.ValueOf(constant.MakeFromLiteral("2150132104", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3230689666", token.INT, 0)), + "SIOCZIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3231213958", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_FLAGS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "SOCK_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ACCEPTFILTER": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NOHEADER": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_NOSIGPIPE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_OVERFLOWED": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYSCTL_VERSION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYSCTL_VERS_1": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "SYSCTL_VERS_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("421", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_BREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("429", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("427", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("428", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("454", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_EXTATTRCTL": reflect.ValueOf(constant.MakeFromLiteral("360", token.INT, 0)), + "SYS_EXTATTR_DELETE_FD": reflect.ValueOf(constant.MakeFromLiteral("366", token.INT, 0)), + "SYS_EXTATTR_DELETE_FILE": reflect.ValueOf(constant.MakeFromLiteral("363", token.INT, 0)), + "SYS_EXTATTR_DELETE_LINK": reflect.ValueOf(constant.MakeFromLiteral("369", token.INT, 0)), + "SYS_EXTATTR_GET_FD": reflect.ValueOf(constant.MakeFromLiteral("365", token.INT, 0)), + "SYS_EXTATTR_GET_FILE": reflect.ValueOf(constant.MakeFromLiteral("362", token.INT, 0)), + "SYS_EXTATTR_GET_LINK": reflect.ValueOf(constant.MakeFromLiteral("368", token.INT, 0)), + "SYS_EXTATTR_LIST_FD": reflect.ValueOf(constant.MakeFromLiteral("370", token.INT, 0)), + "SYS_EXTATTR_LIST_FILE": reflect.ValueOf(constant.MakeFromLiteral("371", token.INT, 0)), + "SYS_EXTATTR_LIST_LINK": reflect.ValueOf(constant.MakeFromLiteral("372", token.INT, 0)), + "SYS_EXTATTR_SET_FD": reflect.ValueOf(constant.MakeFromLiteral("364", token.INT, 0)), + "SYS_EXTATTR_SET_FILE": reflect.ValueOf(constant.MakeFromLiteral("361", token.INT, 0)), + "SYS_EXTATTR_SET_LINK": reflect.ValueOf(constant.MakeFromLiteral("367", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("462", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("463", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("464", token.INT, 0)), + "SYS_FCHROOT": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FDATASYNC": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "SYS_FEXECVE": reflect.ValueOf(constant.MakeFromLiteral("465", token.INT, 0)), + "SYS_FGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("380", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("451", token.INT, 0)), + "SYS_FKTRACE": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_FLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("383", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("386", token.INT, 0)), + "SYS_FSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("377", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("440", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("466", token.INT, 0)), + "SYS_FSTATVFS1": reflect.ValueOf(constant.MakeFromLiteral("358", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FSYNC_RANGE": reflect.ValueOf(constant.MakeFromLiteral("354", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("472", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("423", token.INT, 0)), + "SYS_GETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("307", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("390", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("395", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("426", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("445", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("418", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_GETVFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("356", token.INT, 0)), + "SYS_GETXATTR": reflect.ValueOf(constant.MakeFromLiteral("378", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("435", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("344", token.INT, 0)), + "SYS_KQUEUE1": reflect.ValueOf(constant.MakeFromLiteral("455", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS_LCHMOD": reflect.ValueOf(constant.MakeFromLiteral("274", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("275", token.INT, 0)), + "SYS_LGETXATTR": reflect.ValueOf(constant.MakeFromLiteral("379", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("457", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("381", token.INT, 0)), + "SYS_LLISTXATTR": reflect.ValueOf(constant.MakeFromLiteral("382", token.INT, 0)), + "SYS_LREMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("385", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSETXATTR": reflect.ValueOf(constant.MakeFromLiteral("376", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("441", token.INT, 0)), + "SYS_LUTIMES": reflect.ValueOf(constant.MakeFromLiteral("424", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("273", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("461", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("459", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("450", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("460", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MODCTL": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("410", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MREMAP": reflect.ValueOf(constant.MakeFromLiteral("411", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("444", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("430", token.INT, 0)), + "SYS_NTP_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "SYS_NTP_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("468", token.INT, 0)), + "SYS_PACCEPT": reflect.ValueOf(constant.MakeFromLiteral("456", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("453", token.INT, 0)), + "SYS_PMC_CONTROL": reflect.ValueOf(constant.MakeFromLiteral("342", token.INT, 0)), + "SYS_PMC_GET_INFO": reflect.ValueOf(constant.MakeFromLiteral("341", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_POLLTS": reflect.ValueOf(constant.MakeFromLiteral("437", token.INT, 0)), + "SYS_POSIX_FADVISE": reflect.ValueOf(constant.MakeFromLiteral("416", token.INT, 0)), + "SYS_POSIX_SPAWN": reflect.ValueOf(constant.MakeFromLiteral("474", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("436", token.INT, 0)), + "SYS_PSET_ASSIGN": reflect.ValueOf(constant.MakeFromLiteral("414", token.INT, 0)), + "SYS_PSET_CREATE": reflect.ValueOf(constant.MakeFromLiteral("412", token.INT, 0)), + "SYS_PSET_DESTROY": reflect.ValueOf(constant.MakeFromLiteral("413", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_RASCTL": reflect.ValueOf(constant.MakeFromLiteral("343", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("469", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMMSG": reflect.ValueOf(constant.MakeFromLiteral("475", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_REMOVEXATTR": reflect.ValueOf(constant.MakeFromLiteral("384", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("458", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SBRK": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("350", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("417", token.INT, 0)), + "SYS_SEMCONFIG": reflect.ValueOf(constant.MakeFromLiteral("223", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("222", token.INT, 0)), + "SYS_SENDMMSG": reflect.ValueOf(constant.MakeFromLiteral("476", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("308", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("425", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("419", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SETXATTR": reflect.ValueOf(constant.MakeFromLiteral("375", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("443", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("231", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGQUEUEINFO": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("394", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_SSTK": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("439", token.INT, 0)), + "SYS_STATVFS1": reflect.ValueOf(constant.MakeFromLiteral("357", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("470", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TIMER_CREATE": reflect.ValueOf(constant.MakeFromLiteral("235", token.INT, 0)), + "SYS_TIMER_DELETE": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SYS_TIMER_GETOVERRUN": reflect.ValueOf(constant.MakeFromLiteral("239", token.INT, 0)), + "SYS_TIMER_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("447", token.INT, 0)), + "SYS_TIMER_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("446", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNDELETE": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("471", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("467", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("420", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("306", token.INT, 0)), + "SYS_UUIDGEN": reflect.ValueOf(constant.MakeFromLiteral("355", token.INT, 0)), + "SYS_VADVISE": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("449", token.INT, 0)), + "SYS_WAIT6": reflect.ValueOf(constant.MakeFromLiteral("481", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS__LWP_CONTINUE": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS__LWP_CREATE": reflect.ValueOf(constant.MakeFromLiteral("309", token.INT, 0)), + "SYS__LWP_CTL": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS__LWP_DETACH": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS__LWP_EXIT": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS__LWP_GETNAME": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS__LWP_GETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("316", token.INT, 0)), + "SYS__LWP_KILL": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS__LWP_PARK": reflect.ValueOf(constant.MakeFromLiteral("434", token.INT, 0)), + "SYS__LWP_SELF": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS__LWP_SETNAME": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS__LWP_SETPRIVATE": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS__LWP_SUSPEND": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS__LWP_UNPARK": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS__LWP_UNPARK_ALL": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS__LWP_WAIT": reflect.ValueOf(constant.MakeFromLiteral("312", token.INT, 0)), + "SYS__LWP_WAKEUP": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS__PSET_BIND": reflect.ValueOf(constant.MakeFromLiteral("415", token.INT, 0)), + "SYS__SCHED_GETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("349", token.INT, 0)), + "SYS__SCHED_GETPARAM": reflect.ValueOf(constant.MakeFromLiteral("347", token.INT, 0)), + "SYS__SCHED_SETAFFINITY": reflect.ValueOf(constant.MakeFromLiteral("348", token.INT, 0)), + "SYS__SCHED_SETPARAM": reflect.ValueOf(constant.MakeFromLiteral("346", token.INT, 0)), + "SYS___CLONE": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS___GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS___POSIX_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS___POSIX_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS___POSIX_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("285", token.INT, 0)), + "SYS___POSIX_RENAME": reflect.ValueOf(constant.MakeFromLiteral("270", token.INT, 0)), + "SYS___QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("473", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("442", token.INT, 0)), + "SYS___SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS___SIGACTION_SIGTRAMP": reflect.ValueOf(constant.MakeFromLiteral("340", token.INT, 0)), + "SYS___SIGTIMEDWAIT": reflect.ValueOf(constant.MakeFromLiteral("431", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "S_ARCH1": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "S_ARCH2": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "S_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IEXEC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IFWHT": reflect.ValueOf(constant.MakeFromLiteral("57344", token.INT, 0)), + "S_IREAD": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRGRP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "S_IROTH": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_IRWXU": reflect.ValueOf(constant.MakeFromLiteral("448", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISTXT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWGRP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "S_IWOTH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXGRP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "S_IXOTH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "S_LOGIN_SET": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_CONGCTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_KEEPINIT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_MINMSS": reflect.ValueOf(constant.MakeFromLiteral("216", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDCDTIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820184", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CDTRCTS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGLINED": reflect.ValueOf(constant.MakeFromLiteral("1075868738", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGQSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074033793", token.INT, 0)), + "TIOCGRANTPT": reflect.ValueOf(constant.MakeFromLiteral("536900679", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGSIZE": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCPTMGET": reflect.ValueOf(constant.MakeFromLiteral("1076393030", token.INT, 0)), + "TIOCPTSNAME": reflect.ValueOf(constant.MakeFromLiteral("1076393032", token.INT, 0)), + "TIOCRCVFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037701", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("536900703", token.INT, 0)), + "TIOCSLINED": reflect.ValueOf(constant.MakeFromLiteral("2149610563", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSQSIZE": reflect.ValueOf(constant.MakeFromLiteral("2147775616", token.INT, 0)), + "TIOCSSIZE": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCXMTFRAME": reflect.ValueOf(constant.MakeFromLiteral("2148037700", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALLSIG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCLONE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "WNOZOMBIE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WOPTSCHECKED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Sysctlnode": reflect.ValueOf((*syscall.Sysctlnode)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_openbsd_386.go b/stdlib/syscall/go1_19_syscall_openbsd_386.go new file mode 100644 index 000000000..509c8f180 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_openbsd_386.go @@ -0,0 +1,1976 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PT_MASK": reflect.ValueOf(constant.MakeFromLiteral("4190208", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), + "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("236", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_openbsd_amd64.go b/stdlib/syscall/go1_19_syscall_openbsd_amd64.go new file mode 100644 index 000000000..156ee1013 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_openbsd_amd64.go @@ -0,0 +1,1975 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_OK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("8183", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_DONATE_COPY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("1112072", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153277756", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153277761", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153277757", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153277762", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153277768", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227019582", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), + "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019580", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227019586", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153277781", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153277759", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153277780", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3224398134", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("224", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_openbsd_arm.go b/stdlib/syscall/go1_19_syscall_openbsd_arm.go new file mode 100644 index 000000000..0f0bcdf72 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_openbsd_arm.go @@ -0,0 +1,1979 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3221766779", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074545262", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148024935", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148024951", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148287085", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFA_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DIVERT_INIT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_DIVERT_RESP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DIVERTFL": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("16375", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("7403528", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869959", token.INT, 0)), + "SIOCALIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637852", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153015612", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153015617", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2154719565", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153015613", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153015618", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153015624", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2154719566", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222563137", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222563154", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222563153", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3226757438", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222563155", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225184600", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222563152", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3223873871", token.INT, 0)), + "SIOCBRDGGSIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757436", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222563142", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3226757442", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3222825283", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2148821312", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2148821330", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2148821329", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153015637", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153015615", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153015636", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2148821331", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2148821328", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2148821338", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2148821317", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2148821337", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2149869961", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637854", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566196", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3222566195", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("3223349628", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3221776676", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223611787", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223611786", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223611784", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223873846", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349576", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFPSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349575", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), + "SIOCGIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("3223349638", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379677", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222038904", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775232", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFASYNCMAP": reflect.ValueOf(constant.MakeFromLiteral("2149607805", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2149869964", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349557", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704902", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFTIMESLOT": reflect.ValueOf(constant.MakeFromLiteral("2149607813", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("2147775234", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINCORE": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_NSTATES": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074558043", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("2147775589", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("2147578994", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_openbsd_arm64.go b/stdlib/syscall/go1_19_syscall_openbsd_arm64.go new file mode 100644 index 000000000..230faf1e6 --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_openbsd_arm64.go @@ -0,0 +1,2074 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294967055", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), + "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), + "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), + "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), + "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), + "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), + "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), + "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), + "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), + "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), + "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), + "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), + "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), + "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), + "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), + "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), + "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), + "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), + "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), + "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), + "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), + "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), + "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), + "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_openbsd_mips64.go b/stdlib/syscall/go1_19_syscall_openbsd_mips64.go new file mode 100644 index 000000000..79510a88a --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_openbsd_mips64.go @@ -0,0 +1,2084 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_CNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_COIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_E164": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_ISDN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_ISO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "AF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "AF_NATM": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_SIP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("115200", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("1200", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "B14400": reflect.ValueOf(constant.MakeFromLiteral("14400", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("1800", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("230400", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("2400", token.INT, 0)), + "B28800": reflect.ValueOf(constant.MakeFromLiteral("28800", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("300", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("4800", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("57600", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("600", token.INT, 0)), + "B7200": reflect.ValueOf(constant.MakeFromLiteral("7200", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("76800", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("9600", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("1074020988", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("3222291067", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGFILDROP": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRSIG": reflect.ValueOf(constant.MakeFromLiteral("1074020979", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807406", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("2147762800", token.INT, 0)), + "BIOCLOCK": reflect.ValueOf(constant.MakeFromLiteral("536887926", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("3221504614", token.INT, 0)), + "BIOCSDIRFILT": reflect.ValueOf(constant.MakeFromLiteral("2147762813", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("2147762810", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("2148549223", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("2149597804", token.INT, 0)), + "BIOCSETWF": reflect.ValueOf(constant.MakeFromLiteral("2148549239", token.INT, 0)), + "BIOCSFILDROP": reflect.ValueOf(constant.MakeFromLiteral("2147762809", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("2147762805", token.INT, 0)), + "BIOCSRSIG": reflect.ValueOf(constant.MakeFromLiteral("2147762802", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("2148549229", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DIRECTION_IN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_DIRECTION_OUT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_FILDROP_CAPTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_FILDROP_DROP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_FILDROP_PASS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BpfBuflen": reflect.ValueOf(syscall.BpfBuflen), + "BpfDatalink": reflect.ValueOf(syscall.BpfDatalink), + "BpfHeadercmpl": reflect.ValueOf(syscall.BpfHeadercmpl), + "BpfInterface": reflect.ValueOf(syscall.BpfInterface), + "BpfJump": reflect.ValueOf(syscall.BpfJump), + "BpfStats": reflect.ValueOf(syscall.BpfStats), + "BpfStmt": reflect.ValueOf(syscall.BpfStmt), + "BpfTimeout": reflect.ValueOf(syscall.BpfTimeout), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("768", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTATUS": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CTL_MAXNAME": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "CTL_NET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "CheckBpfVersion": reflect.ValueOf(syscall.CheckBpfVersion), + "Chflags": reflect.ValueOf(syscall.Chflags), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DIOCOSFPFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536888398", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("219", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_OPENFLOW": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_PPP_ETHER": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "DLT_PPP_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_USBPCAP": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DLT_USER0": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "DLT_USER1": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "DLT_USER10": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "DLT_USER11": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "DLT_USER12": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "DLT_USER13": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "DLT_USER14": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "DLT_USER15": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_USER2": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "DLT_USER3": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "DLT_USER4": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "DLT_USER5": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "DLT_USER6": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "DLT_USER7": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "DLT_USER8": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "DLT_USER9": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "DT_BLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DT_CHR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DT_DIR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DT_FIFO": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DT_LNK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DT_REG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DT_SOCK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DT_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "Dup2": reflect.ValueOf(syscall.Dup2), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EAUTH": reflect.ValueOf(syscall.EAUTH), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADRPC": reflect.ValueOf(syscall.EBADRPC), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EFTYPE": reflect.ValueOf(syscall.EFTYPE), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EIPSEC": reflect.ValueOf(syscall.EIPSEC), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "ELAST": reflect.ValueOf(syscall.ELAST), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_TAGOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMUL_NATIVE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENDRUNDISC": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "ENEEDAUTH": reflect.ValueOf(syscall.ENEEDAUTH), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOATTR": reflect.ValueOf(syscall.ENOATTR), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROCLIM": reflect.ValueOf(syscall.EPROCLIM), + "EPROCUNAVAIL": reflect.ValueOf(syscall.EPROCUNAVAIL), + "EPROGMISMATCH": reflect.ValueOf(syscall.EPROGMISMATCH), + "EPROGUNAVAIL": reflect.ValueOf(syscall.EPROGUNAVAIL), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERPCMISMATCH": reflect.ValueOf(syscall.ERPCMISMATCH), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ETHERMIN": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "ETHERMTU": reflect.ValueOf(constant.MakeFromLiteral("1500", token.INT, 0)), + "ETHERTYPE_8023": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHERTYPE_AARP": reflect.ValueOf(constant.MakeFromLiteral("33011", token.INT, 0)), + "ETHERTYPE_ACCTON": reflect.ValueOf(constant.MakeFromLiteral("33680", token.INT, 0)), + "ETHERTYPE_AEONIC": reflect.ValueOf(constant.MakeFromLiteral("32822", token.INT, 0)), + "ETHERTYPE_ALPHA": reflect.ValueOf(constant.MakeFromLiteral("33098", token.INT, 0)), + "ETHERTYPE_AMBER": reflect.ValueOf(constant.MakeFromLiteral("24584", token.INT, 0)), + "ETHERTYPE_AMOEBA": reflect.ValueOf(constant.MakeFromLiteral("33093", token.INT, 0)), + "ETHERTYPE_AOE": reflect.ValueOf(constant.MakeFromLiteral("34978", token.INT, 0)), + "ETHERTYPE_APOLLO": reflect.ValueOf(constant.MakeFromLiteral("33015", token.INT, 0)), + "ETHERTYPE_APOLLODOMAIN": reflect.ValueOf(constant.MakeFromLiteral("32793", token.INT, 0)), + "ETHERTYPE_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_APPLITEK": reflect.ValueOf(constant.MakeFromLiteral("32967", token.INT, 0)), + "ETHERTYPE_ARGONAUT": reflect.ValueOf(constant.MakeFromLiteral("32826", token.INT, 0)), + "ETHERTYPE_ARP": reflect.ValueOf(constant.MakeFromLiteral("2054", token.INT, 0)), + "ETHERTYPE_AT": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATALK": reflect.ValueOf(constant.MakeFromLiteral("32923", token.INT, 0)), + "ETHERTYPE_ATOMIC": reflect.ValueOf(constant.MakeFromLiteral("34527", token.INT, 0)), + "ETHERTYPE_ATT": reflect.ValueOf(constant.MakeFromLiteral("32873", token.INT, 0)), + "ETHERTYPE_ATTSTANFORD": reflect.ValueOf(constant.MakeFromLiteral("32776", token.INT, 0)), + "ETHERTYPE_AUTOPHON": reflect.ValueOf(constant.MakeFromLiteral("32874", token.INT, 0)), + "ETHERTYPE_AXIS": reflect.ValueOf(constant.MakeFromLiteral("34902", token.INT, 0)), + "ETHERTYPE_BCLOOP": reflect.ValueOf(constant.MakeFromLiteral("36867", token.INT, 0)), + "ETHERTYPE_BOFL": reflect.ValueOf(constant.MakeFromLiteral("33026", token.INT, 0)), + "ETHERTYPE_CABLETRON": reflect.ValueOf(constant.MakeFromLiteral("28724", token.INT, 0)), + "ETHERTYPE_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("2052", token.INT, 0)), + "ETHERTYPE_COMDESIGN": reflect.ValueOf(constant.MakeFromLiteral("32876", token.INT, 0)), + "ETHERTYPE_COMPUGRAPHIC": reflect.ValueOf(constant.MakeFromLiteral("32877", token.INT, 0)), + "ETHERTYPE_COUNTERPOINT": reflect.ValueOf(constant.MakeFromLiteral("32866", token.INT, 0)), + "ETHERTYPE_CRONUS": reflect.ValueOf(constant.MakeFromLiteral("32772", token.INT, 0)), + "ETHERTYPE_CRONUSVLN": reflect.ValueOf(constant.MakeFromLiteral("32771", token.INT, 0)), + "ETHERTYPE_DCA": reflect.ValueOf(constant.MakeFromLiteral("4660", token.INT, 0)), + "ETHERTYPE_DDE": reflect.ValueOf(constant.MakeFromLiteral("32891", token.INT, 0)), + "ETHERTYPE_DEBNI": reflect.ValueOf(constant.MakeFromLiteral("43690", token.INT, 0)), + "ETHERTYPE_DECAM": reflect.ValueOf(constant.MakeFromLiteral("32840", token.INT, 0)), + "ETHERTYPE_DECCUST": reflect.ValueOf(constant.MakeFromLiteral("24582", token.INT, 0)), + "ETHERTYPE_DECDIAG": reflect.ValueOf(constant.MakeFromLiteral("24581", token.INT, 0)), + "ETHERTYPE_DECDNS": reflect.ValueOf(constant.MakeFromLiteral("32828", token.INT, 0)), + "ETHERTYPE_DECDTS": reflect.ValueOf(constant.MakeFromLiteral("32830", token.INT, 0)), + "ETHERTYPE_DECEXPER": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "ETHERTYPE_DECLAST": reflect.ValueOf(constant.MakeFromLiteral("32833", token.INT, 0)), + "ETHERTYPE_DECLTM": reflect.ValueOf(constant.MakeFromLiteral("32831", token.INT, 0)), + "ETHERTYPE_DECMUMPS": reflect.ValueOf(constant.MakeFromLiteral("24585", token.INT, 0)), + "ETHERTYPE_DECNETBIOS": reflect.ValueOf(constant.MakeFromLiteral("32832", token.INT, 0)), + "ETHERTYPE_DELTACON": reflect.ValueOf(constant.MakeFromLiteral("34526", token.INT, 0)), + "ETHERTYPE_DIDDLE": reflect.ValueOf(constant.MakeFromLiteral("17185", token.INT, 0)), + "ETHERTYPE_DLOG1": reflect.ValueOf(constant.MakeFromLiteral("1632", token.INT, 0)), + "ETHERTYPE_DLOG2": reflect.ValueOf(constant.MakeFromLiteral("1633", token.INT, 0)), + "ETHERTYPE_DN": reflect.ValueOf(constant.MakeFromLiteral("24579", token.INT, 0)), + "ETHERTYPE_DOGFIGHT": reflect.ValueOf(constant.MakeFromLiteral("6537", token.INT, 0)), + "ETHERTYPE_DSMD": reflect.ValueOf(constant.MakeFromLiteral("32825", token.INT, 0)), + "ETHERTYPE_ECMA": reflect.ValueOf(constant.MakeFromLiteral("2051", token.INT, 0)), + "ETHERTYPE_ENCRYPT": reflect.ValueOf(constant.MakeFromLiteral("32829", token.INT, 0)), + "ETHERTYPE_ES": reflect.ValueOf(constant.MakeFromLiteral("32861", token.INT, 0)), + "ETHERTYPE_EXCELAN": reflect.ValueOf(constant.MakeFromLiteral("32784", token.INT, 0)), + "ETHERTYPE_EXPERDATA": reflect.ValueOf(constant.MakeFromLiteral("32841", token.INT, 0)), + "ETHERTYPE_FLIP": reflect.ValueOf(constant.MakeFromLiteral("33094", token.INT, 0)), + "ETHERTYPE_FLOWCONTROL": reflect.ValueOf(constant.MakeFromLiteral("34824", token.INT, 0)), + "ETHERTYPE_FRARP": reflect.ValueOf(constant.MakeFromLiteral("2056", token.INT, 0)), + "ETHERTYPE_GENDYN": reflect.ValueOf(constant.MakeFromLiteral("32872", token.INT, 0)), + "ETHERTYPE_HAYES": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_HIPPI_FP": reflect.ValueOf(constant.MakeFromLiteral("33152", token.INT, 0)), + "ETHERTYPE_HITACHI": reflect.ValueOf(constant.MakeFromLiteral("34848", token.INT, 0)), + "ETHERTYPE_HP": reflect.ValueOf(constant.MakeFromLiteral("32773", token.INT, 0)), + "ETHERTYPE_IEEEPUP": reflect.ValueOf(constant.MakeFromLiteral("2560", token.INT, 0)), + "ETHERTYPE_IEEEPUPAT": reflect.ValueOf(constant.MakeFromLiteral("2561", token.INT, 0)), + "ETHERTYPE_IMLBL": reflect.ValueOf(constant.MakeFromLiteral("19522", token.INT, 0)), + "ETHERTYPE_IMLBLDIAG": reflect.ValueOf(constant.MakeFromLiteral("16972", token.INT, 0)), + "ETHERTYPE_IP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ETHERTYPE_IPAS": reflect.ValueOf(constant.MakeFromLiteral("34668", token.INT, 0)), + "ETHERTYPE_IPV6": reflect.ValueOf(constant.MakeFromLiteral("34525", token.INT, 0)), + "ETHERTYPE_IPX": reflect.ValueOf(constant.MakeFromLiteral("33079", token.INT, 0)), + "ETHERTYPE_IPXNEW": reflect.ValueOf(constant.MakeFromLiteral("32823", token.INT, 0)), + "ETHERTYPE_KALPANA": reflect.ValueOf(constant.MakeFromLiteral("34178", token.INT, 0)), + "ETHERTYPE_LANBRIDGE": reflect.ValueOf(constant.MakeFromLiteral("32824", token.INT, 0)), + "ETHERTYPE_LANPROBE": reflect.ValueOf(constant.MakeFromLiteral("34952", token.INT, 0)), + "ETHERTYPE_LAT": reflect.ValueOf(constant.MakeFromLiteral("24580", token.INT, 0)), + "ETHERTYPE_LBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_LITTLE": reflect.ValueOf(constant.MakeFromLiteral("32864", token.INT, 0)), + "ETHERTYPE_LLDP": reflect.ValueOf(constant.MakeFromLiteral("35020", token.INT, 0)), + "ETHERTYPE_LOGICRAFT": reflect.ValueOf(constant.MakeFromLiteral("33096", token.INT, 0)), + "ETHERTYPE_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("36864", token.INT, 0)), + "ETHERTYPE_MACSEC": reflect.ValueOf(constant.MakeFromLiteral("35045", token.INT, 0)), + "ETHERTYPE_MATRA": reflect.ValueOf(constant.MakeFromLiteral("32890", token.INT, 0)), + "ETHERTYPE_MAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "ETHERTYPE_MERIT": reflect.ValueOf(constant.MakeFromLiteral("32892", token.INT, 0)), + "ETHERTYPE_MICP": reflect.ValueOf(constant.MakeFromLiteral("34618", token.INT, 0)), + "ETHERTYPE_MOPDL": reflect.ValueOf(constant.MakeFromLiteral("24577", token.INT, 0)), + "ETHERTYPE_MOPRC": reflect.ValueOf(constant.MakeFromLiteral("24578", token.INT, 0)), + "ETHERTYPE_MOTOROLA": reflect.ValueOf(constant.MakeFromLiteral("33165", token.INT, 0)), + "ETHERTYPE_MPLS": reflect.ValueOf(constant.MakeFromLiteral("34887", token.INT, 0)), + "ETHERTYPE_MPLS_MCAST": reflect.ValueOf(constant.MakeFromLiteral("34888", token.INT, 0)), + "ETHERTYPE_MUMPS": reflect.ValueOf(constant.MakeFromLiteral("33087", token.INT, 0)), + "ETHERTYPE_NBPCC": reflect.ValueOf(constant.MakeFromLiteral("15364", token.INT, 0)), + "ETHERTYPE_NBPCLAIM": reflect.ValueOf(constant.MakeFromLiteral("15369", token.INT, 0)), + "ETHERTYPE_NBPCLREQ": reflect.ValueOf(constant.MakeFromLiteral("15365", token.INT, 0)), + "ETHERTYPE_NBPCLRSP": reflect.ValueOf(constant.MakeFromLiteral("15366", token.INT, 0)), + "ETHERTYPE_NBPCREQ": reflect.ValueOf(constant.MakeFromLiteral("15362", token.INT, 0)), + "ETHERTYPE_NBPCRSP": reflect.ValueOf(constant.MakeFromLiteral("15363", token.INT, 0)), + "ETHERTYPE_NBPDG": reflect.ValueOf(constant.MakeFromLiteral("15367", token.INT, 0)), + "ETHERTYPE_NBPDGB": reflect.ValueOf(constant.MakeFromLiteral("15368", token.INT, 0)), + "ETHERTYPE_NBPDLTE": reflect.ValueOf(constant.MakeFromLiteral("15370", token.INT, 0)), + "ETHERTYPE_NBPRAR": reflect.ValueOf(constant.MakeFromLiteral("15372", token.INT, 0)), + "ETHERTYPE_NBPRAS": reflect.ValueOf(constant.MakeFromLiteral("15371", token.INT, 0)), + "ETHERTYPE_NBPRST": reflect.ValueOf(constant.MakeFromLiteral("15373", token.INT, 0)), + "ETHERTYPE_NBPSCD": reflect.ValueOf(constant.MakeFromLiteral("15361", token.INT, 0)), + "ETHERTYPE_NBPVCD": reflect.ValueOf(constant.MakeFromLiteral("15360", token.INT, 0)), + "ETHERTYPE_NBS": reflect.ValueOf(constant.MakeFromLiteral("2050", token.INT, 0)), + "ETHERTYPE_NCD": reflect.ValueOf(constant.MakeFromLiteral("33097", token.INT, 0)), + "ETHERTYPE_NESTAR": reflect.ValueOf(constant.MakeFromLiteral("32774", token.INT, 0)), + "ETHERTYPE_NETBEUI": reflect.ValueOf(constant.MakeFromLiteral("33169", token.INT, 0)), + "ETHERTYPE_NOVELL": reflect.ValueOf(constant.MakeFromLiteral("33080", token.INT, 0)), + "ETHERTYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHERTYPE_NSAT": reflect.ValueOf(constant.MakeFromLiteral("1537", token.INT, 0)), + "ETHERTYPE_NSCOMPAT": reflect.ValueOf(constant.MakeFromLiteral("2055", token.INT, 0)), + "ETHERTYPE_NTRAILER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ETHERTYPE_OS9": reflect.ValueOf(constant.MakeFromLiteral("28679", token.INT, 0)), + "ETHERTYPE_OS9NET": reflect.ValueOf(constant.MakeFromLiteral("28681", token.INT, 0)), + "ETHERTYPE_PACER": reflect.ValueOf(constant.MakeFromLiteral("32966", token.INT, 0)), + "ETHERTYPE_PAE": reflect.ValueOf(constant.MakeFromLiteral("34958", token.INT, 0)), + "ETHERTYPE_PBB": reflect.ValueOf(constant.MakeFromLiteral("35047", token.INT, 0)), + "ETHERTYPE_PCS": reflect.ValueOf(constant.MakeFromLiteral("16962", token.INT, 0)), + "ETHERTYPE_PLANNING": reflect.ValueOf(constant.MakeFromLiteral("32836", token.INT, 0)), + "ETHERTYPE_PPP": reflect.ValueOf(constant.MakeFromLiteral("34827", token.INT, 0)), + "ETHERTYPE_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("34916", token.INT, 0)), + "ETHERTYPE_PPPOEDISC": reflect.ValueOf(constant.MakeFromLiteral("34915", token.INT, 0)), + "ETHERTYPE_PRIMENTS": reflect.ValueOf(constant.MakeFromLiteral("28721", token.INT, 0)), + "ETHERTYPE_PUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_PUPAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ETHERTYPE_QINQ": reflect.ValueOf(constant.MakeFromLiteral("34984", token.INT, 0)), + "ETHERTYPE_RACAL": reflect.ValueOf(constant.MakeFromLiteral("28720", token.INT, 0)), + "ETHERTYPE_RATIONAL": reflect.ValueOf(constant.MakeFromLiteral("33104", token.INT, 0)), + "ETHERTYPE_RAWFR": reflect.ValueOf(constant.MakeFromLiteral("25945", token.INT, 0)), + "ETHERTYPE_RCL": reflect.ValueOf(constant.MakeFromLiteral("6549", token.INT, 0)), + "ETHERTYPE_RDP": reflect.ValueOf(constant.MakeFromLiteral("34617", token.INT, 0)), + "ETHERTYPE_RETIX": reflect.ValueOf(constant.MakeFromLiteral("33010", token.INT, 0)), + "ETHERTYPE_REVARP": reflect.ValueOf(constant.MakeFromLiteral("32821", token.INT, 0)), + "ETHERTYPE_SCA": reflect.ValueOf(constant.MakeFromLiteral("24583", token.INT, 0)), + "ETHERTYPE_SECTRA": reflect.ValueOf(constant.MakeFromLiteral("34523", token.INT, 0)), + "ETHERTYPE_SECUREDATA": reflect.ValueOf(constant.MakeFromLiteral("34669", token.INT, 0)), + "ETHERTYPE_SGITW": reflect.ValueOf(constant.MakeFromLiteral("33150", token.INT, 0)), + "ETHERTYPE_SG_BOUNCE": reflect.ValueOf(constant.MakeFromLiteral("32790", token.INT, 0)), + "ETHERTYPE_SG_DIAG": reflect.ValueOf(constant.MakeFromLiteral("32787", token.INT, 0)), + "ETHERTYPE_SG_NETGAMES": reflect.ValueOf(constant.MakeFromLiteral("32788", token.INT, 0)), + "ETHERTYPE_SG_RESV": reflect.ValueOf(constant.MakeFromLiteral("32789", token.INT, 0)), + "ETHERTYPE_SIMNET": reflect.ValueOf(constant.MakeFromLiteral("21000", token.INT, 0)), + "ETHERTYPE_SLOW": reflect.ValueOf(constant.MakeFromLiteral("34825", token.INT, 0)), + "ETHERTYPE_SNA": reflect.ValueOf(constant.MakeFromLiteral("32981", token.INT, 0)), + "ETHERTYPE_SNMP": reflect.ValueOf(constant.MakeFromLiteral("33100", token.INT, 0)), + "ETHERTYPE_SONIX": reflect.ValueOf(constant.MakeFromLiteral("64245", token.INT, 0)), + "ETHERTYPE_SPIDER": reflect.ValueOf(constant.MakeFromLiteral("32927", token.INT, 0)), + "ETHERTYPE_SPRITE": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "ETHERTYPE_STP": reflect.ValueOf(constant.MakeFromLiteral("33153", token.INT, 0)), + "ETHERTYPE_TALARIS": reflect.ValueOf(constant.MakeFromLiteral("33067", token.INT, 0)), + "ETHERTYPE_TALARISMC": reflect.ValueOf(constant.MakeFromLiteral("34091", token.INT, 0)), + "ETHERTYPE_TCPCOMP": reflect.ValueOf(constant.MakeFromLiteral("34667", token.INT, 0)), + "ETHERTYPE_TCPSM": reflect.ValueOf(constant.MakeFromLiteral("36866", token.INT, 0)), + "ETHERTYPE_TEC": reflect.ValueOf(constant.MakeFromLiteral("33103", token.INT, 0)), + "ETHERTYPE_TIGAN": reflect.ValueOf(constant.MakeFromLiteral("32815", token.INT, 0)), + "ETHERTYPE_TRAIL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "ETHERTYPE_TRANSETHER": reflect.ValueOf(constant.MakeFromLiteral("25944", token.INT, 0)), + "ETHERTYPE_TYMSHARE": reflect.ValueOf(constant.MakeFromLiteral("32814", token.INT, 0)), + "ETHERTYPE_UBBST": reflect.ValueOf(constant.MakeFromLiteral("28677", token.INT, 0)), + "ETHERTYPE_UBDEBUG": reflect.ValueOf(constant.MakeFromLiteral("2304", token.INT, 0)), + "ETHERTYPE_UBDIAGLOOP": reflect.ValueOf(constant.MakeFromLiteral("28674", token.INT, 0)), + "ETHERTYPE_UBDL": reflect.ValueOf(constant.MakeFromLiteral("28672", token.INT, 0)), + "ETHERTYPE_UBNIU": reflect.ValueOf(constant.MakeFromLiteral("28673", token.INT, 0)), + "ETHERTYPE_UBNMC": reflect.ValueOf(constant.MakeFromLiteral("28675", token.INT, 0)), + "ETHERTYPE_VALID": reflect.ValueOf(constant.MakeFromLiteral("5632", token.INT, 0)), + "ETHERTYPE_VARIAN": reflect.ValueOf(constant.MakeFromLiteral("32989", token.INT, 0)), + "ETHERTYPE_VAXELN": reflect.ValueOf(constant.MakeFromLiteral("32827", token.INT, 0)), + "ETHERTYPE_VEECO": reflect.ValueOf(constant.MakeFromLiteral("32871", token.INT, 0)), + "ETHERTYPE_VEXP": reflect.ValueOf(constant.MakeFromLiteral("32859", token.INT, 0)), + "ETHERTYPE_VGLAB": reflect.ValueOf(constant.MakeFromLiteral("33073", token.INT, 0)), + "ETHERTYPE_VINES": reflect.ValueOf(constant.MakeFromLiteral("2989", token.INT, 0)), + "ETHERTYPE_VINESECHO": reflect.ValueOf(constant.MakeFromLiteral("2991", token.INT, 0)), + "ETHERTYPE_VINESLOOP": reflect.ValueOf(constant.MakeFromLiteral("2990", token.INT, 0)), + "ETHERTYPE_VITAL": reflect.ValueOf(constant.MakeFromLiteral("65280", token.INT, 0)), + "ETHERTYPE_VLAN": reflect.ValueOf(constant.MakeFromLiteral("33024", token.INT, 0)), + "ETHERTYPE_VLTLMAN": reflect.ValueOf(constant.MakeFromLiteral("32896", token.INT, 0)), + "ETHERTYPE_VPROD": reflect.ValueOf(constant.MakeFromLiteral("32860", token.INT, 0)), + "ETHERTYPE_VURESERVED": reflect.ValueOf(constant.MakeFromLiteral("33095", token.INT, 0)), + "ETHERTYPE_WATERLOO": reflect.ValueOf(constant.MakeFromLiteral("33072", token.INT, 0)), + "ETHERTYPE_WELLFLEET": reflect.ValueOf(constant.MakeFromLiteral("33027", token.INT, 0)), + "ETHERTYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("2053", token.INT, 0)), + "ETHERTYPE_X75": reflect.ValueOf(constant.MakeFromLiteral("2049", token.INT, 0)), + "ETHERTYPE_XNSSM": reflect.ValueOf(constant.MakeFromLiteral("36865", token.INT, 0)), + "ETHERTYPE_XTP": reflect.ValueOf(constant.MakeFromLiteral("33149", token.INT, 0)), + "ETHER_ADDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ETHER_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_CRC_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETHER_CRC_POLY_BE": reflect.ValueOf(constant.MakeFromLiteral("79764918", token.INT, 0)), + "ETHER_CRC_POLY_LE": reflect.ValueOf(constant.MakeFromLiteral("3988292384", token.INT, 0)), + "ETHER_HDR_LEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "ETHER_MAX_DIX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1536", token.INT, 0)), + "ETHER_MAX_HARDMTU_LEN": reflect.ValueOf(constant.MakeFromLiteral("65435", token.INT, 0)), + "ETHER_MAX_LEN": reflect.ValueOf(constant.MakeFromLiteral("1518", token.INT, 0)), + "ETHER_MIN_LEN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ETHER_TYPE_LEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ETHER_VLAN_ENCAP_LEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EVFILT_AIO": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "EVFILT_DEVICE": reflect.ValueOf(constant.MakeFromLiteral("-8", token.INT, 0)), + "EVFILT_PROC": reflect.ValueOf(constant.MakeFromLiteral("-5", token.INT, 0)), + "EVFILT_READ": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "EVFILT_SIGNAL": reflect.ValueOf(constant.MakeFromLiteral("-6", token.INT, 0)), + "EVFILT_SYSCOUNT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EVFILT_TIMER": reflect.ValueOf(constant.MakeFromLiteral("-7", token.INT, 0)), + "EVFILT_VNODE": reflect.ValueOf(constant.MakeFromLiteral("-4", token.INT, 0)), + "EVFILT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("-2", token.INT, 0)), + "EVL_ENCAPLEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EVL_PRIO_BITS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "EVL_PRIO_MAX": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "EVL_VLID_MASK": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "EVL_VLID_MAX": reflect.ValueOf(constant.MakeFromLiteral("4094", token.INT, 0)), + "EVL_VLID_MIN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EVL_VLID_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EV_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EV_CLEAR": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "EV_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "EV_DISABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "EV_DISPATCH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "EV_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "EV_EOF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "EV_ERROR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "EV_FLAG1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "EV_ONESHOT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "EV_RECEIPT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "EV_SYSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("19200", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("38400", token.INT, 0)), + "EXTPROC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "F_ISATTY": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchflags": reflect.ValueOf(syscall.Fchflags), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "Flock": reflect.ValueOf(syscall.Flock), + "FlushBpf": reflect.ValueOf(syscall.FlushBpf), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fstatfs": reflect.ValueOf(syscall.Fstatfs), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Futimes": reflect.ValueOf(syscall.Futimes), + "Getdirentries": reflect.ValueOf(syscall.Getdirentries), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getfsstat": reflect.ValueOf(syscall.Getfsstat), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpgid": reflect.ValueOf(syscall.Getpgid), + "Getpgrp": reflect.ValueOf(syscall.Getpgrp), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsid": reflect.ValueOf(syscall.Getsid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptByte": reflect.ValueOf(syscall.GetsockoptByte), + "GetsockoptICMPv6Filter": reflect.ValueOf(syscall.GetsockoptICMPv6Filter), + "GetsockoptIPMreq": reflect.ValueOf(syscall.GetsockoptIPMreq), + "GetsockoptIPv6MTUInfo": reflect.ValueOf(syscall.GetsockoptIPv6MTUInfo), + "GetsockoptIPv6Mreq": reflect.ValueOf(syscall.GetsockoptIPv6Mreq), + "GetsockoptInet4Addr": reflect.ValueOf(syscall.GetsockoptInet4Addr), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "ICMP6_FILTER": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFAN_ARRIVAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IFAN_DEPARTURE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("36434", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_LINK0": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_LINK1": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_LINK2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_OACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_SIMPLEX": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_STATICARP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_A12MPPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "IFT_AAL2": reflect.ValueOf(constant.MakeFromLiteral("187", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ADSL": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "IFT_AFLANE8023": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IFT_AFLANE8025": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IFT_ARAP": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_ATMDXI": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "IFT_ATMFUNI": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "IFT_ATMIMA": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "IFT_ATMLOGICAL": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IFT_ATMRADIO": reflect.ValueOf(constant.MakeFromLiteral("189", token.INT, 0)), + "IFT_ATMSUBINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "IFT_ATMVCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "IFT_ATMVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("149", token.INT, 0)), + "IFT_BGPPOLICYACCOUNTING": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "IFT_BLUETOOTH": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "IFT_BRIDGE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "IFT_BSC": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "IFT_CARP": reflect.ValueOf(constant.MakeFromLiteral("247", token.INT, 0)), + "IFT_CCTEMUL": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_CES": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "IFT_CHANNEL": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "IFT_CNR": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "IFT_COFFEE": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IFT_COMPOSITELINK": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "IFT_DCN": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "IFT_DIGITALPOWERLINE": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "IFT_DIGITALWRAPPEROVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("186", token.INT, 0)), + "IFT_DLSW": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "IFT_DOCSCABLEDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFT_DOCSCABLEMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "IFT_DOCSCABLEUPSTREAMCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("205", token.INT, 0)), + "IFT_DS0": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "IFT_DS0BUNDLE": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "IFT_DS1FDL": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_DTM": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "IFT_DUMMY": reflect.ValueOf(constant.MakeFromLiteral("241", token.INT, 0)), + "IFT_DVBASILN": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "IFT_DVBASIOUT": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "IFT_DVBRCCDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "IFT_DVBRCCMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "IFT_DVBRCCUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "IFT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("206", token.INT, 0)), + "IFT_ENC": reflect.ValueOf(constant.MakeFromLiteral("244", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_EPLRS": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "IFT_ESCON": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FAITH": reflect.ValueOf(constant.MakeFromLiteral("243", token.INT, 0)), + "IFT_FAST": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "IFT_FASTETHER": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IFT_FASTETHERFX": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FIBRECHANNEL": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "IFT_FRAMERELAYINTERCONNECT": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IFT_FRAMERELAYMPI": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "IFT_FRDLCIENDPT": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_FRF16MFRBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "IFT_FRFORWARD": reflect.ValueOf(constant.MakeFromLiteral("158", token.INT, 0)), + "IFT_G703AT2MB": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IFT_G703AT64K": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IFT_GIF": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IFT_GIGABITETHERNET": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "IFT_GR303IDT": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "IFT_GR303RDT": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "IFT_H323GATEKEEPER": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "IFT_H323PROXY": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "IFT_HDSL2": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "IFT_HIPERLAN2": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HIPPIINTERFACE": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IFT_HOSTPAD": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IBM370PARCHAN": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "IFT_IDSL": reflect.ValueOf(constant.MakeFromLiteral("154", token.INT, 0)), + "IFT_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "IFT_IEEE80211": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "IFT_IEEE80212": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IFT_IEEE8023ADLAG": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "IFT_IFGSN": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "IFT_IMT": reflect.ValueOf(constant.MakeFromLiteral("190", token.INT, 0)), + "IFT_INFINIBAND": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_INTERLEAVE": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "IFT_IP": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "IFT_IPFORWARD": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "IFT_IPOVERATM": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "IFT_IPOVERCDLC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "IFT_IPOVERCLAW": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "IFT_IPSWITCH": reflect.ValueOf(constant.MakeFromLiteral("78", token.INT, 0)), + "IFT_ISDN": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISDNS": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "IFT_ISDNU": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88025CRFPINT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IFT_ISO88025DTR": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "IFT_ISO88025FIBER": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_ISUP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "IFT_L2VLAN": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "IFT_L3IPVLAN": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IFT_L3IPXVLAN": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LAPD": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IFT_LAPF": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "IFT_LINEGROUP": reflect.ValueOf(constant.MakeFromLiteral("210", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MBIM": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "IFT_MEDIAMAILOVERIP": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "IFT_MFSIGLINK": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_MPC": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "IFT_MPLS": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "IFT_MPLSTUNNEL": reflect.ValueOf(constant.MakeFromLiteral("150", token.INT, 0)), + "IFT_MSDSL": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "IFT_MVL": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "IFT_MYRINET": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "IFT_NFAS": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OPTICALCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "IFT_OPTICALTRANSPORT": reflect.ValueOf(constant.MakeFromLiteral("196", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("245", token.INT, 0)), + "IFT_PFLOW": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "IFT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("246", token.INT, 0)), + "IFT_PLC": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "IFT_PON155": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "IFT_PON622": reflect.ValueOf(constant.MakeFromLiteral("208", token.INT, 0)), + "IFT_POS": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PPPMULTILINKBUNDLE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IFT_PROPATM": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "IFT_PROPBWAP2MP": reflect.ValueOf(constant.MakeFromLiteral("184", token.INT, 0)), + "IFT_PROPCNLS": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IFT_PROPDOCSWIRELESSDOWNSTREAM": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "IFT_PROPDOCSWIRELESSMACLAYER": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "IFT_PROPDOCSWIRELESSUPSTREAM": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PROPWIRELESSP2P": reflect.ValueOf(constant.MakeFromLiteral("157", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_PVC": reflect.ValueOf(constant.MakeFromLiteral("242", token.INT, 0)), + "IFT_Q2931": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_QLLC": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "IFT_RADIOMAC": reflect.ValueOf(constant.MakeFromLiteral("188", token.INT, 0)), + "IFT_RADSL": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "IFT_REACHDSL": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "IFT_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("159", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_RSRB": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SDSL": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IFT_SHDSL": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SIPSIG": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "IFT_SIPTG": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETOVERHEADCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("185", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_SRP": reflect.ValueOf(constant.MakeFromLiteral("151", token.INT, 0)), + "IFT_SS7SIGLINK": reflect.ValueOf(constant.MakeFromLiteral("156", token.INT, 0)), + "IFT_STACKTOSTACK": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_TDLC": reflect.ValueOf(constant.MakeFromLiteral("116", token.INT, 0)), + "IFT_TELINK": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_TERMPAD": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "IFT_TR008": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "IFT_TRANSPHDLC": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "IFT_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_USB": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "IFT_V11": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_V36": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IFT_V37": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IFT_VDSL": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IFT_VIRTUALIPADDRESS": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IFT_VIRTUALTG": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_VOICEDID": reflect.ValueOf(constant.MakeFromLiteral("213", token.INT, 0)), + "IFT_VOICEEM": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "IFT_VOICEEMFGD": reflect.ValueOf(constant.MakeFromLiteral("211", token.INT, 0)), + "IFT_VOICEENCAP": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IFT_VOICEFGDEANA": reflect.ValueOf(constant.MakeFromLiteral("212", token.INT, 0)), + "IFT_VOICEFXO": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "IFT_VOICEFXS": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "IFT_VOICEOVERATM": reflect.ValueOf(constant.MakeFromLiteral("152", token.INT, 0)), + "IFT_VOICEOVERCABLE": reflect.ValueOf(constant.MakeFromLiteral("198", token.INT, 0)), + "IFT_VOICEOVERFRAMERELAY": reflect.ValueOf(constant.MakeFromLiteral("153", token.INT, 0)), + "IFT_VOICEOVERIP": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "IFT_X213": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25HUNTGROUP": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "IFT_X25MLP": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_RFC3021_HOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IN_RFC3021_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967294", token.INT, 0)), + "IN_RFC3021_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_CARP": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "IPPROTO_DIVERT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "IPPROTO_DONE": reflect.ValueOf(constant.MakeFromLiteral("257", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_ETHERIP": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_GRE": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPCOMP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "IPPROTO_IPIP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV4": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_MAXID": reflect.ValueOf(constant.MakeFromLiteral("259", token.INT, 0)), + "IPPROTO_MOBILE": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPPROTO_MPLS": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_TP": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPPROTO_UDPLITE": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "IPV6_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IPV6_AUTOFLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_DEFHLIM": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPV6_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "IPV6_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IPV6_FAITH": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IPV6_FLOWINFO_MASK": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IPV6_FLOWLABEL_MASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "IPV6_FRAGTTL": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "IPV6_HLIMDEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IPV6_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MAXHLIM": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPV6_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IPV6_MINHOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_MMTU": reflect.ValueOf(constant.MakeFromLiteral("1280", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPV6_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPV6_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "IPV6_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_RTHDR_LOOSE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_RTHDR_STRICT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SOCKOPT_RESERVED1": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IPV6_VERSION": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "IPV6_VERSION_MASK": reflect.ValueOf(constant.MakeFromLiteral("240", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_AUTH_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_ESP_NETWORK_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_ESP_TRANS_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_IPCOMP_LEVEL": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IP_IPDEFTTL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IP_IPSECFLOWINFO": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IP_IPSEC_LOCAL_AUTH": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_IPSEC_LOCAL_CRED": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_IPSEC_LOCAL_ID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_IPSEC_REMOTE_AUTH": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IP_IPSEC_REMOTE_CRED": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_IPSEC_REMOTE_ID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MAX_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("4095", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MINTTL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IP_MIN_MEMBERSHIPS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_OFFMASK": reflect.ValueOf(constant.MakeFromLiteral("8191", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PIPEX": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_PORTRANGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_PORTRANGE_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IP_PORTRANGE_HIGH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PORTRANGE_LOW": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVDSTPORT": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVRTABLE": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_RF": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IP_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "IP_SENDSRCADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Issetugid": reflect.ValueOf(syscall.Issetugid), + "Kevent": reflect.ValueOf(syscall.Kevent), + "Kqueue": reflect.ValueOf(syscall.Kqueue), + "LCNT_OVERLOAD_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "LOCK_EX": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "LOCK_NB": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "LOCK_SH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "LOCK_UN": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_SPACEAVAIL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "MAP_CONCEAL": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_FILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_FLAGMASK": reflect.ValueOf(constant.MakeFromLiteral("65527", token.INT, 0)), + "MAP_HASSEMAPHORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_INHERIT_NONE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_INHERIT_SHARE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_INHERIT_ZERO": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_NOEXTEND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_STACK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAP_TRYFIXED": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_BCAST": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_CMSG_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MSG_NOSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mkfifo": reflect.ValueOf(syscall.Mkfifo), + "Mknod": reflect.ValueOf(syscall.Mknod), + "Mmap": reflect.ValueOf(syscall.Mmap), + "Munmap": reflect.ValueOf(syscall.Munmap), + "NAME_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "NET_RT_DUMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NET_RT_FLAGS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NET_RT_IFLIST": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NET_RT_IFNAMES": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NET_RT_MAXID": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NET_RT_STATS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NET_RT_TABLE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_ATTRIB": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NOTE_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_CHILD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_EOF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_EXEC": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "NOTE_EXIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "NOTE_EXTEND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "NOTE_FORK": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "NOTE_LINK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "NOTE_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_PCTRLMASK": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "NOTE_PDATAMASK": reflect.ValueOf(constant.MakeFromLiteral("1048575", token.INT, 0)), + "NOTE_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "NOTE_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "NOTE_TRACK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NOTE_TRACKERR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NOTE_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "NOTE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONOEOT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_EXLOCK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_SHLOCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "PF_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PTRACE_CONT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "PTRACE_KILL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PTRACE_TRACEME": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseRoutingMessage": reflect.ValueOf(syscall.ParseRoutingMessage), + "ParseRoutingSockaddr": reflect.ValueOf(syscall.ParseRoutingSockaddr), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("9223372036854775807", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BFD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DNS": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_LABEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTAX_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_STATIC": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BFD": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_LABEL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTA_SRCMASK": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTA_STATIC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_ANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_BFD": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "RTF_CACHED": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_CLONED": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_CONNECTED": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_FMASK": reflect.ValueOf(constant.MakeFromLiteral("17890312", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MPATH": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_MPLS": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_PERMANENT_ARP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_PROTO3": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_USETRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTM_80211INFO": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_BFD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDRATTR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_DESYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFANNOUNCE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MAXSIZE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_PROPOSAL": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_RTTUNIT": reflect.ValueOf(constant.MakeFromLiteral("1000000", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_TABLEID_BITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RT_TABLEID_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RT_TABLEID_MAX": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RUSAGE_THREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Revoke": reflect.ValueOf(syscall.Revoke), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "RouteRIB": reflect.ValueOf(syscall.RouteRIB), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINFO": reflect.ValueOf(syscall.SIGINFO), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHR": reflect.ValueOf(syscall.SIGTHR), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607729", token.INT, 0)), + "SIOCAIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2151704858", token.INT, 0)), + "SIOCAIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132103", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCBRDGADD": reflect.ValueOf(constant.MakeFromLiteral("2153802044", token.INT, 0)), + "SIOCBRDGADDL": reflect.ValueOf(constant.MakeFromLiteral("2153802057", token.INT, 0)), + "SIOCBRDGADDS": reflect.ValueOf(constant.MakeFromLiteral("2153802049", token.INT, 0)), + "SIOCBRDGARL": reflect.ValueOf(constant.MakeFromLiteral("2156685645", token.INT, 0)), + "SIOCBRDGDADDR": reflect.ValueOf(constant.MakeFromLiteral("2166909255", token.INT, 0)), + "SIOCBRDGDEL": reflect.ValueOf(constant.MakeFromLiteral("2153802045", token.INT, 0)), + "SIOCBRDGDELS": reflect.ValueOf(constant.MakeFromLiteral("2153802050", token.INT, 0)), + "SIOCBRDGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2153802056", token.INT, 0)), + "SIOCBRDGFRL": reflect.ValueOf(constant.MakeFromLiteral("2156685646", token.INT, 0)), + "SIOCBRDGGCACHE": reflect.ValueOf(constant.MakeFromLiteral("3222825281", token.INT, 0)), + "SIOCBRDGGFD": reflect.ValueOf(constant.MakeFromLiteral("3222825298", token.INT, 0)), + "SIOCBRDGGHT": reflect.ValueOf(constant.MakeFromLiteral("3222825297", token.INT, 0)), + "SIOCBRDGGIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("3227543870", token.INT, 0)), + "SIOCBRDGGMA": reflect.ValueOf(constant.MakeFromLiteral("3222825299", token.INT, 0)), + "SIOCBRDGGPARAM": reflect.ValueOf(constant.MakeFromLiteral("3225446744", token.INT, 0)), + "SIOCBRDGGPRI": reflect.ValueOf(constant.MakeFromLiteral("3222825296", token.INT, 0)), + "SIOCBRDGGRL": reflect.ValueOf(constant.MakeFromLiteral("3224398159", token.INT, 0)), + "SIOCBRDGGTO": reflect.ValueOf(constant.MakeFromLiteral("3222825286", token.INT, 0)), + "SIOCBRDGIFS": reflect.ValueOf(constant.MakeFromLiteral("3227543874", token.INT, 0)), + "SIOCBRDGRTS": reflect.ValueOf(constant.MakeFromLiteral("3223349571", token.INT, 0)), + "SIOCBRDGSADDR": reflect.ValueOf(constant.MakeFromLiteral("3240651076", token.INT, 0)), + "SIOCBRDGSCACHE": reflect.ValueOf(constant.MakeFromLiteral("2149083456", token.INT, 0)), + "SIOCBRDGSFD": reflect.ValueOf(constant.MakeFromLiteral("2149083474", token.INT, 0)), + "SIOCBRDGSHT": reflect.ValueOf(constant.MakeFromLiteral("2149083473", token.INT, 0)), + "SIOCBRDGSIFCOST": reflect.ValueOf(constant.MakeFromLiteral("2153802069", token.INT, 0)), + "SIOCBRDGSIFFLGS": reflect.ValueOf(constant.MakeFromLiteral("2153802047", token.INT, 0)), + "SIOCBRDGSIFPRIO": reflect.ValueOf(constant.MakeFromLiteral("2153802068", token.INT, 0)), + "SIOCBRDGSIFPROT": reflect.ValueOf(constant.MakeFromLiteral("2153802058", token.INT, 0)), + "SIOCBRDGSMA": reflect.ValueOf(constant.MakeFromLiteral("2149083475", token.INT, 0)), + "SIOCBRDGSPRI": reflect.ValueOf(constant.MakeFromLiteral("2149083472", token.INT, 0)), + "SIOCBRDGSPROTO": reflect.ValueOf(constant.MakeFromLiteral("2149083482", token.INT, 0)), + "SIOCBRDGSTO": reflect.ValueOf(constant.MakeFromLiteral("2149083461", token.INT, 0)), + "SIOCBRDGSTXHC": reflect.ValueOf(constant.MakeFromLiteral("2149083481", token.INT, 0)), + "SIOCDELLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607831", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("2149607730", token.INT, 0)), + "SIOCDIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607705", token.INT, 0)), + "SIOCDIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("2150132105", token.INT, 0)), + "SIOCDIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607860", token.INT, 0)), + "SIOCDIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607753", token.INT, 0)), + "SIOCDPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2149607902", token.INT, 0)), + "SIOCDVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607855", token.INT, 0)), + "SIOCGETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("3222825380", token.INT, 0)), + "SIOCGETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607834", token.INT, 0)), + "SIOCGETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("3223349678", token.INT, 0)), + "SIOCGETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("3223349758", token.INT, 0)), + "SIOCGETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("3223349752", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("3223352628", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("3223876915", token.INT, 0)), + "SIOCGETVLAN": reflect.ValueOf(constant.MakeFromLiteral("3223349648", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349537", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349539", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("3222300964", token.INT, 0)), + "SIOCGIFDATA": reflect.ValueOf(constant.MakeFromLiteral("3223349531", token.INT, 0)), + "SIOCGIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("3223349633", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("3223349538", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349521", token.INT, 0)), + "SIOCGIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("3223873931", token.INT, 0)), + "SIOCGIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("3223349562", token.INT, 0)), + "SIOCGIFGLIST": reflect.ValueOf(constant.MakeFromLiteral("3223873933", token.INT, 0)), + "SIOCGIFGMEMB": reflect.ValueOf(constant.MakeFromLiteral("3223873930", token.INT, 0)), + "SIOCGIFGROUP": reflect.ValueOf(constant.MakeFromLiteral("3223873928", token.INT, 0)), + "SIOCGIFHARDMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349669", token.INT, 0)), + "SIOCGIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349686", token.INT, 0)), + "SIOCGIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3225446712", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("3223349527", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("3223349630", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("3223349541", token.INT, 0)), + "SIOCGIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("3223349681", token.INT, 0)), + "SIOCGIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("3223349683", token.INT, 0)), + "SIOCGIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("3223349660", token.INT, 0)), + "SIOCGIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("3223349664", token.INT, 0)), + "SIOCGIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("3223349635", token.INT, 0)), + "SIOCGIFRXR": reflect.ValueOf(constant.MakeFromLiteral("2149607850", token.INT, 0)), + "SIOCGIFSFFPAGE": reflect.ValueOf(constant.MakeFromLiteral("3239209273", token.INT, 0)), + "SIOCGIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("3223349662", token.INT, 0)), + "SIOCGLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("3256379723", token.INT, 0)), + "SIOCGLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("3223349698", token.INT, 0)), + "SIOCGLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("3223349704", token.INT, 0)), + "SIOCGLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("3223349666", token.INT, 0)), + "SIOCGLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("3223349673", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGPWE3": reflect.ValueOf(constant.MakeFromLiteral("3223349656", token.INT, 0)), + "SIOCGPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("3223349724", token.INT, 0)), + "SIOCGPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("3223349725", token.INT, 0)), + "SIOCGPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("3256379870", token.INT, 0)), + "SIOCGRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349723", token.INT, 0)), + "SIOCGSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("3223349652", token.INT, 0)), + "SIOCGTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("3223349702", token.INT, 0)), + "SIOCGUMBINFO": reflect.ValueOf(constant.MakeFromLiteral("3223349694", token.INT, 0)), + "SIOCGUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("3223349696", token.INT, 0)), + "SIOCGVH": reflect.ValueOf(constant.MakeFromLiteral("3223349750", token.INT, 0)), + "SIOCGVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("3223349700", token.INT, 0)), + "SIOCGVNETID": reflect.ValueOf(constant.MakeFromLiteral("3223349671", token.INT, 0)), + "SIOCIFAFATTACH": reflect.ValueOf(constant.MakeFromLiteral("2148624811", token.INT, 0)), + "SIOCIFAFDETACH": reflect.ValueOf(constant.MakeFromLiteral("2148624812", token.INT, 0)), + "SIOCIFCREATE": reflect.ValueOf(constant.MakeFromLiteral("2149607802", token.INT, 0)), + "SIOCIFDESTROY": reflect.ValueOf(constant.MakeFromLiteral("2149607801", token.INT, 0)), + "SIOCIFGCLONERS": reflect.ValueOf(constant.MakeFromLiteral("3222301048", token.INT, 0)), + "SIOCSETKALIVE": reflect.ValueOf(constant.MakeFromLiteral("2149083555", token.INT, 0)), + "SIOCSETLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607833", token.INT, 0)), + "SIOCSETMPWCFG": reflect.ValueOf(constant.MakeFromLiteral("2149607853", token.INT, 0)), + "SIOCSETPFLOW": reflect.ValueOf(constant.MakeFromLiteral("2149607933", token.INT, 0)), + "SIOCSETPFSYNC": reflect.ValueOf(constant.MakeFromLiteral("2149607927", token.INT, 0)), + "SIOCSETVLAN": reflect.ValueOf(constant.MakeFromLiteral("2149607823", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607692", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607699", token.INT, 0)), + "SIOCSIFDESCR": reflect.ValueOf(constant.MakeFromLiteral("2149607808", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607694", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607696", token.INT, 0)), + "SIOCSIFGATTR": reflect.ValueOf(constant.MakeFromLiteral("2150132108", token.INT, 0)), + "SIOCSIFGENERIC": reflect.ValueOf(constant.MakeFromLiteral("2149607737", token.INT, 0)), + "SIOCSIFLLADDR": reflect.ValueOf(constant.MakeFromLiteral("2149607711", token.INT, 0)), + "SIOCSIFLLPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607861", token.INT, 0)), + "SIOCSIFMEDIA": reflect.ValueOf(constant.MakeFromLiteral("3223349559", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("2149607704", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("2149607807", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("2149607702", token.INT, 0)), + "SIOCSIFPAIR": reflect.ValueOf(constant.MakeFromLiteral("2149607856", token.INT, 0)), + "SIOCSIFPARENT": reflect.ValueOf(constant.MakeFromLiteral("2149607858", token.INT, 0)), + "SIOCSIFPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("2149607835", token.INT, 0)), + "SIOCSIFRDOMAIN": reflect.ValueOf(constant.MakeFromLiteral("2149607839", token.INT, 0)), + "SIOCSIFRTLABEL": reflect.ValueOf(constant.MakeFromLiteral("2149607810", token.INT, 0)), + "SIOCSIFXFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2149607837", token.INT, 0)), + "SIOCSLIFPHYADDR": reflect.ValueOf(constant.MakeFromLiteral("2182637898", token.INT, 0)), + "SIOCSLIFPHYDF": reflect.ValueOf(constant.MakeFromLiteral("2149607873", token.INT, 0)), + "SIOCSLIFPHYECN": reflect.ValueOf(constant.MakeFromLiteral("2149607879", token.INT, 0)), + "SIOCSLIFPHYRTABLE": reflect.ValueOf(constant.MakeFromLiteral("2149607841", token.INT, 0)), + "SIOCSLIFPHYTTL": reflect.ValueOf(constant.MakeFromLiteral("2149607848", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775240", token.INT, 0)), + "SIOCSPWE3CTRLWORD": reflect.ValueOf(constant.MakeFromLiteral("2149607900", token.INT, 0)), + "SIOCSPWE3FAT": reflect.ValueOf(constant.MakeFromLiteral("2149607901", token.INT, 0)), + "SIOCSPWE3NEIGHBOR": reflect.ValueOf(constant.MakeFromLiteral("2182638046", token.INT, 0)), + "SIOCSRXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607899", token.INT, 0)), + "SIOCSSPPPPARAMS": reflect.ValueOf(constant.MakeFromLiteral("2149607827", token.INT, 0)), + "SIOCSTXHPRIO": reflect.ValueOf(constant.MakeFromLiteral("2149607877", token.INT, 0)), + "SIOCSUMBPARAM": reflect.ValueOf(constant.MakeFromLiteral("2149607871", token.INT, 0)), + "SIOCSVH": reflect.ValueOf(constant.MakeFromLiteral("3223349749", token.INT, 0)), + "SIOCSVNETFLOWID": reflect.ValueOf(constant.MakeFromLiteral("2149607875", token.INT, 0)), + "SIOCSVNETID": reflect.ValueOf(constant.MakeFromLiteral("2149607846", token.INT, 0)), + "SIOCSWGDPID": reflect.ValueOf(constant.MakeFromLiteral("3222825307", token.INT, 0)), + "SIOCSWGMAXFLOW": reflect.ValueOf(constant.MakeFromLiteral("3222825312", token.INT, 0)), + "SIOCSWGMAXGROUP": reflect.ValueOf(constant.MakeFromLiteral("3222825309", token.INT, 0)), + "SIOCSWSDPID": reflect.ValueOf(constant.MakeFromLiteral("2149083484", token.INT, 0)), + "SIOCSWSPORTNO": reflect.ValueOf(constant.MakeFromLiteral("3227543903", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_DNS": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_BINDANY": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4132", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_NETPROC": reflect.ValueOf(constant.MakeFromLiteral("4128", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PEERCRED": reflect.ValueOf(constant.MakeFromLiteral("4130", token.INT, 0)), + "SO_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("4133", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_REUSEPORT": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_RTABLE": reflect.ValueOf(constant.MakeFromLiteral("4129", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_SPLICE": reflect.ValueOf(constant.MakeFromLiteral("4131", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_ZEROIZE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SYS_ACCEPT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_ACCEPT4": reflect.ValueOf(constant.MakeFromLiteral("93", token.INT, 0)), + "SYS_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_ACCT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_ADJFREQ": reflect.ValueOf(constant.MakeFromLiteral("305", token.INT, 0)), + "SYS_ADJTIME": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_CHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_CHFLAGSAT": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "SYS_CHMOD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "SYS_CHOWN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_CHROOT": reflect.ValueOf(constant.MakeFromLiteral("61", token.INT, 0)), + "SYS_CLOCK_GETRES": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "SYS_CLOCK_GETTIME": reflect.ValueOf(constant.MakeFromLiteral("87", token.INT, 0)), + "SYS_CLOCK_SETTIME": reflect.ValueOf(constant.MakeFromLiteral("88", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_CLOSEFROM": reflect.ValueOf(constant.MakeFromLiteral("287", token.INT, 0)), + "SYS_CONNECT": reflect.ValueOf(constant.MakeFromLiteral("98", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_DUP2": reflect.ValueOf(constant.MakeFromLiteral("90", token.INT, 0)), + "SYS_DUP3": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_EXIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYS_FACCESSAT": reflect.ValueOf(constant.MakeFromLiteral("313", token.INT, 0)), + "SYS_FCHDIR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "SYS_FCHFLAGS": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_FCHMOD": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "SYS_FCHMODAT": reflect.ValueOf(constant.MakeFromLiteral("314", token.INT, 0)), + "SYS_FCHOWN": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "SYS_FCHOWNAT": reflect.ValueOf(constant.MakeFromLiteral("315", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("92", token.INT, 0)), + "SYS_FHOPEN": reflect.ValueOf(constant.MakeFromLiteral("264", token.INT, 0)), + "SYS_FHSTAT": reflect.ValueOf(constant.MakeFromLiteral("294", token.INT, 0)), + "SYS_FHSTATFS": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "SYS_FLOCK": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "SYS_FORK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_FPATHCONF": reflect.ValueOf(constant.MakeFromLiteral("192", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_FSTATAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_FSTATFS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SYS_FSYNC": reflect.ValueOf(constant.MakeFromLiteral("95", token.INT, 0)), + "SYS_FTRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "SYS_FUTEX": reflect.ValueOf(constant.MakeFromLiteral("83", token.INT, 0)), + "SYS_FUTIMENS": reflect.ValueOf(constant.MakeFromLiteral("85", token.INT, 0)), + "SYS_FUTIMES": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "SYS_GETDENTS": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "SYS_GETDTABLECOUNT": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "SYS_GETEGID": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_GETENTROPY": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_GETEUID": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_GETFH": reflect.ValueOf(constant.MakeFromLiteral("161", token.INT, 0)), + "SYS_GETFSSTAT": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "SYS_GETGID": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_GETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("79", token.INT, 0)), + "SYS_GETITIMER": reflect.ValueOf(constant.MakeFromLiteral("70", token.INT, 0)), + "SYS_GETLOGIN_R": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "SYS_GETPEERNAME": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_GETPGID": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "SYS_GETPGRP": reflect.ValueOf(constant.MakeFromLiteral("81", token.INT, 0)), + "SYS_GETPID": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SYS_GETPPID": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_GETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "SYS_GETRESGID": reflect.ValueOf(constant.MakeFromLiteral("283", token.INT, 0)), + "SYS_GETRESUID": reflect.ValueOf(constant.MakeFromLiteral("281", token.INT, 0)), + "SYS_GETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("194", token.INT, 0)), + "SYS_GETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("311", token.INT, 0)), + "SYS_GETRUSAGE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_GETSID": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "SYS_GETSOCKNAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_GETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "SYS_GETTHRID": reflect.ValueOf(constant.MakeFromLiteral("299", token.INT, 0)), + "SYS_GETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "SYS_GETUID": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "SYS_ISSETUGID": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "SYS_KBIND": reflect.ValueOf(constant.MakeFromLiteral("86", token.INT, 0)), + "SYS_KEVENT": reflect.ValueOf(constant.MakeFromLiteral("72", token.INT, 0)), + "SYS_KILL": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "SYS_KQUEUE": reflect.ValueOf(constant.MakeFromLiteral("269", token.INT, 0)), + "SYS_KTRACE": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_LCHOWN": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "SYS_LINK": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SYS_LINKAT": reflect.ValueOf(constant.MakeFromLiteral("317", token.INT, 0)), + "SYS_LISTEN": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SYS_LSEEK": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "SYS_LSTAT": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_MADVISE": reflect.ValueOf(constant.MakeFromLiteral("75", token.INT, 0)), + "SYS_MINHERIT": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "SYS_MKDIR": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "SYS_MKDIRAT": reflect.ValueOf(constant.MakeFromLiteral("318", token.INT, 0)), + "SYS_MKFIFO": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "SYS_MKFIFOAT": reflect.ValueOf(constant.MakeFromLiteral("319", token.INT, 0)), + "SYS_MKNOD": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_MKNODAT": reflect.ValueOf(constant.MakeFromLiteral("320", token.INT, 0)), + "SYS_MLOCK": reflect.ValueOf(constant.MakeFromLiteral("203", token.INT, 0)), + "SYS_MLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("271", token.INT, 0)), + "SYS_MMAP": reflect.ValueOf(constant.MakeFromLiteral("197", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_MPROTECT": reflect.ValueOf(constant.MakeFromLiteral("74", token.INT, 0)), + "SYS_MQUERY": reflect.ValueOf(constant.MakeFromLiteral("286", token.INT, 0)), + "SYS_MSGCTL": reflect.ValueOf(constant.MakeFromLiteral("297", token.INT, 0)), + "SYS_MSGGET": reflect.ValueOf(constant.MakeFromLiteral("225", token.INT, 0)), + "SYS_MSGRCV": reflect.ValueOf(constant.MakeFromLiteral("227", token.INT, 0)), + "SYS_MSGSND": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "SYS_MSYNC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SYS_MSYSCALL": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_MUNLOCK": reflect.ValueOf(constant.MakeFromLiteral("204", token.INT, 0)), + "SYS_MUNLOCKALL": reflect.ValueOf(constant.MakeFromLiteral("272", token.INT, 0)), + "SYS_MUNMAP": reflect.ValueOf(constant.MakeFromLiteral("73", token.INT, 0)), + "SYS_NANOSLEEP": reflect.ValueOf(constant.MakeFromLiteral("91", token.INT, 0)), + "SYS_NFSSVC": reflect.ValueOf(constant.MakeFromLiteral("155", token.INT, 0)), + "SYS_OBREAK": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_OPENAT": reflect.ValueOf(constant.MakeFromLiteral("321", token.INT, 0)), + "SYS_PATHCONF": reflect.ValueOf(constant.MakeFromLiteral("191", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("263", token.INT, 0)), + "SYS_PIPE2": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "SYS_PLEDGE": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SYS_POLL": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SYS_PPOLL": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "SYS_PREADV": reflect.ValueOf(constant.MakeFromLiteral("267", token.INT, 0)), + "SYS_PROFIL": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "SYS_PSELECT": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SYS_PTRACE": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "SYS_PWRITEV": reflect.ValueOf(constant.MakeFromLiteral("268", token.INT, 0)), + "SYS_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("148", token.INT, 0)), + "SYS_READ": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_READLINK": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "SYS_READLINKAT": reflect.ValueOf(constant.MakeFromLiteral("322", token.INT, 0)), + "SYS_READV": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "SYS_REBOOT": reflect.ValueOf(constant.MakeFromLiteral("55", token.INT, 0)), + "SYS_RECVFROM": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_RECVMSG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "SYS_RENAME": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SYS_RENAMEAT": reflect.ValueOf(constant.MakeFromLiteral("323", token.INT, 0)), + "SYS_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SYS_RMDIR": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "SYS_SCHED_YIELD": reflect.ValueOf(constant.MakeFromLiteral("298", token.INT, 0)), + "SYS_SELECT": reflect.ValueOf(constant.MakeFromLiteral("71", token.INT, 0)), + "SYS_SEMGET": reflect.ValueOf(constant.MakeFromLiteral("221", token.INT, 0)), + "SYS_SEMOP": reflect.ValueOf(constant.MakeFromLiteral("290", token.INT, 0)), + "SYS_SENDMSG": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_SENDSYSLOG": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "SYS_SENDTO": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "SYS_SETEGID": reflect.ValueOf(constant.MakeFromLiteral("182", token.INT, 0)), + "SYS_SETEUID": reflect.ValueOf(constant.MakeFromLiteral("183", token.INT, 0)), + "SYS_SETGID": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "SYS_SETGROUPS": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "SYS_SETITIMER": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "SYS_SETLOGIN": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_SETPGID": reflect.ValueOf(constant.MakeFromLiteral("82", token.INT, 0)), + "SYS_SETPRIORITY": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SYS_SETREGID": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "SYS_SETRESGID": reflect.ValueOf(constant.MakeFromLiteral("284", token.INT, 0)), + "SYS_SETRESUID": reflect.ValueOf(constant.MakeFromLiteral("282", token.INT, 0)), + "SYS_SETREUID": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "SYS_SETRLIMIT": reflect.ValueOf(constant.MakeFromLiteral("195", token.INT, 0)), + "SYS_SETRTABLE": reflect.ValueOf(constant.MakeFromLiteral("310", token.INT, 0)), + "SYS_SETSID": reflect.ValueOf(constant.MakeFromLiteral("147", token.INT, 0)), + "SYS_SETSOCKOPT": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "SYS_SETTIMEOFDAY": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SYS_SETUID": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_SHMAT": reflect.ValueOf(constant.MakeFromLiteral("228", token.INT, 0)), + "SYS_SHMCTL": reflect.ValueOf(constant.MakeFromLiteral("296", token.INT, 0)), + "SYS_SHMDT": reflect.ValueOf(constant.MakeFromLiteral("230", token.INT, 0)), + "SYS_SHMGET": reflect.ValueOf(constant.MakeFromLiteral("289", token.INT, 0)), + "SYS_SHUTDOWN": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "SYS_SIGACTION": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_SIGALTSTACK": reflect.ValueOf(constant.MakeFromLiteral("288", token.INT, 0)), + "SYS_SIGPENDING": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_SIGPROCMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SYS_SIGRETURN": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "SYS_SIGSUSPEND": reflect.ValueOf(constant.MakeFromLiteral("111", token.INT, 0)), + "SYS_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("97", token.INT, 0)), + "SYS_SOCKETPAIR": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_STATFS": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SYS_SWAPCTL": reflect.ValueOf(constant.MakeFromLiteral("193", token.INT, 0)), + "SYS_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("57", token.INT, 0)), + "SYS_SYMLINKAT": reflect.ValueOf(constant.MakeFromLiteral("324", token.INT, 0)), + "SYS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SYS_SYSARCH": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "SYS_SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS_THRKILL": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "SYS_TRUNCATE": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "SYS_UMASK": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "SYS_UNLINK": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_UNLINKAT": reflect.ValueOf(constant.MakeFromLiteral("325", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_UNVEIL": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "SYS_UTIMENSAT": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SYS_UTIMES": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SYS_UTRACE": reflect.ValueOf(constant.MakeFromLiteral("209", token.INT, 0)), + "SYS_VFORK": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "SYS_WAIT4": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SYS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_WRITEV": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "SYS___GETCWD": reflect.ValueOf(constant.MakeFromLiteral("304", token.INT, 0)), + "SYS___GET_TCB": reflect.ValueOf(constant.MakeFromLiteral("330", token.INT, 0)), + "SYS___REALPATH": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "SYS___SEMCTL": reflect.ValueOf(constant.MakeFromLiteral("295", token.INT, 0)), + "SYS___SET_TCB": reflect.ValueOf(constant.MakeFromLiteral("329", token.INT, 0)), + "SYS___SYSCTL": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "SYS___TFORK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS___THREXIT": reflect.ValueOf(constant.MakeFromLiteral("302", token.INT, 0)), + "SYS___THRSIGDIVERT": reflect.ValueOf(constant.MakeFromLiteral("303", token.INT, 0)), + "SYS___THRSLEEP": reflect.ValueOf(constant.MakeFromLiteral("94", token.INT, 0)), + "SYS___THRWAKEUP": reflect.ValueOf(constant.MakeFromLiteral("301", token.INT, 0)), + "SYS___TMPFD": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Select": reflect.ValueOf(syscall.Select), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetBpf": reflect.ValueOf(syscall.SetBpf), + "SetBpfBuflen": reflect.ValueOf(syscall.SetBpfBuflen), + "SetBpfDatalink": reflect.ValueOf(syscall.SetBpfDatalink), + "SetBpfHeadercmpl": reflect.ValueOf(syscall.SetBpfHeadercmpl), + "SetBpfImmediate": reflect.ValueOf(syscall.SetBpfImmediate), + "SetBpfInterface": reflect.ValueOf(syscall.SetBpfInterface), + "SetBpfPromisc": reflect.ValueOf(syscall.SetBpfPromisc), + "SetBpfTimeout": reflect.ValueOf(syscall.SetBpfTimeout), + "SetKevent": reflect.ValueOf(syscall.SetKevent), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setlogin": reflect.ValueOf(syscall.Setlogin), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Settimeofday": reflect.ValueOf(syscall.Settimeofday), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfAnnounceMsghdr": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("106", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Statfs": reflect.ValueOf(syscall.Statfs), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "Sysctl": reflect.ValueOf(syscall.Sysctl), + "SysctlUint32": reflect.ValueOf(syscall.SysctlUint32), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXBURST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MAXWIN": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "TCP_MAX_SACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TCP_MAX_WINSHIFT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TCP_MD5SIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOPUSH": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_SACKHOLE_LIMIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TCP_SACK_ENABLE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("536900730", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("536900728", token.INT, 0)), + "TIOCCHKVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900638", token.INT, 0)), + "TIOCCLRVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("536900637", token.INT, 0)), + "TIOCCONS": reflect.ValueOf(constant.MakeFromLiteral("2147775586", token.INT, 0)), + "TIOCDRAIN": reflect.ValueOf(constant.MakeFromLiteral("536900702", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("536900621", token.INT, 0)), + "TIOCEXT": reflect.ValueOf(constant.MakeFromLiteral("2147775584", token.INT, 0)), + "TIOCFLAG_CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCFLAG_CRTSCTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCFLAG_MDMBUF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCFLAG_PPS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCFLAG_SOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2147775504", token.INT, 0)), + "TIOCGETA": reflect.ValueOf(constant.MakeFromLiteral("1076655123", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("1074033690", token.INT, 0)), + "TIOCGFLAGS": reflect.ValueOf(constant.MakeFromLiteral("1074033757", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033783", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("1074033763", token.INT, 0)), + "TIOCGTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("1074820187", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("1074295912", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("2147775595", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("2147775596", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODG": reflect.ValueOf(constant.MakeFromLiteral("1074033770", token.INT, 0)), + "TIOCMODS": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("2147775597", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("536900721", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("536900622", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("1074033779", token.INT, 0)), + "TIOCPKT": reflect.ValueOf(constant.MakeFromLiteral("2147775600", token.INT, 0)), + "TIOCPKT_DATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TIOCPKT_DOSTOP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCPKT_FLUSHREAD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCPKT_FLUSHWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCPKT_IOCTL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCPKT_NOSTOP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCPKT_START": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCPKT_STOP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("2147775593", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("536900731", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("536900705", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("536900729", token.INT, 0)), + "TIOCSETA": reflect.ValueOf(constant.MakeFromLiteral("2150396948", token.INT, 0)), + "TIOCSETAF": reflect.ValueOf(constant.MakeFromLiteral("2150396950", token.INT, 0)), + "TIOCSETAW": reflect.ValueOf(constant.MakeFromLiteral("2150396949", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("2147775515", token.INT, 0)), + "TIOCSETVERAUTH": reflect.ValueOf(constant.MakeFromLiteral("2147775516", token.INT, 0)), + "TIOCSFLAGS": reflect.ValueOf(constant.MakeFromLiteral("2147775580", token.INT, 0)), + "TIOCSIG": reflect.ValueOf(constant.MakeFromLiteral("2147775583", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("2147775606", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("536900718", token.INT, 0)), + "TIOCSTAT": reflect.ValueOf(constant.MakeFromLiteral("536900709", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("536900719", token.INT, 0)), + "TIOCSTSTAMP": reflect.ValueOf(constant.MakeFromLiteral("2148037722", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("2148037735", token.INT, 0)), + "TIOCUCNTL": reflect.ValueOf(constant.MakeFromLiteral("2147775590", token.INT, 0)), + "TIOCUCNTL_CBRK": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "TIOCUCNTL_SBRK": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTATUS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WALTSIG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLAG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "Fsid": reflect.ValueOf((*syscall.Fsid)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfAnnounceMsghdr": reflect.ValueOf((*syscall.IfAnnounceMsghdr)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "InterfaceAddrMessage": reflect.ValueOf((*syscall.InterfaceAddrMessage)(nil)), + "InterfaceAnnounceMessage": reflect.ValueOf((*syscall.InterfaceAnnounceMessage)(nil)), + "InterfaceMessage": reflect.ValueOf((*syscall.InterfaceMessage)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Kevent_t": reflect.ValueOf((*syscall.Kevent_t)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Mclpool": reflect.ValueOf((*syscall.Mclpool)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RouteMessage": reflect.ValueOf((*syscall.RouteMessage)(nil)), + "RoutingMessage": reflect.ValueOf((*syscall.RoutingMessage)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "Statfs_t": reflect.ValueOf((*syscall.Statfs_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_RoutingMessage": reflect.ValueOf((*_syscall_RoutingMessage)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_RoutingMessage is an interface wrapper for RoutingMessage type +type _syscall_RoutingMessage struct { + IValue interface{} +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_plan9_386.go b/stdlib/syscall/go1_19_syscall_plan9_386.go new file mode 100644 index 000000000..813335b3c --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_plan9_386.go @@ -0,0 +1,244 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Await": reflect.ValueOf(syscall.Await), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "Create": reflect.ValueOf(syscall.Create), + "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), + "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), + "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), + "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), + "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), + "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), + "EIO": reflect.ValueOf(&syscall.EIO).Elem(), + "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), + "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), + "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), + "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), + "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), + "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), + "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), + "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), + "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), + "Environ": reflect.ValueOf(syscall.Environ), + "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), + "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), + "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fd2path": reflect.ValueOf(syscall.Fd2path), + "Fixwd": reflect.ValueOf(syscall.Fixwd), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fwstat": reflect.ValueOf(syscall.Fwstat), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mount": reflect.ValueOf(syscall.Mount), + "NewError": reflect.ValueOf(syscall.NewError), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "Remove": reflect.ValueOf(syscall.Remove), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "WaitProcess": reflect.ValueOf(syscall.WaitProcess), + "Write": reflect.ValueOf(syscall.Write), + "Wstat": reflect.ValueOf(syscall.Wstat), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dir": reflect.ValueOf((*syscall.Dir)(nil)), + "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), + "Note": reflect.ValueOf((*syscall.Note)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Qid": reflect.ValueOf((*syscall.Qid)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} diff --git a/stdlib/syscall/go1_19_syscall_plan9_amd64.go b/stdlib/syscall/go1_19_syscall_plan9_amd64.go new file mode 100644 index 000000000..813335b3c --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_plan9_amd64.go @@ -0,0 +1,244 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Await": reflect.ValueOf(syscall.Await), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "Create": reflect.ValueOf(syscall.Create), + "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), + "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), + "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), + "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), + "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), + "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), + "EIO": reflect.ValueOf(&syscall.EIO).Elem(), + "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), + "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), + "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), + "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), + "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), + "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), + "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), + "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), + "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), + "Environ": reflect.ValueOf(syscall.Environ), + "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), + "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), + "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fd2path": reflect.ValueOf(syscall.Fd2path), + "Fixwd": reflect.ValueOf(syscall.Fixwd), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fwstat": reflect.ValueOf(syscall.Fwstat), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mount": reflect.ValueOf(syscall.Mount), + "NewError": reflect.ValueOf(syscall.NewError), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "Remove": reflect.ValueOf(syscall.Remove), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "WaitProcess": reflect.ValueOf(syscall.WaitProcess), + "Write": reflect.ValueOf(syscall.Write), + "Wstat": reflect.ValueOf(syscall.Wstat), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dir": reflect.ValueOf((*syscall.Dir)(nil)), + "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), + "Note": reflect.ValueOf((*syscall.Note)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Qid": reflect.ValueOf((*syscall.Qid)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} diff --git a/stdlib/syscall/go1_19_syscall_plan9_arm.go b/stdlib/syscall/go1_19_syscall_plan9_arm.go new file mode 100644 index 000000000..813335b3c --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_plan9_arm.go @@ -0,0 +1,244 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Await": reflect.ValueOf(syscall.Await), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "Create": reflect.ValueOf(syscall.Create), + "DMAPPEND": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "DMAUTH": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "DMDIR": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "DMEXCL": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "DMEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DMMOUNT": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "DMREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DMTMP": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "DMWRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "EACCES": reflect.ValueOf(&syscall.EACCES).Elem(), + "EAFNOSUPPORT": reflect.ValueOf(&syscall.EAFNOSUPPORT).Elem(), + "EBUSY": reflect.ValueOf(&syscall.EBUSY).Elem(), + "EEXIST": reflect.ValueOf(&syscall.EEXIST).Elem(), + "EINTR": reflect.ValueOf(&syscall.EINTR).Elem(), + "EINVAL": reflect.ValueOf(&syscall.EINVAL).Elem(), + "EIO": reflect.ValueOf(&syscall.EIO).Elem(), + "EISDIR": reflect.ValueOf(&syscall.EISDIR).Elem(), + "EMFILE": reflect.ValueOf(&syscall.EMFILE).Elem(), + "ENAMETOOLONG": reflect.ValueOf(&syscall.ENAMETOOLONG).Elem(), + "ENOENT": reflect.ValueOf(&syscall.ENOENT).Elem(), + "ENOTDIR": reflect.ValueOf(&syscall.ENOTDIR).Elem(), + "EPERM": reflect.ValueOf(&syscall.EPERM).Elem(), + "EPLAN9": reflect.ValueOf(&syscall.EPLAN9).Elem(), + "ERRMAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "ESPIPE": reflect.ValueOf(&syscall.ESPIPE).Elem(), + "ETIMEDOUT": reflect.ValueOf(&syscall.ETIMEDOUT).Elem(), + "Environ": reflect.ValueOf(syscall.Environ), + "ErrBadName": reflect.ValueOf(&syscall.ErrBadName).Elem(), + "ErrBadStat": reflect.ValueOf(&syscall.ErrBadStat).Elem(), + "ErrShortStat": reflect.ValueOf(&syscall.ErrShortStat).Elem(), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fd2path": reflect.ValueOf(syscall.Fd2path), + "Fixwd": reflect.ValueOf(syscall.Fixwd), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fwstat": reflect.ValueOf(syscall.Fwstat), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "MAFTER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MBEFORE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCACHE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MCREATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MMASK": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "MORDER": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MREPL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mount": reflect.ValueOf(syscall.Mount), + "NewError": reflect.ValueOf(syscall.NewError), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "QTAPPEND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "QTAUTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "QTDIR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "QTEXCL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "QTFILE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "QTMOUNT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "QTTMP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFCENVG": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RFCFDG": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RFCNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RFENVG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RFFDG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RFMEM": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RFNAMEG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RFNOMNT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RFNOTEG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RFNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RFPROC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RFREND": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "Remove": reflect.ValueOf(syscall.Remove), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "STATFIXLEN": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "STATMAX": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SYS_ALARM": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SYS_AWAIT": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "SYS_BIND": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_BRK_": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "SYS_CHDIR": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SYS_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SYS_CREATE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "SYS_DUP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SYS_ERRSTR": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "SYS_EXEC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SYS_EXITS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SYS_FAUTH": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SYS_FD2PATH": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "SYS_FSTAT": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "SYS_FVERSION": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SYS_FWSTAT": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "SYS_MOUNT": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "SYS_NOTED": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "SYS_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "SYS_NSEC": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "SYS_OPEN": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "SYS_OSEEK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SYS_PIPE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "SYS_PREAD": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "SYS_PWRITE": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "SYS_REMOVE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "SYS_RENDEZVOUS": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "SYS_RFORK": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "SYS_SEEK": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "SYS_SEGATTACH": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "SYS_SEGBRK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SYS_SEGDETACH": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "SYS_SEGFLUSH": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "SYS_SEGFREE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SYS_SEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "SYS_SEMRELEASE": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "SYS_SLEEP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "SYS_STAT": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "SYS_SYSR1": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SYS_TSEMACQUIRE": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "SYS_UNMOUNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "SYS_WSTAT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Setenv": reflect.ValueOf(syscall.Setenv), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "UnmarshalDir": reflect.ValueOf(syscall.UnmarshalDir), + "Unmount": reflect.ValueOf(syscall.Unmount), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "WaitProcess": reflect.ValueOf(syscall.WaitProcess), + "Write": reflect.ValueOf(syscall.Write), + "Wstat": reflect.ValueOf(syscall.Wstat), + + // type definitions + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Dir": reflect.ValueOf((*syscall.Dir)(nil)), + "ErrorString": reflect.ValueOf((*syscall.ErrorString)(nil)), + "Note": reflect.ValueOf((*syscall.Note)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "Qid": reflect.ValueOf((*syscall.Qid)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Waitmsg": reflect.ValueOf((*syscall.Waitmsg)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} diff --git a/stdlib/syscall/go1_19_syscall_solaris_amd64.go b/stdlib/syscall/go1_19_syscall_solaris_amd64.go new file mode 100644 index 000000000..924f6151f --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_solaris_amd64.go @@ -0,0 +1,1504 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_802": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "AF_APPLETALK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "AF_CCITT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "AF_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "AF_DATAKIT": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "AF_DECnet": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "AF_DLI": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "AF_ECMA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "AF_FILE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_GOSIP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "AF_HYLINK": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "AF_IMPLINK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "AF_INET_OFFLOAD": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "AF_IPX": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_KEY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "AF_LAT": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "AF_LINK": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "AF_LOCAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_NBS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "AF_NCA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "AF_NIT": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_NS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "AF_OSI": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "AF_OSINET": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "AF_PACKET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "AF_POLICY": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "AF_PUP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AF_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "AF_SNA": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "AF_TRILL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AF_X25": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "ARPHRD_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "ARPHRD_ATM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ARPHRD_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "ARPHRD_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "ARPHRD_EETHER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ARPHRD_ETHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ARPHRD_FC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "ARPHRD_FRAME": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "ARPHRD_HDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "ARPHRD_IB": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ARPHRD_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "ARPHRD_IPATM": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "ARPHRD_METRICOM": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "ARPHRD_TUNNEL": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "Accept4": reflect.ValueOf(syscall.Accept4), + "Access": reflect.ValueOf(syscall.Access), + "Adjtime": reflect.ValueOf(syscall.Adjtime), + "B0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "B110": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "B115200": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "B1200": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "B134": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "B150": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "B153600": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "B1800": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "B19200": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "B200": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "B230400": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "B2400": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "B300": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "B307200": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "B38400": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "B460800": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "B4800": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "B50": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "B57600": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "B600": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "B75": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "B76800": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "B921600": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "B9600": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "BIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("536887912", token.INT, 0)), + "BIOCGBLEN": reflect.ValueOf(constant.MakeFromLiteral("1074020966", token.INT, 0)), + "BIOCGDLT": reflect.ValueOf(constant.MakeFromLiteral("1074020970", token.INT, 0)), + "BIOCGDLTLIST": reflect.ValueOf(constant.MakeFromLiteral("-1072676233", token.INT, 0)), + "BIOCGDLTLIST32": reflect.ValueOf(constant.MakeFromLiteral("-1073200521", token.INT, 0)), + "BIOCGETIF": reflect.ValueOf(constant.MakeFromLiteral("1075855979", token.INT, 0)), + "BIOCGETLIF": reflect.ValueOf(constant.MakeFromLiteral("1081623147", token.INT, 0)), + "BIOCGHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("1074020980", token.INT, 0)), + "BIOCGRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("1074807419", token.INT, 0)), + "BIOCGRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("1074283131", token.INT, 0)), + "BIOCGSEESENT": reflect.ValueOf(constant.MakeFromLiteral("1074020984", token.INT, 0)), + "BIOCGSTATS": reflect.ValueOf(constant.MakeFromLiteral("1082147439", token.INT, 0)), + "BIOCGSTATSOLD": reflect.ValueOf(constant.MakeFromLiteral("1074283119", token.INT, 0)), + "BIOCIMMEDIATE": reflect.ValueOf(constant.MakeFromLiteral("-2147204496", token.INT, 0)), + "BIOCPROMISC": reflect.ValueOf(constant.MakeFromLiteral("536887913", token.INT, 0)), + "BIOCSBLEN": reflect.ValueOf(constant.MakeFromLiteral("-1073462682", token.INT, 0)), + "BIOCSDLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204490", token.INT, 0)), + "BIOCSETF": reflect.ValueOf(constant.MakeFromLiteral("-2146418073", token.INT, 0)), + "BIOCSETF32": reflect.ValueOf(constant.MakeFromLiteral("-2146942361", token.INT, 0)), + "BIOCSETIF": reflect.ValueOf(constant.MakeFromLiteral("-2145369492", token.INT, 0)), + "BIOCSETLIF": reflect.ValueOf(constant.MakeFromLiteral("-2139602324", token.INT, 0)), + "BIOCSHDRCMPLT": reflect.ValueOf(constant.MakeFromLiteral("-2147204491", token.INT, 0)), + "BIOCSRTIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("-2146418054", token.INT, 0)), + "BIOCSRTIMEOUT32": reflect.ValueOf(constant.MakeFromLiteral("-2146942342", token.INT, 0)), + "BIOCSSEESENT": reflect.ValueOf(constant.MakeFromLiteral("-2147204487", token.INT, 0)), + "BIOCSTCPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418062", token.INT, 0)), + "BIOCSUDPF": reflect.ValueOf(constant.MakeFromLiteral("-2146418061", token.INT, 0)), + "BIOCVERSION": reflect.ValueOf(constant.MakeFromLiteral("1074020977", token.INT, 0)), + "BPF_A": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_ABS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_ADD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_ALIGNMENT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_ALU": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "BPF_AND": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "BPF_B": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_DFLTBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "BPF_DIV": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_H": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BPF_IMM": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_IND": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_JA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_JEQ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_JGE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "BPF_JGT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_JMP": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "BPF_JSET": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_K": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_LDX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_LSH": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MAJOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MAXBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "BPF_MAXINSNS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "BPF_MEM": reflect.ValueOf(constant.MakeFromLiteral("96", token.INT, 0)), + "BPF_MEMWORDS": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_MINBUFSIZE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_MINOR_VERSION": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "BPF_MISC": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "BPF_MSH": reflect.ValueOf(constant.MakeFromLiteral("160", token.INT, 0)), + "BPF_MUL": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "BPF_NEG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_OR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "BPF_RELEASE": reflect.ValueOf(constant.MakeFromLiteral("199606", token.INT, 0)), + "BPF_RET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "BPF_RSH": reflect.ValueOf(constant.MakeFromLiteral("112", token.INT, 0)), + "BPF_ST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "BPF_STX": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "BPF_SUB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "BPF_TAX": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_TXA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "BPF_W": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "BPF_X": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "BRKINT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CFLUSH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "CLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CREAD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CS5": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CS6": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CS7": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CS8": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSIZE": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "CSTART": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "CSTOP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "CSTOPB": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CSUSP": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "CSWTCH": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Chroot": reflect.ValueOf(syscall.Chroot), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "CmsgLen": reflect.ValueOf(syscall.CmsgLen), + "CmsgSpace": reflect.ValueOf(syscall.CmsgSpace), + "Connect": reflect.ValueOf(syscall.Connect), + "DLT_AIRONET_HEADER": reflect.ValueOf(constant.MakeFromLiteral("120", token.INT, 0)), + "DLT_APPLE_IP_OVER_IEEE1394": reflect.ValueOf(constant.MakeFromLiteral("138", token.INT, 0)), + "DLT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DLT_ARCNET_LINUX": reflect.ValueOf(constant.MakeFromLiteral("129", token.INT, 0)), + "DLT_ATM_CLIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DLT_ATM_RFC1483": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DLT_AURORA": reflect.ValueOf(constant.MakeFromLiteral("126", token.INT, 0)), + "DLT_AX25": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DLT_BACNET_MS_TP": reflect.ValueOf(constant.MakeFromLiteral("165", token.INT, 0)), + "DLT_CHAOS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DLT_CISCO_IOS": reflect.ValueOf(constant.MakeFromLiteral("118", token.INT, 0)), + "DLT_C_HDLC": reflect.ValueOf(constant.MakeFromLiteral("104", token.INT, 0)), + "DLT_DOCSIS": reflect.ValueOf(constant.MakeFromLiteral("143", token.INT, 0)), + "DLT_ECONET": reflect.ValueOf(constant.MakeFromLiteral("115", token.INT, 0)), + "DLT_EN10MB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DLT_EN3MB": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DLT_ENC": reflect.ValueOf(constant.MakeFromLiteral("109", token.INT, 0)), + "DLT_ERF_ETH": reflect.ValueOf(constant.MakeFromLiteral("175", token.INT, 0)), + "DLT_ERF_POS": reflect.ValueOf(constant.MakeFromLiteral("176", token.INT, 0)), + "DLT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DLT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("107", token.INT, 0)), + "DLT_GCOM_SERIAL": reflect.ValueOf(constant.MakeFromLiteral("173", token.INT, 0)), + "DLT_GCOM_T1E1": reflect.ValueOf(constant.MakeFromLiteral("172", token.INT, 0)), + "DLT_GPF_F": reflect.ValueOf(constant.MakeFromLiteral("171", token.INT, 0)), + "DLT_GPF_T": reflect.ValueOf(constant.MakeFromLiteral("170", token.INT, 0)), + "DLT_GPRS_LLC": reflect.ValueOf(constant.MakeFromLiteral("169", token.INT, 0)), + "DLT_HDLC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DLT_HHDLC": reflect.ValueOf(constant.MakeFromLiteral("121", token.INT, 0)), + "DLT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DLT_IBM_SN": reflect.ValueOf(constant.MakeFromLiteral("146", token.INT, 0)), + "DLT_IBM_SP": reflect.ValueOf(constant.MakeFromLiteral("145", token.INT, 0)), + "DLT_IEEE802": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DLT_IEEE802_11": reflect.ValueOf(constant.MakeFromLiteral("105", token.INT, 0)), + "DLT_IEEE802_11_RADIO": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "DLT_IEEE802_11_RADIO_AVS": reflect.ValueOf(constant.MakeFromLiteral("163", token.INT, 0)), + "DLT_IPNET": reflect.ValueOf(constant.MakeFromLiteral("226", token.INT, 0)), + "DLT_IPOIB": reflect.ValueOf(constant.MakeFromLiteral("162", token.INT, 0)), + "DLT_IP_OVER_FC": reflect.ValueOf(constant.MakeFromLiteral("122", token.INT, 0)), + "DLT_JUNIPER_ATM1": reflect.ValueOf(constant.MakeFromLiteral("137", token.INT, 0)), + "DLT_JUNIPER_ATM2": reflect.ValueOf(constant.MakeFromLiteral("135", token.INT, 0)), + "DLT_JUNIPER_CHDLC": reflect.ValueOf(constant.MakeFromLiteral("181", token.INT, 0)), + "DLT_JUNIPER_ES": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "DLT_JUNIPER_ETHER": reflect.ValueOf(constant.MakeFromLiteral("178", token.INT, 0)), + "DLT_JUNIPER_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("180", token.INT, 0)), + "DLT_JUNIPER_GGSN": reflect.ValueOf(constant.MakeFromLiteral("133", token.INT, 0)), + "DLT_JUNIPER_MFR": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "DLT_JUNIPER_MLFR": reflect.ValueOf(constant.MakeFromLiteral("131", token.INT, 0)), + "DLT_JUNIPER_MLPPP": reflect.ValueOf(constant.MakeFromLiteral("130", token.INT, 0)), + "DLT_JUNIPER_MONITOR": reflect.ValueOf(constant.MakeFromLiteral("164", token.INT, 0)), + "DLT_JUNIPER_PIC_PEER": reflect.ValueOf(constant.MakeFromLiteral("174", token.INT, 0)), + "DLT_JUNIPER_PPP": reflect.ValueOf(constant.MakeFromLiteral("179", token.INT, 0)), + "DLT_JUNIPER_PPPOE": reflect.ValueOf(constant.MakeFromLiteral("167", token.INT, 0)), + "DLT_JUNIPER_PPPOE_ATM": reflect.ValueOf(constant.MakeFromLiteral("168", token.INT, 0)), + "DLT_JUNIPER_SERVICES": reflect.ValueOf(constant.MakeFromLiteral("136", token.INT, 0)), + "DLT_LINUX_IRDA": reflect.ValueOf(constant.MakeFromLiteral("144", token.INT, 0)), + "DLT_LINUX_LAPD": reflect.ValueOf(constant.MakeFromLiteral("177", token.INT, 0)), + "DLT_LINUX_SLL": reflect.ValueOf(constant.MakeFromLiteral("113", token.INT, 0)), + "DLT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "DLT_LTALK": reflect.ValueOf(constant.MakeFromLiteral("114", token.INT, 0)), + "DLT_MTP2": reflect.ValueOf(constant.MakeFromLiteral("140", token.INT, 0)), + "DLT_MTP2_WITH_PHDR": reflect.ValueOf(constant.MakeFromLiteral("139", token.INT, 0)), + "DLT_MTP3": reflect.ValueOf(constant.MakeFromLiteral("141", token.INT, 0)), + "DLT_NULL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DLT_PCI_EXP": reflect.ValueOf(constant.MakeFromLiteral("125", token.INT, 0)), + "DLT_PFLOG": reflect.ValueOf(constant.MakeFromLiteral("117", token.INT, 0)), + "DLT_PFSYNC": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DLT_PPP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DLT_PPP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DLT_PPP_PPPD": reflect.ValueOf(constant.MakeFromLiteral("166", token.INT, 0)), + "DLT_PRISM_HEADER": reflect.ValueOf(constant.MakeFromLiteral("119", token.INT, 0)), + "DLT_PRONET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DLT_RAW": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DLT_RAWAF_MASK": reflect.ValueOf(constant.MakeFromLiteral("35913728", token.INT, 0)), + "DLT_RIO": reflect.ValueOf(constant.MakeFromLiteral("124", token.INT, 0)), + "DLT_SCCP": reflect.ValueOf(constant.MakeFromLiteral("142", token.INT, 0)), + "DLT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DLT_SLIP_BSDOS": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DLT_SUNATM": reflect.ValueOf(constant.MakeFromLiteral("123", token.INT, 0)), + "DLT_SYMANTEC_FIREWALL": reflect.ValueOf(constant.MakeFromLiteral("99", token.INT, 0)), + "DLT_TZSP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Dup": reflect.ValueOf(syscall.Dup), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "ECHOCTL": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "ECHOE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "ECHOK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ECHOKE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "ECHONL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ECHOPRT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOCKUNMAPPED": reflect.ValueOf(syscall.ELOCKUNMAPPED), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMPTY_SET": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMT_CPCOVF": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTACTIVE": reflect.ValueOf(syscall.ENOTACTIVE), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "EQUALITY_CHECK": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "EXTA": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "EXTB": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "Environ": reflect.ValueOf(syscall.Environ), + "FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FD_NFDBITS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FD_SETSIZE": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "FLUSHALL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FLUSHDATA": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FLUSHO": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "F_ALLOCSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_ALLOCSP64": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "F_BADFD": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "F_BLKSIZE": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "F_BLOCKS": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "F_CHKFL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_COMPAT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "F_DUP2FD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "F_DUP2FD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "F_DUPFD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_DUPFD_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "F_FREESP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_FREESP64": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "F_GETFD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_GETFL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_GETLK": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETLK64": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "F_GETOWN": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "F_GETXFL": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "F_HASREMOTELOCKS": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "F_ISSTREAM": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "F_MANDDNY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_MDACC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "F_NODNY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "F_NPRIV": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "F_PRIV": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "F_QUOTACTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "F_RDACC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDDNY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_RDLCK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "F_REVOKE": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "F_RMACC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RMDNY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_RWACC": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_RWDNY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_SETFD": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_SETFL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_SETLK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "F_SETLK64_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETLKW": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLKW64": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "F_SETLK_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "F_SETOWN": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "F_SHARE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "F_SHARE_NBMAND": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "F_UNLCK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "F_UNLKSYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "F_UNSHARE": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "F_WRACC": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRDNY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "F_WRLCK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FcntlFlock": reflect.ValueOf(syscall.FcntlFlock), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "Fpathconf": reflect.ValueOf(syscall.Fpathconf), + "Fstat": reflect.ValueOf(syscall.Fstat), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "Getcwd": reflect.ValueOf(syscall.Getcwd), + "Getdents": reflect.ValueOf(syscall.Getdents), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getexecname": reflect.ValueOf(syscall.Getexecname), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Gethostname": reflect.ValueOf(syscall.Gethostname), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getpriority": reflect.ValueOf(syscall.Getpriority), + "Getrlimit": reflect.ValueOf(syscall.Getrlimit), + "Getrusage": reflect.ValueOf(syscall.Getrusage), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HUPCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ICANON": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ICRNL": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IEXTEN": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_ADDRCONF": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "IFF_ALLMULTI": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "IFF_ANYCAST": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("8736013826906", token.INT, 0)), + "IFF_COS_ENABLED": reflect.ValueOf(constant.MakeFromLiteral("8589934592", token.INT, 0)), + "IFF_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_DEPRECATED": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "IFF_DHCPRUNNING": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IFF_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("274877906944", token.INT, 0)), + "IFF_FAILED": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_FIXEDMTU": reflect.ValueOf(constant.MakeFromLiteral("68719476736", token.INT, 0)), + "IFF_INACTIVE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IFF_INTELLIGENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "IFF_IPMP": reflect.ValueOf(constant.MakeFromLiteral("549755813888", token.INT, 0)), + "IFF_IPMP_CANTCHANGE": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "IFF_IPMP_INVALID": reflect.ValueOf(constant.MakeFromLiteral("8256487552", token.INT, 0)), + "IFF_IPV4": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "IFF_IPV6": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "IFF_L3PROTECT": reflect.ValueOf(constant.MakeFromLiteral("4398046511104", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IFF_MULTI_BCAST": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IFF_NOACCEPT": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "IFF_NOARP": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IFF_NOFAILOVER": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IFF_NOLINKLOCAL": reflect.ValueOf(constant.MakeFromLiteral("2199023255552", token.INT, 0)), + "IFF_NOLOCAL": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "IFF_NONUD": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "IFF_NORTEXCH": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "IFF_NOTRAILERS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFF_NOXMIT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IFF_OFFLINE": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IFF_POINTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_PREFERRED": reflect.ValueOf(constant.MakeFromLiteral("17179869184", token.INT, 0)), + "IFF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "IFF_PROMISC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IFF_ROUTER": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "IFF_RUNNING": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "IFF_STANDBY": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "IFF_TEMPORARY": reflect.ValueOf(constant.MakeFromLiteral("34359738368", token.INT, 0)), + "IFF_UNNUMBERED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFF_VIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("137438953472", token.INT, 0)), + "IFF_VRRP": reflect.ValueOf(constant.MakeFromLiteral("1099511627776", token.INT, 0)), + "IFF_XRESOLV": reflect.ValueOf(constant.MakeFromLiteral("4294967296", token.INT, 0)), + "IFNAMSIZ": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_1822": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFT_6TO4": reflect.ValueOf(constant.MakeFromLiteral("202", token.INT, 0)), + "IFT_AAL5": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "IFT_ARCNET": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IFT_ARCNETPLUS": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IFT_ATM": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IFT_CEPT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IFT_DS3": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "IFT_EON": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IFT_ETHER": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IFT_FDDI": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IFT_FRELAY": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IFT_FRELAYDCE": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IFT_HDH1822": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IFT_HIPPI": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "IFT_HSSI": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IFT_HY": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IFT_IB": reflect.ValueOf(constant.MakeFromLiteral("199", token.INT, 0)), + "IFT_IPV4": reflect.ValueOf(constant.MakeFromLiteral("200", token.INT, 0)), + "IFT_IPV6": reflect.ValueOf(constant.MakeFromLiteral("201", token.INT, 0)), + "IFT_ISDNBASIC": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IFT_ISDNPRIMARY": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IFT_ISO88022LLC": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IFT_ISO88023": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IFT_ISO88024": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFT_ISO88025": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IFT_ISO88026": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IFT_LAPB": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFT_LOCALTALK": reflect.ValueOf(constant.MakeFromLiteral("42", token.INT, 0)), + "IFT_LOOP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IFT_MIOX25": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IFT_MODEM": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IFT_NSIP": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IFT_OTHER": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IFT_P10": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IFT_P80": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IFT_PARA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IFT_PPP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IFT_PROPMUX": reflect.ValueOf(constant.MakeFromLiteral("54", token.INT, 0)), + "IFT_PROPVIRTUAL": reflect.ValueOf(constant.MakeFromLiteral("53", token.INT, 0)), + "IFT_PTPSERIAL": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IFT_RS232": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IFT_SDLC": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IFT_SIP": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "IFT_SLIP": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IFT_SMDSDXI": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IFT_SMDSICIP": reflect.ValueOf(constant.MakeFromLiteral("52", token.INT, 0)), + "IFT_SONET": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IFT_SONETPATH": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IFT_SONETVT": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IFT_STARLAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IFT_T1": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IFT_ULTRA": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "IFT_V35": reflect.ValueOf(constant.MakeFromLiteral("45", token.INT, 0)), + "IFT_X25": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IFT_X25DDN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFT_X25PLE": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IFT_XETHER": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IGNBRK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNCR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IGNPAR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IMAXBEL": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "INLCR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "INPCK": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_AUTOCONF_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_AUTOCONF_NET": reflect.ValueOf(constant.MakeFromLiteral("2851995648", token.INT, 0)), + "IN_CLASSA_HOST": reflect.ValueOf(constant.MakeFromLiteral("16777215", token.INT, 0)), + "IN_CLASSA_MAX": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "IN_CLASSA_NET": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_CLASSA_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IN_CLASSB_HOST": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IN_CLASSB_MAX": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "IN_CLASSB_NET": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_CLASSB_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IN_CLASSC_HOST": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IN_CLASSC_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967040", token.INT, 0)), + "IN_CLASSC_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IN_CLASSD_HOST": reflect.ValueOf(constant.MakeFromLiteral("268435455", token.INT, 0)), + "IN_CLASSD_NET": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "IN_CLASSD_NSHIFT": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "IN_CLASSE_NET": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IN_LOOPBACKNET": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "IN_PRIVATE12_MASK": reflect.ValueOf(constant.MakeFromLiteral("4293918720", token.INT, 0)), + "IN_PRIVATE12_NET": reflect.ValueOf(constant.MakeFromLiteral("2886729728", token.INT, 0)), + "IN_PRIVATE16_MASK": reflect.ValueOf(constant.MakeFromLiteral("4294901760", token.INT, 0)), + "IN_PRIVATE16_NET": reflect.ValueOf(constant.MakeFromLiteral("3232235520", token.INT, 0)), + "IN_PRIVATE8_MASK": reflect.ValueOf(constant.MakeFromLiteral("4278190080", token.INT, 0)), + "IN_PRIVATE8_NET": reflect.ValueOf(constant.MakeFromLiteral("167772160", token.INT, 0)), + "IPPROTO_AH": reflect.ValueOf(constant.MakeFromLiteral("51", token.INT, 0)), + "IPPROTO_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("60", token.INT, 0)), + "IPPROTO_EGP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPPROTO_ENCAP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPPROTO_EON": reflect.ValueOf(constant.MakeFromLiteral("80", token.INT, 0)), + "IPPROTO_ESP": reflect.ValueOf(constant.MakeFromLiteral("50", token.INT, 0)), + "IPPROTO_FRAGMENT": reflect.ValueOf(constant.MakeFromLiteral("44", token.INT, 0)), + "IPPROTO_GGP": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPPROTO_HELLO": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPPROTO_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_ICMP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPPROTO_ICMPV6": reflect.ValueOf(constant.MakeFromLiteral("58", token.INT, 0)), + "IPPROTO_IDP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPPROTO_IGMP": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "IPPROTO_ND": reflect.ValueOf(constant.MakeFromLiteral("77", token.INT, 0)), + "IPPROTO_NONE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "IPPROTO_OSPF": reflect.ValueOf(constant.MakeFromLiteral("89", token.INT, 0)), + "IPPROTO_PIM": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "IPPROTO_PUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPPROTO_RAW": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "IPPROTO_ROUTING": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "IPPROTO_RSVP": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "IPPROTO_SCTP": reflect.ValueOf(constant.MakeFromLiteral("132", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IPV6_CHECKSUM": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IPV6_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "IPV6_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_DSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "IPV6_FLOWINFO_FLOWLABEL": reflect.ValueOf(constant.MakeFromLiteral("4294905600", token.INT, 0)), + "IPV6_FLOWINFO_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("61455", token.INT, 0)), + "IPV6_HOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_HOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_PAD1_OPT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_PATHMTU": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "IPV6_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_PREFER_SRC_CGA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_PREFER_SRC_CGADEFAULT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_CGAMASK": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "IPV6_PREFER_SRC_COA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IPV6_PREFER_SRC_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IPV6_PREFER_SRC_HOME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MASK": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "IPV6_PREFER_SRC_MIPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IPV6_PREFER_SRC_MIPMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IPV6_PREFER_SRC_NONCGA": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_PREFER_SRC_PUBLIC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMP": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IPV6_PREFER_SRC_TMPDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_PREFER_SRC_TMPMASK": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_RECVDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "IPV6_RECVHOPLIMIT": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IPV6_RECVHOPOPTS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IPV6_RECVPATHMTU": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "IPV6_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IPV6_RECVRTHDR": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IPV6_RECVRTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IPV6_RECVTCLASS": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IPV6_RTHDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IPV6_RTHDRDSTOPTS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_RTHDR_TYPE_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPV6_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IPV6_SRC_PREFERENCES": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "IPV6_TCLASS": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IPV6_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "IPV6_USE_MIN_MTU": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "IP_ADD_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "IP_BLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "IP_BOUND_IF": reflect.ValueOf(constant.MakeFromLiteral("65", token.INT, 0)), + "IP_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("262", token.INT, 0)), + "IP_BROADCAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("67", token.INT, 0)), + "IP_DEFAULT_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DEFAULT_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_DF": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "IP_DHCPINIT_IF": reflect.ValueOf(constant.MakeFromLiteral("69", token.INT, 0)), + "IP_DONTFRAG": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("261", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "IP_DROP_SOURCE_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "IP_HDRINCL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IP_MAXPACKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "IP_MF": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "IP_MSS": reflect.ValueOf(constant.MakeFromLiteral("576", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IP_NEXTHOP": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "IP_OPTIONS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IP_PKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "IP_RECVIF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_RECVOPTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "IP_RECVPKTINFO": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "IP_RECVRETOPTS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IP_RECVSLLA": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_RECVTTL": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_RETOPTS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IP_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "IP_SEC_OPT": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IP_UNBLOCK_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "IP_UNSPEC_SRC": reflect.ValueOf(constant.MakeFromLiteral("66", token.INT, 0)), + "ISIG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "ISTRIP": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "IXANY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "IXOFF": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "IXON": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "Lstat": reflect.ValueOf(syscall.Lstat), + "MADV_ACCESS_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "MADV_ACCESS_LWP": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MADV_ACCESS_MANY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MADV_DONTNEED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MADV_FREE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "MADV_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MADV_RANDOM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MADV_SEQUENTIAL": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MADV_WILLNEED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "MAP_32BIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAP_ALIGN": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "MAP_ANON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_ANONYMOUS": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAP_FIXED": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MAP_INITDATA": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MAP_NORESERVE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MAP_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MAP_RENAME": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MAP_SHARED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MAP_TEXT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "MAP_TYPE": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MCL_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MCL_FUTURE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_CTRUNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "MSG_DONTWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MSG_DUPCTRL": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "MSG_EOR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MSG_MAXIOVLEN": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "MSG_NOTIFICATION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MSG_OOB": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MSG_PEEK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MSG_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "MSG_WAITALL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "MSG_XPG4_2": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MS_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "MS_INVALIDATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "MS_OLDSYNC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "MS_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "M_FLUSH": reflect.ValueOf(constant.MakeFromLiteral("134", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "Mknod": reflect.ValueOf(syscall.Mknod), + "NOFLSH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "Nanosleep": reflect.ValueOf(syscall.Nanosleep), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "OCRNL": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "OFDEL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "OFILL": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "ONLCR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ONLRET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "ONOCR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "OPENFAIL": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "OPOST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_ACCMODE": reflect.ValueOf(constant.MakeFromLiteral("6291459", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("8388608", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_DSYNC": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4194304", token.INT, 0)), + "O_LARGEFILE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_NOFOLLOW": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "O_NOLINKS": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_RSYNC": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "O_SEARCH": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "O_SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190636", token.INT, 0)), + "O_SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666248", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "O_XATTR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "PARENB": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "PAREXT": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "PARMRK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PARODD": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "PENDIN": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "PRIO_PGRP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PRIO_PROCESS": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PRIO_USER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROT_EXEC": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROT_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "PROT_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROT_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "ParseDirent": reflect.ValueOf(syscall.ParseDirent), + "ParseSocketControlMessage": reflect.ValueOf(syscall.ParseSocketControlMessage), + "ParseUnixRights": reflect.ValueOf(syscall.ParseUnixRights), + "PathMax": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "Pathconf": reflect.ValueOf(syscall.Pathconf), + "Pipe": reflect.ValueOf(syscall.Pipe), + "Pipe2": reflect.ValueOf(syscall.Pipe2), + "Pread": reflect.ValueOf(syscall.Pread), + "Pwrite": reflect.ValueOf(syscall.Pwrite), + "RLIMIT_AS": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RLIMIT_CORE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RLIMIT_CPU": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RLIMIT_DATA": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RLIMIT_FSIZE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RLIMIT_NOFILE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RLIMIT_STACK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RLIM_INFINITY": reflect.ValueOf(constant.MakeFromLiteral("-3", token.INT, 0)), + "RTAX_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTAX_BRD": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTAX_DST": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "RTAX_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTAX_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTAX_IFA": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTAX_IFP": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTAX_MAX": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTAX_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTAX_SRC": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_AUTHOR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTA_BRD": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTA_DST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTA_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTA_GENMASK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTA_IFA": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTA_IFP": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTA_NETMASK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTA_NUMBITS": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTA_SRC": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_BLACKHOLE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "RTF_CLONING": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "RTF_DONE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTF_DYNAMIC": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTF_GATEWAY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTF_HOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTF_INDIRECT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "RTF_KERNEL": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "RTF_LLINFO": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "RTF_MASK": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTF_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RTF_MULTIRT": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "RTF_PRIVATE": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "RTF_PROTO1": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "RTF_PROTO2": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "RTF_REJECT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTF_SETSRC": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "RTF_STATIC": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "RTF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTF_XRESOLVE": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "RTF_ZONE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "RTM_ADD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTM_CHANGE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTM_CHGADDR": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "RTM_DELADDR": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "RTM_DELETE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTM_FREEADDR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTM_GET": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTM_IFINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "RTM_LOCK": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTM_LOSING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "RTM_MISS": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "RTM_NEWADDR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "RTM_OLDADD": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "RTM_OLDDEL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "RTM_REDIRECT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "RTM_RESOLVE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "RTM_VERSION": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "RTV_EXPIRE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "RTV_HOPCOUNT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "RTV_MTU": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RTV_RPIPE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "RTV_RTT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "RTV_RTTVAR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "RTV_SPIPE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "RTV_SSTHRESH": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "RT_AWARE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "RUSAGE_CHILDREN": reflect.ValueOf(constant.MakeFromLiteral("-1", token.INT, 0)), + "RUSAGE_SELF": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadDirent": reflect.ValueOf(syscall.ReadDirent), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "Recvmsg": reflect.ValueOf(syscall.Recvmsg), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SCM_RIGHTS": reflect.ValueOf(constant.MakeFromLiteral("4112", token.INT, 0)), + "SCM_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SCM_UCRED": reflect.ValueOf(constant.MakeFromLiteral("4114", token.INT, 0)), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIG2STR_MAX": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGCANCEL": reflect.ValueOf(syscall.SIGCANCEL), + "SIGCHLD": reflect.ValueOf(syscall.SIGCHLD), + "SIGCLD": reflect.ValueOf(syscall.SIGCLD), + "SIGCONT": reflect.ValueOf(syscall.SIGCONT), + "SIGEMT": reflect.ValueOf(syscall.SIGEMT), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGFREEZE": reflect.ValueOf(syscall.SIGFREEZE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGIO": reflect.ValueOf(syscall.SIGIO), + "SIGIOT": reflect.ValueOf(syscall.SIGIOT), + "SIGJVM1": reflect.ValueOf(syscall.SIGJVM1), + "SIGJVM2": reflect.ValueOf(syscall.SIGJVM2), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGLOST": reflect.ValueOf(syscall.SIGLOST), + "SIGLWP": reflect.ValueOf(syscall.SIGLWP), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGPOLL": reflect.ValueOf(syscall.SIGPOLL), + "SIGPROF": reflect.ValueOf(syscall.SIGPROF), + "SIGPWR": reflect.ValueOf(syscall.SIGPWR), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGSTOP": reflect.ValueOf(syscall.SIGSTOP), + "SIGSYS": reflect.ValueOf(syscall.SIGSYS), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTHAW": reflect.ValueOf(syscall.SIGTHAW), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIGTSTP": reflect.ValueOf(syscall.SIGTSTP), + "SIGTTIN": reflect.ValueOf(syscall.SIGTTIN), + "SIGTTOU": reflect.ValueOf(syscall.SIGTTOU), + "SIGURG": reflect.ValueOf(syscall.SIGURG), + "SIGUSR1": reflect.ValueOf(syscall.SIGUSR1), + "SIGUSR2": reflect.ValueOf(syscall.SIGUSR2), + "SIGVTALRM": reflect.ValueOf(syscall.SIGVTALRM), + "SIGWAITING": reflect.ValueOf(syscall.SIGWAITING), + "SIGWINCH": reflect.ValueOf(syscall.SIGWINCH), + "SIGXCPU": reflect.ValueOf(syscall.SIGXCPU), + "SIGXFSZ": reflect.ValueOf(syscall.SIGXFSZ), + "SIGXRES": reflect.ValueOf(syscall.SIGXRES), + "SIOCADDMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359567", token.INT, 0)), + "SIOCADDRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308726", token.INT, 0)), + "SIOCATMARK": reflect.ValueOf(constant.MakeFromLiteral("1074033415", token.INT, 0)), + "SIOCDARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097440", token.INT, 0)), + "SIOCDELMULTI": reflect.ValueOf(constant.MakeFromLiteral("-2145359566", token.INT, 0)), + "SIOCDELRT": reflect.ValueOf(constant.MakeFromLiteral("-2144308725", token.INT, 0)), + "SIOCDIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194473", token.INT, 0)), + "SIOCDXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456600", token.INT, 0)), + "SIOCFIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194475", token.INT, 0)), + "SIOCGARP": reflect.ValueOf(constant.MakeFromLiteral("-1071355617", token.INT, 0)), + "SIOCGDSTINFO": reflect.ValueOf(constant.MakeFromLiteral("-1073714780", token.INT, 0)), + "SIOCGENADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617707", token.INT, 0)), + "SIOCGENPSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617735", token.INT, 0)), + "SIOCGETLSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072664043", token.INT, 0)), + "SIOCGETNAME": reflect.ValueOf(constant.MakeFromLiteral("1074819892", token.INT, 0)), + "SIOCGETPEER": reflect.ValueOf(constant.MakeFromLiteral("1074819893", token.INT, 0)), + "SIOCGETPROP": reflect.ValueOf(constant.MakeFromLiteral("-1073712964", token.INT, 0)), + "SIOCGETSGCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401899", token.INT, 0)), + "SIOCGETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-1071617747", token.INT, 0)), + "SIOCGETVIFCNT": reflect.ValueOf(constant.MakeFromLiteral("-1072401900", token.INT, 0)), + "SIOCGHIWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033409", token.INT, 0)), + "SIOCGIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617779", token.INT, 0)), + "SIOCGIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617769", token.INT, 0)), + "SIOCGIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1073190564", token.INT, 0)), + "SIOCGIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617777", token.INT, 0)), + "SIOCGIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1071617775", token.INT, 0)), + "SIOCGIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1071617607", token.INT, 0)), + "SIOCGIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1071617702", token.INT, 0)), + "SIOCGIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-1071617773", token.INT, 0)), + "SIOCGIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1071617765", token.INT, 0)), + "SIOCGIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1071617770", token.INT, 0)), + "SIOCGIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1071617704", token.INT, 0)), + "SIOCGIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1071617767", token.INT, 0)), + "SIOCGIFNUM": reflect.ValueOf(constant.MakeFromLiteral("1074030935", token.INT, 0)), + "SIOCGIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-1073714782", token.INT, 0)), + "SIOCGIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452620", token.INT, 0)), + "SIOCGLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850511", token.INT, 0)), + "SIOCGLIFBINDING": reflect.ValueOf(constant.MakeFromLiteral("-1065850470", token.INT, 0)), + "SIOCGLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850501", token.INT, 0)), + "SIOCGLIFCONF": reflect.ValueOf(constant.MakeFromLiteral("-1072666203", token.INT, 0)), + "SIOCGLIFDADSTATE": reflect.ValueOf(constant.MakeFromLiteral("-1065850434", token.INT, 0)), + "SIOCGLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850509", token.INT, 0)), + "SIOCGLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-1065850507", token.INT, 0)), + "SIOCGLIFGROUPINFO": reflect.ValueOf(constant.MakeFromLiteral("-1061918307", token.INT, 0)), + "SIOCGLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850468", token.INT, 0)), + "SIOCGLIFHWADDR": reflect.ValueOf(constant.MakeFromLiteral("-1065850432", token.INT, 0)), + "SIOCGLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-1065850491", token.INT, 0)), + "SIOCGLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-1065850484", token.INT, 0)), + "SIOCGLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-1065850497", token.INT, 0)), + "SIOCGLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-1065850502", token.INT, 0)), + "SIOCGLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-1065850493", token.INT, 0)), + "SIOCGLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-1065850499", token.INT, 0)), + "SIOCGLIFNUM": reflect.ValueOf(constant.MakeFromLiteral("-1072928382", token.INT, 0)), + "SIOCGLIFSRCOF": reflect.ValueOf(constant.MakeFromLiteral("-1072666191", token.INT, 0)), + "SIOCGLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-1065850486", token.INT, 0)), + "SIOCGLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-1065850488", token.INT, 0)), + "SIOCGLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-1065850449", token.INT, 0)), + "SIOCGLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-1065850454", token.INT, 0)), + "SIOCGLOWAT": reflect.ValueOf(constant.MakeFromLiteral("1074033411", token.INT, 0)), + "SIOCGMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-1073452622", token.INT, 0)), + "SIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("1074033417", token.INT, 0)), + "SIOCGSTAMP": reflect.ValueOf(constant.MakeFromLiteral("-1072666182", token.INT, 0)), + "SIOCGXARP": reflect.ValueOf(constant.MakeFromLiteral("-1073714777", token.INT, 0)), + "SIOCIFDETACH": reflect.ValueOf(constant.MakeFromLiteral("-2145359560", token.INT, 0)), + "SIOCILB": reflect.ValueOf(constant.MakeFromLiteral("-1073452613", token.INT, 0)), + "SIOCLIFADDIF": reflect.ValueOf(constant.MakeFromLiteral("-1065850513", token.INT, 0)), + "SIOCLIFDELND": reflect.ValueOf(constant.MakeFromLiteral("-2139592307", token.INT, 0)), + "SIOCLIFGETND": reflect.ValueOf(constant.MakeFromLiteral("-1065850482", token.INT, 0)), + "SIOCLIFREMOVEIF": reflect.ValueOf(constant.MakeFromLiteral("-2139592338", token.INT, 0)), + "SIOCLIFSETND": reflect.ValueOf(constant.MakeFromLiteral("-2139592305", token.INT, 0)), + "SIOCLIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194472", token.INT, 0)), + "SIOCLOWER": reflect.ValueOf(constant.MakeFromLiteral("-2145359575", token.INT, 0)), + "SIOCSARP": reflect.ValueOf(constant.MakeFromLiteral("-2145097442", token.INT, 0)), + "SIOCSCTPGOPT": reflect.ValueOf(constant.MakeFromLiteral("-1072666195", token.INT, 0)), + "SIOCSCTPPEELOFF": reflect.ValueOf(constant.MakeFromLiteral("-1073452626", token.INT, 0)), + "SIOCSCTPSOPT": reflect.ValueOf(constant.MakeFromLiteral("-2146408020", token.INT, 0)), + "SIOCSENABLESDP": reflect.ValueOf(constant.MakeFromLiteral("-1073452617", token.INT, 0)), + "SIOCSETPROP": reflect.ValueOf(constant.MakeFromLiteral("-2147192643", token.INT, 0)), + "SIOCSETSYNC": reflect.ValueOf(constant.MakeFromLiteral("-2145359572", token.INT, 0)), + "SIOCSHIWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192064", token.INT, 0)), + "SIOCSIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359604", token.INT, 0)), + "SIOCSIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359592", token.INT, 0)), + "SIOCSIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2145359602", token.INT, 0)), + "SIOCSIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2145359600", token.INT, 0)), + "SIOCSIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2145359525", token.INT, 0)), + "SIOCSIFMEM": reflect.ValueOf(constant.MakeFromLiteral("-2145359598", token.INT, 0)), + "SIOCSIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2145359588", token.INT, 0)), + "SIOCSIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2145359595", token.INT, 0)), + "SIOCSIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2145359527", token.INT, 0)), + "SIOCSIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-2145359543", token.INT, 0)), + "SIOCSIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2145359590", token.INT, 0)), + "SIOCSIP6ADDRPOLICY": reflect.ValueOf(constant.MakeFromLiteral("-2147456605", token.INT, 0)), + "SIOCSIPMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194443", token.INT, 0)), + "SIOCSIPSECONFIG": reflect.ValueOf(constant.MakeFromLiteral("-2147194474", token.INT, 0)), + "SIOCSLGETREQ": reflect.ValueOf(constant.MakeFromLiteral("-1071617721", token.INT, 0)), + "SIOCSLIFADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592336", token.INT, 0)), + "SIOCSLIFBRDADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592324", token.INT, 0)), + "SIOCSLIFDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("-2139592334", token.INT, 0)), + "SIOCSLIFFLAGS": reflect.ValueOf(constant.MakeFromLiteral("-2139592332", token.INT, 0)), + "SIOCSLIFGROUPNAME": reflect.ValueOf(constant.MakeFromLiteral("-2139592293", token.INT, 0)), + "SIOCSLIFINDEX": reflect.ValueOf(constant.MakeFromLiteral("-2139592314", token.INT, 0)), + "SIOCSLIFLNKINFO": reflect.ValueOf(constant.MakeFromLiteral("-2139592309", token.INT, 0)), + "SIOCSLIFMETRIC": reflect.ValueOf(constant.MakeFromLiteral("-2139592320", token.INT, 0)), + "SIOCSLIFMTU": reflect.ValueOf(constant.MakeFromLiteral("-2139592327", token.INT, 0)), + "SIOCSLIFMUXID": reflect.ValueOf(constant.MakeFromLiteral("-2139592316", token.INT, 0)), + "SIOCSLIFNAME": reflect.ValueOf(constant.MakeFromLiteral("-1065850495", token.INT, 0)), + "SIOCSLIFNETMASK": reflect.ValueOf(constant.MakeFromLiteral("-2139592322", token.INT, 0)), + "SIOCSLIFPREFIX": reflect.ValueOf(constant.MakeFromLiteral("-1065850433", token.INT, 0)), + "SIOCSLIFSUBNET": reflect.ValueOf(constant.MakeFromLiteral("-2139592311", token.INT, 0)), + "SIOCSLIFTOKEN": reflect.ValueOf(constant.MakeFromLiteral("-2139592313", token.INT, 0)), + "SIOCSLIFUSESRC": reflect.ValueOf(constant.MakeFromLiteral("-2139592272", token.INT, 0)), + "SIOCSLIFZONE": reflect.ValueOf(constant.MakeFromLiteral("-2139592277", token.INT, 0)), + "SIOCSLOWAT": reflect.ValueOf(constant.MakeFromLiteral("-2147192062", token.INT, 0)), + "SIOCSLSTAT": reflect.ValueOf(constant.MakeFromLiteral("-2145359544", token.INT, 0)), + "SIOCSMSFILTER": reflect.ValueOf(constant.MakeFromLiteral("-2147194445", token.INT, 0)), + "SIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("-2147192056", token.INT, 0)), + "SIOCSPROMISC": reflect.ValueOf(constant.MakeFromLiteral("-2147194576", token.INT, 0)), + "SIOCSQPTR": reflect.ValueOf(constant.MakeFromLiteral("-1073452616", token.INT, 0)), + "SIOCSSDSTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617746", token.INT, 0)), + "SIOCSSESTATS": reflect.ValueOf(constant.MakeFromLiteral("-1071617745", token.INT, 0)), + "SIOCSXARP": reflect.ValueOf(constant.MakeFromLiteral("-2147456602", token.INT, 0)), + "SIOCTMYADDR": reflect.ValueOf(constant.MakeFromLiteral("-1073190512", token.INT, 0)), + "SIOCTMYSITE": reflect.ValueOf(constant.MakeFromLiteral("-1073190510", token.INT, 0)), + "SIOCTONLINK": reflect.ValueOf(constant.MakeFromLiteral("-1073190511", token.INT, 0)), + "SIOCUPPER": reflect.ValueOf(constant.MakeFromLiteral("-2145359576", token.INT, 0)), + "SIOCX25RCV": reflect.ValueOf(constant.MakeFromLiteral("-1071617732", token.INT, 0)), + "SIOCX25TBL": reflect.ValueOf(constant.MakeFromLiteral("-1071617731", token.INT, 0)), + "SIOCX25XMT": reflect.ValueOf(constant.MakeFromLiteral("-1071617733", token.INT, 0)), + "SIOCXPROTO": reflect.ValueOf(constant.MakeFromLiteral("536900407", token.INT, 0)), + "SOCK_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOCK_NDELAY": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SOCK_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SOCK_RDM": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_TYPE_MASK": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOL_FILTER": reflect.ValueOf(constant.MakeFromLiteral("65532", token.INT, 0)), + "SOL_PACKET": reflect.ValueOf(constant.MakeFromLiteral("65533", token.INT, 0)), + "SOL_ROUTE": reflect.ValueOf(constant.MakeFromLiteral("65534", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_ACCEPTCONN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SO_ALL": reflect.ValueOf(constant.MakeFromLiteral("63", token.INT, 0)), + "SO_ALLZONES": reflect.ValueOf(constant.MakeFromLiteral("4116", token.INT, 0)), + "SO_ANON_MLP": reflect.ValueOf(constant.MakeFromLiteral("4106", token.INT, 0)), + "SO_ATTACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741825", token.INT, 0)), + "SO_BAND": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_COPYOPT": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "SO_DEBUG": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_DELIM": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "SO_DETACH_FILTER": reflect.ValueOf(constant.MakeFromLiteral("1073741826", token.INT, 0)), + "SO_DGRAM_ERRIND": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_DOMAIN": reflect.ValueOf(constant.MakeFromLiteral("4108", token.INT, 0)), + "SO_DONTLINGER": reflect.ValueOf(constant.MakeFromLiteral("-129", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ERROPT": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "SO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("4103", token.INT, 0)), + "SO_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("4117", token.INT, 0)), + "SO_HIWAT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_ISNTTY": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "SO_ISTTY": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_LOWAT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_MAC_EXEMPT": reflect.ValueOf(constant.MakeFromLiteral("4107", token.INT, 0)), + "SO_MAC_IMPLICIT": reflect.ValueOf(constant.MakeFromLiteral("4118", token.INT, 0)), + "SO_MAXBLK": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "SO_MAXPSZ": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_MINPSZ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_MREADOFF": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_MREADON": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_NDELOFF": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "SO_NDELON": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_NODELIM": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "SO_OOBINLINE": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "SO_PROTOTYPE": reflect.ValueOf(constant.MakeFromLiteral("4105", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_RCVLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4100", token.INT, 0)), + "SO_RCVPSH": reflect.ValueOf(constant.MakeFromLiteral("4109", token.INT, 0)), + "SO_RCVTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4102", token.INT, 0)), + "SO_READOPT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SO_RECVUCRED": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SECATTR": reflect.ValueOf(constant.MakeFromLiteral("4113", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_SNDLOWAT": reflect.ValueOf(constant.MakeFromLiteral("4099", token.INT, 0)), + "SO_SNDTIMEO": reflect.ValueOf(constant.MakeFromLiteral("4101", token.INT, 0)), + "SO_STRHOLD": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "SO_TAIL": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "SO_TIMESTAMP": reflect.ValueOf(constant.MakeFromLiteral("4115", token.INT, 0)), + "SO_TONSTOP": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "SO_TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "SO_TYPE": reflect.ValueOf(constant.MakeFromLiteral("4104", token.INT, 0)), + "SO_USELOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "SO_VRRP": reflect.ValueOf(constant.MakeFromLiteral("4119", token.INT, 0)), + "SO_WROFF": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SYS_EXECVE": reflect.ValueOf(constant.MakeFromLiteral("59", token.INT, 0)), + "SYS_FCNTL": reflect.ValueOf(constant.MakeFromLiteral("62", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("61440", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_IRWXG": reflect.ValueOf(constant.MakeFromLiteral("56", token.INT, 0)), + "S_IRWXO": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendfile": reflect.ValueOf(syscall.Sendfile), + "Sendmsg": reflect.ValueOf(syscall.Sendmsg), + "SendmsgN": reflect.ValueOf(syscall.SendmsgN), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setegid": reflect.ValueOf(syscall.Setegid), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Seteuid": reflect.ValueOf(syscall.Seteuid), + "Setgid": reflect.ValueOf(syscall.Setgid), + "Setgroups": reflect.ValueOf(syscall.Setgroups), + "Setpgid": reflect.ValueOf(syscall.Setpgid), + "Setpriority": reflect.ValueOf(syscall.Setpriority), + "Setregid": reflect.ValueOf(syscall.Setregid), + "Setreuid": reflect.ValueOf(syscall.Setreuid), + "Setrlimit": reflect.ValueOf(syscall.Setrlimit), + "Setsid": reflect.ValueOf(syscall.Setsid), + "SetsockoptByte": reflect.ValueOf(syscall.SetsockoptByte), + "SetsockoptICMPv6Filter": reflect.ValueOf(syscall.SetsockoptICMPv6Filter), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptString": reflect.ValueOf(syscall.SetsockoptString), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "Setuid": reflect.ValueOf(syscall.Setuid), + "SizeofBpfHdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofBpfInsn": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofBpfProgram": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofBpfStat": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SizeofBpfVersion": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SizeofCmsghdr": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "SizeofICMPv6Filter": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofIPMreq": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofIPv6MTUInfo": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "SizeofIPv6Mreq": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofIfData": reflect.ValueOf(constant.MakeFromLiteral("68", token.INT, 0)), + "SizeofIfMsghdr": reflect.ValueOf(constant.MakeFromLiteral("84", token.INT, 0)), + "SizeofIfaMsghdr": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofInet6Pktinfo": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "SizeofLinger": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SizeofMsghdr": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "SizeofRtMetrics": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "SizeofRtMsghdr": reflect.ValueOf(constant.MakeFromLiteral("76", token.INT, 0)), + "SizeofSockaddrAny": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrDatalink": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "SizeofSockaddrInet4": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SizeofSockaddrInet6": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SizeofSockaddrUnix": reflect.ValueOf(constant.MakeFromLiteral("110", token.INT, 0)), + "SlicePtrFromStrings": reflect.ValueOf(syscall.SlicePtrFromStrings), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Socketpair": reflect.ValueOf(syscall.Socketpair), + "Stat": reflect.ValueOf(syscall.Stat), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringSlicePtr": reflect.ValueOf(syscall.StringSlicePtr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "Sync": reflect.ValueOf(syscall.Sync), + "TCFLSH": reflect.ValueOf(constant.MakeFromLiteral("21511", token.INT, 0)), + "TCIFLUSH": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TCIOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCOFLUSH": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TCP_ANONPRIVBIND": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TCP_CONN_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TCP_CONN_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TCP_CORK": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TCP_EXCLBIND": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "TCP_INIT_CWND": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TCP_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TCP_KEEPALIVE_ABORT_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TCP_KEEPALIVE_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TCP_KEEPCNT": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "TCP_KEEPIDLE": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "TCP_KEEPINTVL": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "TCP_LINGER2": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TCP_MAXSEG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TCP_MSS": reflect.ValueOf(constant.MakeFromLiteral("536", token.INT, 0)), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TCP_NOTIFY_THRESHOLD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TCP_RECVDSTADDR": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TCP_RTO_INITIAL": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TCP_RTO_MAX": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TCP_RTO_MIN": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TCSAFLUSH": reflect.ValueOf(constant.MakeFromLiteral("21520", token.INT, 0)), + "TIOC": reflect.ValueOf(constant.MakeFromLiteral("21504", token.INT, 0)), + "TIOCCBRK": reflect.ValueOf(constant.MakeFromLiteral("29818", token.INT, 0)), + "TIOCCDTR": reflect.ValueOf(constant.MakeFromLiteral("29816", token.INT, 0)), + "TIOCCILOOP": reflect.ValueOf(constant.MakeFromLiteral("29804", token.INT, 0)), + "TIOCEXCL": reflect.ValueOf(constant.MakeFromLiteral("29709", token.INT, 0)), + "TIOCFLUSH": reflect.ValueOf(constant.MakeFromLiteral("29712", token.INT, 0)), + "TIOCGETC": reflect.ValueOf(constant.MakeFromLiteral("29714", token.INT, 0)), + "TIOCGETD": reflect.ValueOf(constant.MakeFromLiteral("29696", token.INT, 0)), + "TIOCGETP": reflect.ValueOf(constant.MakeFromLiteral("29704", token.INT, 0)), + "TIOCGLTC": reflect.ValueOf(constant.MakeFromLiteral("29812", token.INT, 0)), + "TIOCGPGRP": reflect.ValueOf(constant.MakeFromLiteral("29716", token.INT, 0)), + "TIOCGPPS": reflect.ValueOf(constant.MakeFromLiteral("21629", token.INT, 0)), + "TIOCGPPSEV": reflect.ValueOf(constant.MakeFromLiteral("21631", token.INT, 0)), + "TIOCGSID": reflect.ValueOf(constant.MakeFromLiteral("29718", token.INT, 0)), + "TIOCGSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21609", token.INT, 0)), + "TIOCGWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21608", token.INT, 0)), + "TIOCHPCL": reflect.ValueOf(constant.MakeFromLiteral("29698", token.INT, 0)), + "TIOCKBOF": reflect.ValueOf(constant.MakeFromLiteral("21513", token.INT, 0)), + "TIOCKBON": reflect.ValueOf(constant.MakeFromLiteral("21512", token.INT, 0)), + "TIOCLBIC": reflect.ValueOf(constant.MakeFromLiteral("29822", token.INT, 0)), + "TIOCLBIS": reflect.ValueOf(constant.MakeFromLiteral("29823", token.INT, 0)), + "TIOCLGET": reflect.ValueOf(constant.MakeFromLiteral("29820", token.INT, 0)), + "TIOCLSET": reflect.ValueOf(constant.MakeFromLiteral("29821", token.INT, 0)), + "TIOCMBIC": reflect.ValueOf(constant.MakeFromLiteral("29724", token.INT, 0)), + "TIOCMBIS": reflect.ValueOf(constant.MakeFromLiteral("29723", token.INT, 0)), + "TIOCMGET": reflect.ValueOf(constant.MakeFromLiteral("29725", token.INT, 0)), + "TIOCMSET": reflect.ValueOf(constant.MakeFromLiteral("29722", token.INT, 0)), + "TIOCM_CAR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CD": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TIOCM_CTS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TIOCM_DSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TIOCM_DTR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIOCM_LE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIOCM_RI": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RNG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TIOCM_RTS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIOCM_SR": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TIOCM_ST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TIOCNOTTY": reflect.ValueOf(constant.MakeFromLiteral("29809", token.INT, 0)), + "TIOCNXCL": reflect.ValueOf(constant.MakeFromLiteral("29710", token.INT, 0)), + "TIOCOUTQ": reflect.ValueOf(constant.MakeFromLiteral("29811", token.INT, 0)), + "TIOCREMOTE": reflect.ValueOf(constant.MakeFromLiteral("29726", token.INT, 0)), + "TIOCSBRK": reflect.ValueOf(constant.MakeFromLiteral("29819", token.INT, 0)), + "TIOCSCTTY": reflect.ValueOf(constant.MakeFromLiteral("29828", token.INT, 0)), + "TIOCSDTR": reflect.ValueOf(constant.MakeFromLiteral("29817", token.INT, 0)), + "TIOCSETC": reflect.ValueOf(constant.MakeFromLiteral("29713", token.INT, 0)), + "TIOCSETD": reflect.ValueOf(constant.MakeFromLiteral("29697", token.INT, 0)), + "TIOCSETN": reflect.ValueOf(constant.MakeFromLiteral("29706", token.INT, 0)), + "TIOCSETP": reflect.ValueOf(constant.MakeFromLiteral("29705", token.INT, 0)), + "TIOCSIGNAL": reflect.ValueOf(constant.MakeFromLiteral("29727", token.INT, 0)), + "TIOCSILOOP": reflect.ValueOf(constant.MakeFromLiteral("29805", token.INT, 0)), + "TIOCSLTC": reflect.ValueOf(constant.MakeFromLiteral("29813", token.INT, 0)), + "TIOCSPGRP": reflect.ValueOf(constant.MakeFromLiteral("29717", token.INT, 0)), + "TIOCSPPS": reflect.ValueOf(constant.MakeFromLiteral("21630", token.INT, 0)), + "TIOCSSOFTCAR": reflect.ValueOf(constant.MakeFromLiteral("21610", token.INT, 0)), + "TIOCSTART": reflect.ValueOf(constant.MakeFromLiteral("29806", token.INT, 0)), + "TIOCSTI": reflect.ValueOf(constant.MakeFromLiteral("29719", token.INT, 0)), + "TIOCSTOP": reflect.ValueOf(constant.MakeFromLiteral("29807", token.INT, 0)), + "TIOCSWINSZ": reflect.ValueOf(constant.MakeFromLiteral("21607", token.INT, 0)), + "TOSTOP": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TimevalToNsec": reflect.ValueOf(syscall.TimevalToNsec), + "Truncate": reflect.ValueOf(syscall.Truncate), + "Umask": reflect.ValueOf(syscall.Umask), + "UnixRights": reflect.ValueOf(syscall.UnixRights), + "Unlink": reflect.ValueOf(syscall.Unlink), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VCEOF": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VCEOL": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VDISCARD": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "VDSUSP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "VEOF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VEOL": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VEOL2": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "VERASE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "VINTR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VKILL": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "VLNEXT": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "VMIN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "VQUIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "VREPRINT": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "VSTART": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "VSTOP": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "VSUSP": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "VSWTCH": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "VT0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "VT1": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTDLY": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "VTIME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "VWERASE": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "WCONTFLG": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "WCONTINUED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "WCOREFLG": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WEXITED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "WNOHANG": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "WNOWAIT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WOPTMASK": reflect.ValueOf(constant.MakeFromLiteral("207", token.INT, 0)), + "WRAP": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "WSIGMASK": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPFLG": reflect.ValueOf(constant.MakeFromLiteral("127", token.INT, 0)), + "WSTOPPED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "WTRAPPED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "WUNTRACED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "Wait4": reflect.ValueOf(syscall.Wait4), + "Write": reflect.ValueOf(syscall.Write), + + // type definitions + "BpfHdr": reflect.ValueOf((*syscall.BpfHdr)(nil)), + "BpfInsn": reflect.ValueOf((*syscall.BpfInsn)(nil)), + "BpfProgram": reflect.ValueOf((*syscall.BpfProgram)(nil)), + "BpfStat": reflect.ValueOf((*syscall.BpfStat)(nil)), + "BpfTimeval": reflect.ValueOf((*syscall.BpfTimeval)(nil)), + "BpfVersion": reflect.ValueOf((*syscall.BpfVersion)(nil)), + "Cmsghdr": reflect.ValueOf((*syscall.Cmsghdr)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "Credential": reflect.ValueOf((*syscall.Credential)(nil)), + "Dirent": reflect.ValueOf((*syscall.Dirent)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FdSet": reflect.ValueOf((*syscall.FdSet)(nil)), + "Flock_t": reflect.ValueOf((*syscall.Flock_t)(nil)), + "ICMPv6Filter": reflect.ValueOf((*syscall.ICMPv6Filter)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6MTUInfo": reflect.ValueOf((*syscall.IPv6MTUInfo)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "IfData": reflect.ValueOf((*syscall.IfData)(nil)), + "IfMsghdr": reflect.ValueOf((*syscall.IfMsghdr)(nil)), + "IfaMsghdr": reflect.ValueOf((*syscall.IfaMsghdr)(nil)), + "Inet6Pktinfo": reflect.ValueOf((*syscall.Inet6Pktinfo)(nil)), + "Iovec": reflect.ValueOf((*syscall.Iovec)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "Msghdr": reflect.ValueOf((*syscall.Msghdr)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrDatalink": reflect.ValueOf((*syscall.RawSockaddrDatalink)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rlimit": reflect.ValueOf((*syscall.Rlimit)(nil)), + "RtMetrics": reflect.ValueOf((*syscall.RtMetrics)(nil)), + "RtMsghdr": reflect.ValueOf((*syscall.RtMsghdr)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrDatalink": reflect.ValueOf((*syscall.SockaddrDatalink)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "SocketControlMessage": reflect.ValueOf((*syscall.SocketControlMessage)(nil)), + "Stat_t": reflect.ValueOf((*syscall.Stat_t)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Termios": reflect.ValueOf((*syscall.Termios)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timeval32": reflect.ValueOf((*syscall.Timeval32)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_windows_386.go b/stdlib/syscall/go1_19_syscall_windows_386.go new file mode 100644 index 000000000..77d0562cd --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_windows_386.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_windows_amd64.go b/stdlib/syscall/go1_19_syscall_windows_amd64.go new file mode 100644 index 000000000..77d0562cd --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_windows_amd64.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_windows_arm.go b/stdlib/syscall/go1_19_syscall_windows_arm.go new file mode 100644 index 000000000..77d0562cd --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_windows_arm.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/go1_19_syscall_windows_arm64.go b/stdlib/syscall/go1_19_syscall_windows_arm64.go new file mode 100644 index 000000000..77d0562cd --- /dev/null +++ b/stdlib/syscall/go1_19_syscall_windows_arm64.go @@ -0,0 +1,1037 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package syscall + +import ( + "go/constant" + "go/token" + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AF_INET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AF_INET6": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "AF_NETBIOS": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "AF_UNIX": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AF_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "AI_CANONNAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "AI_NUMERICHOST": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "AI_PASSIVE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "APPLICATION_ERROR": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "AUTHTYPE_CLIENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "AUTHTYPE_SERVER": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "Accept": reflect.ValueOf(syscall.Accept), + "AcceptEx": reflect.ValueOf(syscall.AcceptEx), + "BASE_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Bind": reflect.ValueOf(syscall.Bind), + "BytePtrFromString": reflect.ValueOf(syscall.BytePtrFromString), + "ByteSliceFromString": reflect.ValueOf(syscall.ByteSliceFromString), + "CERT_CHAIN_POLICY_AUTHENTICODE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_CHAIN_POLICY_AUTHENTICODE_TS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "CERT_CHAIN_POLICY_BASE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_CHAIN_POLICY_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CERT_CHAIN_POLICY_EV": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_CHAIN_POLICY_MICROSOFT_ROOT": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "CERT_CHAIN_POLICY_NT_AUTH": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CERT_CHAIN_POLICY_SSL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_E_CN_NO_MATCH": reflect.ValueOf(constant.MakeFromLiteral("2148204815", token.INT, 0)), + "CERT_E_EXPIRED": reflect.ValueOf(constant.MakeFromLiteral("2148204801", token.INT, 0)), + "CERT_E_PURPOSE": reflect.ValueOf(constant.MakeFromLiteral("2148204806", token.INT, 0)), + "CERT_E_ROLE": reflect.ValueOf(constant.MakeFromLiteral("2148204803", token.INT, 0)), + "CERT_E_UNTRUSTEDROOT": reflect.ValueOf(constant.MakeFromLiteral("2148204809", token.INT, 0)), + "CERT_STORE_ADD_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_STORE_PROV_MEMORY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "CERT_TRUST_INVALID_BASIC_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CERT_TRUST_INVALID_EXTENSION": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "CERT_TRUST_INVALID_NAME_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "CERT_TRUST_INVALID_POLICY_CONSTRAINTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CERT_TRUST_IS_CYCLIC": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CERT_TRUST_IS_EXPLICIT_DISTRUST": reflect.ValueOf(constant.MakeFromLiteral("67108864", token.INT, 0)), + "CERT_TRUST_IS_NOT_SIGNATURE_VALID": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CERT_TRUST_IS_NOT_TIME_VALID": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CERT_TRUST_IS_NOT_VALID_FOR_USAGE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CERT_TRUST_IS_OFFLINE_REVOCATION": reflect.ValueOf(constant.MakeFromLiteral("16777216", token.INT, 0)), + "CERT_TRUST_IS_REVOKED": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "CERT_TRUST_IS_UNTRUSTED_ROOT": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CERT_TRUST_NO_ERROR": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "CERT_TRUST_REVOCATION_STATUS_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CREATE_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CREATE_NEW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CREATE_NEW_PROCESS_GROUP": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "CREATE_UNICODE_ENVIRONMENT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "CRYPT_DEFAULT_CONTAINER_OPTIONAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "CRYPT_DELETEKEYSET": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "CRYPT_MACHINE_KEYSET": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "CRYPT_NEWKEYSET": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "CRYPT_SILENT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "CRYPT_VERIFYCONTEXT": reflect.ValueOf(constant.MakeFromLiteral("4026531840", token.INT, 0)), + "CTRL_BREAK_EVENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "CTRL_CLOSE_EVENT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "CTRL_C_EVENT": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "CTRL_LOGOFF_EVENT": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "CTRL_SHUTDOWN_EVENT": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "CancelIo": reflect.ValueOf(syscall.CancelIo), + "CancelIoEx": reflect.ValueOf(syscall.CancelIoEx), + "CertAddCertificateContextToStore": reflect.ValueOf(syscall.CertAddCertificateContextToStore), + "CertCloseStore": reflect.ValueOf(syscall.CertCloseStore), + "CertCreateCertificateContext": reflect.ValueOf(syscall.CertCreateCertificateContext), + "CertEnumCertificatesInStore": reflect.ValueOf(syscall.CertEnumCertificatesInStore), + "CertFreeCertificateChain": reflect.ValueOf(syscall.CertFreeCertificateChain), + "CertFreeCertificateContext": reflect.ValueOf(syscall.CertFreeCertificateContext), + "CertGetCertificateChain": reflect.ValueOf(syscall.CertGetCertificateChain), + "CertOpenStore": reflect.ValueOf(syscall.CertOpenStore), + "CertOpenSystemStore": reflect.ValueOf(syscall.CertOpenSystemStore), + "CertVerifyCertificateChainPolicy": reflect.ValueOf(syscall.CertVerifyCertificateChainPolicy), + "Chdir": reflect.ValueOf(syscall.Chdir), + "Chmod": reflect.ValueOf(syscall.Chmod), + "Chown": reflect.ValueOf(syscall.Chown), + "Clearenv": reflect.ValueOf(syscall.Clearenv), + "Close": reflect.ValueOf(syscall.Close), + "CloseHandle": reflect.ValueOf(syscall.CloseHandle), + "CloseOnExec": reflect.ValueOf(syscall.CloseOnExec), + "Closesocket": reflect.ValueOf(syscall.Closesocket), + "CommandLineToArgv": reflect.ValueOf(syscall.CommandLineToArgv), + "ComputerName": reflect.ValueOf(syscall.ComputerName), + "Connect": reflect.ValueOf(syscall.Connect), + "ConnectEx": reflect.ValueOf(syscall.ConnectEx), + "ConvertSidToStringSid": reflect.ValueOf(syscall.ConvertSidToStringSid), + "ConvertStringSidToSid": reflect.ValueOf(syscall.ConvertStringSidToSid), + "CopySid": reflect.ValueOf(syscall.CopySid), + "CreateDirectory": reflect.ValueOf(syscall.CreateDirectory), + "CreateFile": reflect.ValueOf(syscall.CreateFile), + "CreateFileMapping": reflect.ValueOf(syscall.CreateFileMapping), + "CreateHardLink": reflect.ValueOf(syscall.CreateHardLink), + "CreateIoCompletionPort": reflect.ValueOf(syscall.CreateIoCompletionPort), + "CreatePipe": reflect.ValueOf(syscall.CreatePipe), + "CreateProcess": reflect.ValueOf(syscall.CreateProcess), + "CreateProcessAsUser": reflect.ValueOf(syscall.CreateProcessAsUser), + "CreateSymbolicLink": reflect.ValueOf(syscall.CreateSymbolicLink), + "CreateToolhelp32Snapshot": reflect.ValueOf(syscall.CreateToolhelp32Snapshot), + "CryptAcquireContext": reflect.ValueOf(syscall.CryptAcquireContext), + "CryptGenRandom": reflect.ValueOf(syscall.CryptGenRandom), + "CryptReleaseContext": reflect.ValueOf(syscall.CryptReleaseContext), + "DNS_INFO_NO_RECORDS": reflect.ValueOf(constant.MakeFromLiteral("9501", token.INT, 0)), + "DNS_TYPE_A": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DNS_TYPE_A6": reflect.ValueOf(constant.MakeFromLiteral("38", token.INT, 0)), + "DNS_TYPE_AAAA": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "DNS_TYPE_ADDRS": reflect.ValueOf(constant.MakeFromLiteral("248", token.INT, 0)), + "DNS_TYPE_AFSDB": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "DNS_TYPE_ALL": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ANY": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "DNS_TYPE_ATMA": reflect.ValueOf(constant.MakeFromLiteral("34", token.INT, 0)), + "DNS_TYPE_AXFR": reflect.ValueOf(constant.MakeFromLiteral("252", token.INT, 0)), + "DNS_TYPE_CERT": reflect.ValueOf(constant.MakeFromLiteral("37", token.INT, 0)), + "DNS_TYPE_CNAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "DNS_TYPE_DHCID": reflect.ValueOf(constant.MakeFromLiteral("49", token.INT, 0)), + "DNS_TYPE_DNAME": reflect.ValueOf(constant.MakeFromLiteral("39", token.INT, 0)), + "DNS_TYPE_DNSKEY": reflect.ValueOf(constant.MakeFromLiteral("48", token.INT, 0)), + "DNS_TYPE_DS": reflect.ValueOf(constant.MakeFromLiteral("43", token.INT, 0)), + "DNS_TYPE_EID": reflect.ValueOf(constant.MakeFromLiteral("31", token.INT, 0)), + "DNS_TYPE_GID": reflect.ValueOf(constant.MakeFromLiteral("102", token.INT, 0)), + "DNS_TYPE_GPOS": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "DNS_TYPE_HINFO": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "DNS_TYPE_ISDN": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "DNS_TYPE_IXFR": reflect.ValueOf(constant.MakeFromLiteral("251", token.INT, 0)), + "DNS_TYPE_KEY": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "DNS_TYPE_KX": reflect.ValueOf(constant.MakeFromLiteral("36", token.INT, 0)), + "DNS_TYPE_LOC": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "DNS_TYPE_MAILA": reflect.ValueOf(constant.MakeFromLiteral("254", token.INT, 0)), + "DNS_TYPE_MAILB": reflect.ValueOf(constant.MakeFromLiteral("253", token.INT, 0)), + "DNS_TYPE_MB": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "DNS_TYPE_MD": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DNS_TYPE_MF": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "DNS_TYPE_MG": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "DNS_TYPE_MINFO": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "DNS_TYPE_MR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "DNS_TYPE_MX": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "DNS_TYPE_NAPTR": reflect.ValueOf(constant.MakeFromLiteral("35", token.INT, 0)), + "DNS_TYPE_NBSTAT": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_NIMLOC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "DNS_TYPE_NS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DNS_TYPE_NSAP": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "DNS_TYPE_NSAPPTR": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "DNS_TYPE_NSEC": reflect.ValueOf(constant.MakeFromLiteral("47", token.INT, 0)), + "DNS_TYPE_NULL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "DNS_TYPE_NXT": reflect.ValueOf(constant.MakeFromLiteral("30", token.INT, 0)), + "DNS_TYPE_OPT": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "DNS_TYPE_PTR": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "DNS_TYPE_PX": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "DNS_TYPE_RP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "DNS_TYPE_RRSIG": reflect.ValueOf(constant.MakeFromLiteral("46", token.INT, 0)), + "DNS_TYPE_RT": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "DNS_TYPE_SIG": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "DNS_TYPE_SINK": reflect.ValueOf(constant.MakeFromLiteral("40", token.INT, 0)), + "DNS_TYPE_SOA": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "DNS_TYPE_SRV": reflect.ValueOf(constant.MakeFromLiteral("33", token.INT, 0)), + "DNS_TYPE_TEXT": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "DNS_TYPE_TKEY": reflect.ValueOf(constant.MakeFromLiteral("249", token.INT, 0)), + "DNS_TYPE_TSIG": reflect.ValueOf(constant.MakeFromLiteral("250", token.INT, 0)), + "DNS_TYPE_UID": reflect.ValueOf(constant.MakeFromLiteral("101", token.INT, 0)), + "DNS_TYPE_UINFO": reflect.ValueOf(constant.MakeFromLiteral("100", token.INT, 0)), + "DNS_TYPE_UNSPEC": reflect.ValueOf(constant.MakeFromLiteral("103", token.INT, 0)), + "DNS_TYPE_WINS": reflect.ValueOf(constant.MakeFromLiteral("65281", token.INT, 0)), + "DNS_TYPE_WINSR": reflect.ValueOf(constant.MakeFromLiteral("65282", token.INT, 0)), + "DNS_TYPE_WKS": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "DNS_TYPE_X25": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "DUPLICATE_CLOSE_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DUPLICATE_SAME_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DeleteFile": reflect.ValueOf(syscall.DeleteFile), + "DeviceIoControl": reflect.ValueOf(syscall.DeviceIoControl), + "DnsNameCompare": reflect.ValueOf(syscall.DnsNameCompare), + "DnsQuery": reflect.ValueOf(syscall.DnsQuery), + "DnsRecordListFree": reflect.ValueOf(syscall.DnsRecordListFree), + "DnsSectionAdditional": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "DnsSectionAnswer": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "DnsSectionAuthority": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "DnsSectionQuestion": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "DuplicateHandle": reflect.ValueOf(syscall.DuplicateHandle), + "E2BIG": reflect.ValueOf(syscall.E2BIG), + "EACCES": reflect.ValueOf(syscall.EACCES), + "EADDRINUSE": reflect.ValueOf(syscall.EADDRINUSE), + "EADDRNOTAVAIL": reflect.ValueOf(syscall.EADDRNOTAVAIL), + "EADV": reflect.ValueOf(syscall.EADV), + "EAFNOSUPPORT": reflect.ValueOf(syscall.EAFNOSUPPORT), + "EAGAIN": reflect.ValueOf(syscall.EAGAIN), + "EALREADY": reflect.ValueOf(syscall.EALREADY), + "EBADE": reflect.ValueOf(syscall.EBADE), + "EBADF": reflect.ValueOf(syscall.EBADF), + "EBADFD": reflect.ValueOf(syscall.EBADFD), + "EBADMSG": reflect.ValueOf(syscall.EBADMSG), + "EBADR": reflect.ValueOf(syscall.EBADR), + "EBADRQC": reflect.ValueOf(syscall.EBADRQC), + "EBADSLT": reflect.ValueOf(syscall.EBADSLT), + "EBFONT": reflect.ValueOf(syscall.EBFONT), + "EBUSY": reflect.ValueOf(syscall.EBUSY), + "ECANCELED": reflect.ValueOf(syscall.ECANCELED), + "ECHILD": reflect.ValueOf(syscall.ECHILD), + "ECHRNG": reflect.ValueOf(syscall.ECHRNG), + "ECOMM": reflect.ValueOf(syscall.ECOMM), + "ECONNABORTED": reflect.ValueOf(syscall.ECONNABORTED), + "ECONNREFUSED": reflect.ValueOf(syscall.ECONNREFUSED), + "ECONNRESET": reflect.ValueOf(syscall.ECONNRESET), + "EDEADLK": reflect.ValueOf(syscall.EDEADLK), + "EDEADLOCK": reflect.ValueOf(syscall.EDEADLOCK), + "EDESTADDRREQ": reflect.ValueOf(syscall.EDESTADDRREQ), + "EDOM": reflect.ValueOf(syscall.EDOM), + "EDOTDOT": reflect.ValueOf(syscall.EDOTDOT), + "EDQUOT": reflect.ValueOf(syscall.EDQUOT), + "EEXIST": reflect.ValueOf(syscall.EEXIST), + "EFAULT": reflect.ValueOf(syscall.EFAULT), + "EFBIG": reflect.ValueOf(syscall.EFBIG), + "EHOSTDOWN": reflect.ValueOf(syscall.EHOSTDOWN), + "EHOSTUNREACH": reflect.ValueOf(syscall.EHOSTUNREACH), + "EIDRM": reflect.ValueOf(syscall.EIDRM), + "EILSEQ": reflect.ValueOf(syscall.EILSEQ), + "EINPROGRESS": reflect.ValueOf(syscall.EINPROGRESS), + "EINTR": reflect.ValueOf(syscall.EINTR), + "EINVAL": reflect.ValueOf(syscall.EINVAL), + "EIO": reflect.ValueOf(syscall.EIO), + "EISCONN": reflect.ValueOf(syscall.EISCONN), + "EISDIR": reflect.ValueOf(syscall.EISDIR), + "EISNAM": reflect.ValueOf(syscall.EISNAM), + "EKEYEXPIRED": reflect.ValueOf(syscall.EKEYEXPIRED), + "EKEYREJECTED": reflect.ValueOf(syscall.EKEYREJECTED), + "EKEYREVOKED": reflect.ValueOf(syscall.EKEYREVOKED), + "EL2HLT": reflect.ValueOf(syscall.EL2HLT), + "EL2NSYNC": reflect.ValueOf(syscall.EL2NSYNC), + "EL3HLT": reflect.ValueOf(syscall.EL3HLT), + "EL3RST": reflect.ValueOf(syscall.EL3RST), + "ELIBACC": reflect.ValueOf(syscall.ELIBACC), + "ELIBBAD": reflect.ValueOf(syscall.ELIBBAD), + "ELIBEXEC": reflect.ValueOf(syscall.ELIBEXEC), + "ELIBMAX": reflect.ValueOf(syscall.ELIBMAX), + "ELIBSCN": reflect.ValueOf(syscall.ELIBSCN), + "ELNRNG": reflect.ValueOf(syscall.ELNRNG), + "ELOOP": reflect.ValueOf(syscall.ELOOP), + "EMEDIUMTYPE": reflect.ValueOf(syscall.EMEDIUMTYPE), + "EMFILE": reflect.ValueOf(syscall.EMFILE), + "EMLINK": reflect.ValueOf(syscall.EMLINK), + "EMSGSIZE": reflect.ValueOf(syscall.EMSGSIZE), + "EMULTIHOP": reflect.ValueOf(syscall.EMULTIHOP), + "ENAMETOOLONG": reflect.ValueOf(syscall.ENAMETOOLONG), + "ENAVAIL": reflect.ValueOf(syscall.ENAVAIL), + "ENETDOWN": reflect.ValueOf(syscall.ENETDOWN), + "ENETRESET": reflect.ValueOf(syscall.ENETRESET), + "ENETUNREACH": reflect.ValueOf(syscall.ENETUNREACH), + "ENFILE": reflect.ValueOf(syscall.ENFILE), + "ENOANO": reflect.ValueOf(syscall.ENOANO), + "ENOBUFS": reflect.ValueOf(syscall.ENOBUFS), + "ENOCSI": reflect.ValueOf(syscall.ENOCSI), + "ENODATA": reflect.ValueOf(syscall.ENODATA), + "ENODEV": reflect.ValueOf(syscall.ENODEV), + "ENOENT": reflect.ValueOf(syscall.ENOENT), + "ENOEXEC": reflect.ValueOf(syscall.ENOEXEC), + "ENOKEY": reflect.ValueOf(syscall.ENOKEY), + "ENOLCK": reflect.ValueOf(syscall.ENOLCK), + "ENOLINK": reflect.ValueOf(syscall.ENOLINK), + "ENOMEDIUM": reflect.ValueOf(syscall.ENOMEDIUM), + "ENOMEM": reflect.ValueOf(syscall.ENOMEM), + "ENOMSG": reflect.ValueOf(syscall.ENOMSG), + "ENONET": reflect.ValueOf(syscall.ENONET), + "ENOPKG": reflect.ValueOf(syscall.ENOPKG), + "ENOPROTOOPT": reflect.ValueOf(syscall.ENOPROTOOPT), + "ENOSPC": reflect.ValueOf(syscall.ENOSPC), + "ENOSR": reflect.ValueOf(syscall.ENOSR), + "ENOSTR": reflect.ValueOf(syscall.ENOSTR), + "ENOSYS": reflect.ValueOf(syscall.ENOSYS), + "ENOTBLK": reflect.ValueOf(syscall.ENOTBLK), + "ENOTCONN": reflect.ValueOf(syscall.ENOTCONN), + "ENOTDIR": reflect.ValueOf(syscall.ENOTDIR), + "ENOTEMPTY": reflect.ValueOf(syscall.ENOTEMPTY), + "ENOTNAM": reflect.ValueOf(syscall.ENOTNAM), + "ENOTRECOVERABLE": reflect.ValueOf(syscall.ENOTRECOVERABLE), + "ENOTSOCK": reflect.ValueOf(syscall.ENOTSOCK), + "ENOTSUP": reflect.ValueOf(syscall.ENOTSUP), + "ENOTTY": reflect.ValueOf(syscall.ENOTTY), + "ENOTUNIQ": reflect.ValueOf(syscall.ENOTUNIQ), + "ENXIO": reflect.ValueOf(syscall.ENXIO), + "EOPNOTSUPP": reflect.ValueOf(syscall.EOPNOTSUPP), + "EOVERFLOW": reflect.ValueOf(syscall.EOVERFLOW), + "EOWNERDEAD": reflect.ValueOf(syscall.EOWNERDEAD), + "EPERM": reflect.ValueOf(syscall.EPERM), + "EPFNOSUPPORT": reflect.ValueOf(syscall.EPFNOSUPPORT), + "EPIPE": reflect.ValueOf(syscall.EPIPE), + "EPROTO": reflect.ValueOf(syscall.EPROTO), + "EPROTONOSUPPORT": reflect.ValueOf(syscall.EPROTONOSUPPORT), + "EPROTOTYPE": reflect.ValueOf(syscall.EPROTOTYPE), + "ERANGE": reflect.ValueOf(syscall.ERANGE), + "EREMCHG": reflect.ValueOf(syscall.EREMCHG), + "EREMOTE": reflect.ValueOf(syscall.EREMOTE), + "EREMOTEIO": reflect.ValueOf(syscall.EREMOTEIO), + "ERESTART": reflect.ValueOf(syscall.ERESTART), + "EROFS": reflect.ValueOf(syscall.EROFS), + "ERROR_ACCESS_DENIED": reflect.ValueOf(syscall.ERROR_ACCESS_DENIED), + "ERROR_ALREADY_EXISTS": reflect.ValueOf(syscall.ERROR_ALREADY_EXISTS), + "ERROR_BROKEN_PIPE": reflect.ValueOf(syscall.ERROR_BROKEN_PIPE), + "ERROR_BUFFER_OVERFLOW": reflect.ValueOf(syscall.ERROR_BUFFER_OVERFLOW), + "ERROR_DIR_NOT_EMPTY": reflect.ValueOf(syscall.ERROR_DIR_NOT_EMPTY), + "ERROR_ENVVAR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_ENVVAR_NOT_FOUND), + "ERROR_FILE_EXISTS": reflect.ValueOf(syscall.ERROR_FILE_EXISTS), + "ERROR_FILE_NOT_FOUND": reflect.ValueOf(syscall.ERROR_FILE_NOT_FOUND), + "ERROR_HANDLE_EOF": reflect.ValueOf(syscall.ERROR_HANDLE_EOF), + "ERROR_INSUFFICIENT_BUFFER": reflect.ValueOf(syscall.ERROR_INSUFFICIENT_BUFFER), + "ERROR_IO_PENDING": reflect.ValueOf(syscall.ERROR_IO_PENDING), + "ERROR_MOD_NOT_FOUND": reflect.ValueOf(syscall.ERROR_MOD_NOT_FOUND), + "ERROR_MORE_DATA": reflect.ValueOf(syscall.ERROR_MORE_DATA), + "ERROR_NETNAME_DELETED": reflect.ValueOf(syscall.ERROR_NETNAME_DELETED), + "ERROR_NOT_FOUND": reflect.ValueOf(syscall.ERROR_NOT_FOUND), + "ERROR_NO_MORE_FILES": reflect.ValueOf(syscall.ERROR_NO_MORE_FILES), + "ERROR_OPERATION_ABORTED": reflect.ValueOf(syscall.ERROR_OPERATION_ABORTED), + "ERROR_PATH_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PATH_NOT_FOUND), + "ERROR_PRIVILEGE_NOT_HELD": reflect.ValueOf(syscall.ERROR_PRIVILEGE_NOT_HELD), + "ERROR_PROC_NOT_FOUND": reflect.ValueOf(syscall.ERROR_PROC_NOT_FOUND), + "ESHUTDOWN": reflect.ValueOf(syscall.ESHUTDOWN), + "ESOCKTNOSUPPORT": reflect.ValueOf(syscall.ESOCKTNOSUPPORT), + "ESPIPE": reflect.ValueOf(syscall.ESPIPE), + "ESRCH": reflect.ValueOf(syscall.ESRCH), + "ESRMNT": reflect.ValueOf(syscall.ESRMNT), + "ESTALE": reflect.ValueOf(syscall.ESTALE), + "ESTRPIPE": reflect.ValueOf(syscall.ESTRPIPE), + "ETIME": reflect.ValueOf(syscall.ETIME), + "ETIMEDOUT": reflect.ValueOf(syscall.ETIMEDOUT), + "ETOOMANYREFS": reflect.ValueOf(syscall.ETOOMANYREFS), + "ETXTBSY": reflect.ValueOf(syscall.ETXTBSY), + "EUCLEAN": reflect.ValueOf(syscall.EUCLEAN), + "EUNATCH": reflect.ValueOf(syscall.EUNATCH), + "EUSERS": reflect.ValueOf(syscall.EUSERS), + "EWINDOWS": reflect.ValueOf(syscall.EWINDOWS), + "EWOULDBLOCK": reflect.ValueOf(syscall.EWOULDBLOCK), + "EXDEV": reflect.ValueOf(syscall.EXDEV), + "EXFULL": reflect.ValueOf(syscall.EXFULL), + "Environ": reflect.ValueOf(syscall.Environ), + "EscapeArg": reflect.ValueOf(syscall.EscapeArg), + "FILE_ACTION_ADDED": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ACTION_MODIFIED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_ACTION_REMOVED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ACTION_RENAMED_NEW_NAME": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "FILE_ACTION_RENAMED_OLD_NAME": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_APPEND_DATA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_ATTRIBUTE_ARCHIVE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_ATTRIBUTE_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_ATTRIBUTE_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_ATTRIBUTE_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "FILE_ATTRIBUTE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_ATTRIBUTE_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FILE_ATTRIBUTE_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_BEGIN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_CURRENT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_END": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_FLAG_BACKUP_SEMANTICS": reflect.ValueOf(constant.MakeFromLiteral("33554432", token.INT, 0)), + "FILE_FLAG_OPEN_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("2097152", token.INT, 0)), + "FILE_FLAG_OVERLAPPED": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "FILE_LIST_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_COPY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_MAP_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_MAP_READ": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_MAP_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_NOTIFY_CHANGE_CREATION": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "FILE_NOTIFY_CHANGE_DIR_NAME": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_NOTIFY_CHANGE_FILE_NAME": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "FILE_NOTIFY_CHANGE_LAST_WRITE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "FILE_NOTIFY_CHANGE_SIZE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "FILE_SHARE_DELETE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "FILE_SHARE_READ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SHARE_WRITE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_SKIP_COMPLETION_PORT_ON_SUCCESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_SKIP_SET_EVENT_ON_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_CHAR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "FILE_TYPE_DISK": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "FILE_TYPE_PIPE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "FILE_TYPE_REMOTE": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "FILE_TYPE_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "FILE_WRITE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ALLOCATE_BUFFER": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "FORMAT_MESSAGE_ARGUMENT_ARRAY": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "FORMAT_MESSAGE_FROM_HMODULE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "FORMAT_MESSAGE_FROM_STRING": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "FORMAT_MESSAGE_FROM_SYSTEM": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "FORMAT_MESSAGE_IGNORE_INSERTS": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "FORMAT_MESSAGE_MAX_WIDTH_MASK": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "FSCTL_GET_REPARSE_POINT": reflect.ValueOf(constant.MakeFromLiteral("589992", token.INT, 0)), + "Fchdir": reflect.ValueOf(syscall.Fchdir), + "Fchmod": reflect.ValueOf(syscall.Fchmod), + "Fchown": reflect.ValueOf(syscall.Fchown), + "FindClose": reflect.ValueOf(syscall.FindClose), + "FindFirstFile": reflect.ValueOf(syscall.FindFirstFile), + "FindNextFile": reflect.ValueOf(syscall.FindNextFile), + "FlushFileBuffers": reflect.ValueOf(syscall.FlushFileBuffers), + "FlushViewOfFile": reflect.ValueOf(syscall.FlushViewOfFile), + "ForkLock": reflect.ValueOf(&syscall.ForkLock).Elem(), + "FormatMessage": reflect.ValueOf(syscall.FormatMessage), + "FreeAddrInfoW": reflect.ValueOf(syscall.FreeAddrInfoW), + "FreeEnvironmentStrings": reflect.ValueOf(syscall.FreeEnvironmentStrings), + "FreeLibrary": reflect.ValueOf(syscall.FreeLibrary), + "Fsync": reflect.ValueOf(syscall.Fsync), + "Ftruncate": reflect.ValueOf(syscall.Ftruncate), + "FullPath": reflect.ValueOf(syscall.FullPath), + "GENERIC_ALL": reflect.ValueOf(constant.MakeFromLiteral("268435456", token.INT, 0)), + "GENERIC_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("536870912", token.INT, 0)), + "GENERIC_READ": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "GENERIC_WRITE": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "GetAcceptExSockaddrs": reflect.ValueOf(syscall.GetAcceptExSockaddrs), + "GetAdaptersInfo": reflect.ValueOf(syscall.GetAdaptersInfo), + "GetAddrInfoW": reflect.ValueOf(syscall.GetAddrInfoW), + "GetCommandLine": reflect.ValueOf(syscall.GetCommandLine), + "GetComputerName": reflect.ValueOf(syscall.GetComputerName), + "GetConsoleMode": reflect.ValueOf(syscall.GetConsoleMode), + "GetCurrentDirectory": reflect.ValueOf(syscall.GetCurrentDirectory), + "GetCurrentProcess": reflect.ValueOf(syscall.GetCurrentProcess), + "GetEnvironmentStrings": reflect.ValueOf(syscall.GetEnvironmentStrings), + "GetEnvironmentVariable": reflect.ValueOf(syscall.GetEnvironmentVariable), + "GetFileAttributes": reflect.ValueOf(syscall.GetFileAttributes), + "GetFileAttributesEx": reflect.ValueOf(syscall.GetFileAttributesEx), + "GetFileExInfoStandard": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "GetFileExMaxInfoLevel": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "GetFileInformationByHandle": reflect.ValueOf(syscall.GetFileInformationByHandle), + "GetFileType": reflect.ValueOf(syscall.GetFileType), + "GetFullPathName": reflect.ValueOf(syscall.GetFullPathName), + "GetHostByName": reflect.ValueOf(syscall.GetHostByName), + "GetIfEntry": reflect.ValueOf(syscall.GetIfEntry), + "GetLastError": reflect.ValueOf(syscall.GetLastError), + "GetLengthSid": reflect.ValueOf(syscall.GetLengthSid), + "GetLongPathName": reflect.ValueOf(syscall.GetLongPathName), + "GetProcAddress": reflect.ValueOf(syscall.GetProcAddress), + "GetProcessTimes": reflect.ValueOf(syscall.GetProcessTimes), + "GetProtoByName": reflect.ValueOf(syscall.GetProtoByName), + "GetQueuedCompletionStatus": reflect.ValueOf(syscall.GetQueuedCompletionStatus), + "GetServByName": reflect.ValueOf(syscall.GetServByName), + "GetShortPathName": reflect.ValueOf(syscall.GetShortPathName), + "GetStartupInfo": reflect.ValueOf(syscall.GetStartupInfo), + "GetStdHandle": reflect.ValueOf(syscall.GetStdHandle), + "GetSystemTimeAsFileTime": reflect.ValueOf(syscall.GetSystemTimeAsFileTime), + "GetTempPath": reflect.ValueOf(syscall.GetTempPath), + "GetTimeZoneInformation": reflect.ValueOf(syscall.GetTimeZoneInformation), + "GetTokenInformation": reflect.ValueOf(syscall.GetTokenInformation), + "GetUserNameEx": reflect.ValueOf(syscall.GetUserNameEx), + "GetUserProfileDirectory": reflect.ValueOf(syscall.GetUserProfileDirectory), + "GetVersion": reflect.ValueOf(syscall.GetVersion), + "Getegid": reflect.ValueOf(syscall.Getegid), + "Getenv": reflect.ValueOf(syscall.Getenv), + "Geteuid": reflect.ValueOf(syscall.Geteuid), + "Getgid": reflect.ValueOf(syscall.Getgid), + "Getgroups": reflect.ValueOf(syscall.Getgroups), + "Getpagesize": reflect.ValueOf(syscall.Getpagesize), + "Getpeername": reflect.ValueOf(syscall.Getpeername), + "Getpid": reflect.ValueOf(syscall.Getpid), + "Getppid": reflect.ValueOf(syscall.Getppid), + "Getsockname": reflect.ValueOf(syscall.Getsockname), + "Getsockopt": reflect.ValueOf(syscall.Getsockopt), + "GetsockoptInt": reflect.ValueOf(syscall.GetsockoptInt), + "Gettimeofday": reflect.ValueOf(syscall.Gettimeofday), + "Getuid": reflect.ValueOf(syscall.Getuid), + "Getwd": reflect.ValueOf(syscall.Getwd), + "HANDLE_FLAG_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "HKEY_CLASSES_ROOT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "HKEY_CURRENT_CONFIG": reflect.ValueOf(constant.MakeFromLiteral("2147483653", token.INT, 0)), + "HKEY_CURRENT_USER": reflect.ValueOf(constant.MakeFromLiteral("2147483649", token.INT, 0)), + "HKEY_DYN_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483654", token.INT, 0)), + "HKEY_LOCAL_MACHINE": reflect.ValueOf(constant.MakeFromLiteral("2147483650", token.INT, 0)), + "HKEY_PERFORMANCE_DATA": reflect.ValueOf(constant.MakeFromLiteral("2147483652", token.INT, 0)), + "HKEY_USERS": reflect.ValueOf(constant.MakeFromLiteral("2147483651", token.INT, 0)), + "IFF_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "IFF_LOOPBACK": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IFF_MULTICAST": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "IFF_POINTTOPOINT": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "IFF_UP": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "IGNORE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "INFINITE": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "INVALID_FILE_ATTRIBUTES": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "IOC_IN": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "IOC_INOUT": reflect.ValueOf(constant.MakeFromLiteral("3221225472", token.INT, 0)), + "IOC_OUT": reflect.ValueOf(constant.MakeFromLiteral("1073741824", token.INT, 0)), + "IOC_VENDOR": reflect.ValueOf(constant.MakeFromLiteral("402653184", token.INT, 0)), + "IOC_WS2": reflect.ValueOf(constant.MakeFromLiteral("134217728", token.INT, 0)), + "IO_REPARSE_TAG_SYMLINK": reflect.ValueOf(constant.MakeFromLiteral("2684354572", token.INT, 0)), + "IPPROTO_IP": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "IPPROTO_IPV6": reflect.ValueOf(constant.MakeFromLiteral("41", token.INT, 0)), + "IPPROTO_TCP": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "IPPROTO_UDP": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "IPV6_JOIN_GROUP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IPV6_LEAVE_GROUP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IPV6_MULTICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IPV6_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IPV6_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IPV6_UNICAST_HOPS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "IPV6_V6ONLY": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "IP_ADD_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "IP_DROP_MEMBERSHIP": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "IP_MULTICAST_IF": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "IP_MULTICAST_LOOP": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "IP_MULTICAST_TTL": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "IP_TOS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "IP_TTL": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "ImplementsGetwd": reflect.ValueOf(syscall.ImplementsGetwd), + "InvalidHandle": reflect.ValueOf(syscall.InvalidHandle), + "KEY_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983103", token.INT, 0)), + "KEY_CREATE_LINK": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "KEY_CREATE_SUB_KEY": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "KEY_ENUMERATE_SUB_KEYS": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "KEY_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_NOTIFY": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "KEY_QUERY_VALUE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "KEY_READ": reflect.ValueOf(constant.MakeFromLiteral("131097", token.INT, 0)), + "KEY_SET_VALUE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "KEY_WOW64_32KEY": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "KEY_WOW64_64KEY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "KEY_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131078", token.INT, 0)), + "LANG_ENGLISH": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "LAYERED_PROTOCOL": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "Lchown": reflect.ValueOf(syscall.Lchown), + "Link": reflect.ValueOf(syscall.Link), + "Listen": reflect.ValueOf(syscall.Listen), + "LoadCancelIoEx": reflect.ValueOf(syscall.LoadCancelIoEx), + "LoadConnectEx": reflect.ValueOf(syscall.LoadConnectEx), + "LoadCreateSymbolicLink": reflect.ValueOf(syscall.LoadCreateSymbolicLink), + "LoadDLL": reflect.ValueOf(syscall.LoadDLL), + "LoadGetAddrInfo": reflect.ValueOf(syscall.LoadGetAddrInfo), + "LoadLibrary": reflect.ValueOf(syscall.LoadLibrary), + "LoadSetFileCompletionNotificationModes": reflect.ValueOf(syscall.LoadSetFileCompletionNotificationModes), + "LocalFree": reflect.ValueOf(syscall.LocalFree), + "LookupAccountName": reflect.ValueOf(syscall.LookupAccountName), + "LookupAccountSid": reflect.ValueOf(syscall.LookupAccountSid), + "LookupSID": reflect.ValueOf(syscall.LookupSID), + "MAXIMUM_REPARSE_DATA_BUFFER_SIZE": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "MAXLEN_IFDESCR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAXLEN_PHYSADDR": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_ADDRESS_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "MAX_ADAPTER_DESCRIPTION_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "MAX_ADAPTER_NAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_COMPUTERNAME_LENGTH": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "MAX_INTERFACE_NAME_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "MAX_LONG_PATH": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "MAX_PATH": reflect.ValueOf(constant.MakeFromLiteral("260", token.INT, 0)), + "MAX_PROTOCOL_CHAIN": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "MapViewOfFile": reflect.ValueOf(syscall.MapViewOfFile), + "MaxTokenInfoClass": reflect.ValueOf(constant.MakeFromLiteral("29", token.INT, 0)), + "Mkdir": reflect.ValueOf(syscall.Mkdir), + "MoveFile": reflect.ValueOf(syscall.MoveFile), + "MustLoadDLL": reflect.ValueOf(syscall.MustLoadDLL), + "NameCanonical": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "NameCanonicalEx": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "NameDisplay": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NameDnsDomain": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "NameFullyQualifiedDN": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NameSamCompatible": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NameServicePrincipal": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "NameUniqueId": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "NameUnknown": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NameUserPrincipal": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "NetApiBufferFree": reflect.ValueOf(syscall.NetApiBufferFree), + "NetGetJoinInformation": reflect.ValueOf(syscall.NetGetJoinInformation), + "NetSetupDomainName": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "NetSetupUnjoined": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "NetSetupUnknownStatus": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "NetSetupWorkgroupName": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "NetUserGetInfo": reflect.ValueOf(syscall.NetUserGetInfo), + "NewCallback": reflect.ValueOf(syscall.NewCallback), + "NewCallbackCDecl": reflect.ValueOf(syscall.NewCallbackCDecl), + "NewLazyDLL": reflect.ValueOf(syscall.NewLazyDLL), + "NsecToFiletime": reflect.ValueOf(syscall.NsecToFiletime), + "NsecToTimespec": reflect.ValueOf(syscall.NsecToTimespec), + "NsecToTimeval": reflect.ValueOf(syscall.NsecToTimeval), + "Ntohs": reflect.ValueOf(syscall.Ntohs), + "OID_PKIX_KP_SERVER_AUTH": reflect.ValueOf(&syscall.OID_PKIX_KP_SERVER_AUTH).Elem(), + "OID_SERVER_GATED_CRYPTO": reflect.ValueOf(&syscall.OID_SERVER_GATED_CRYPTO).Elem(), + "OID_SGC_NETSCAPE": reflect.ValueOf(&syscall.OID_SGC_NETSCAPE).Elem(), + "OPEN_ALWAYS": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "OPEN_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "O_APPEND": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "O_ASYNC": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "O_CLOEXEC": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "O_CREAT": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "O_EXCL": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "O_NOCTTY": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "O_NONBLOCK": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "O_RDONLY": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "O_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "O_SYNC": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "O_TRUNC": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "O_WRONLY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Open": reflect.ValueOf(syscall.Open), + "OpenCurrentProcessToken": reflect.ValueOf(syscall.OpenCurrentProcessToken), + "OpenProcess": reflect.ValueOf(syscall.OpenProcess), + "OpenProcessToken": reflect.ValueOf(syscall.OpenProcessToken), + "PAGE_EXECUTE_READ": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "PAGE_EXECUTE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "PAGE_EXECUTE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "PAGE_READONLY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PAGE_READWRITE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PAGE_WRITECOPY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_HIDDEN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PFL_MATCHES_PROTOCOL_ZERO": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "PFL_MULTIPLE_PROTO_ENTRIES": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PFL_NETWORKDIRECT_PROVIDER": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PFL_RECOMMENDED_PROTO_ENTRY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PKCS_7_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "PROCESS_QUERY_INFORMATION": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "PROCESS_TERMINATE": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_DH_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "PROV_DSS": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "PROV_DSS_DH": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "PROV_EC_ECDSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "PROV_EC_ECDSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "PROV_EC_ECNRA_FULL": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "PROV_EC_ECNRA_SIG": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "PROV_FORTEZZA": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "PROV_INTEL_SEC": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "PROV_MS_EXCHANGE": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "PROV_REPLACE_OWF": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "PROV_RNG": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "PROV_RSA_AES": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "PROV_RSA_FULL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "PROV_RSA_SCHANNEL": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "PROV_RSA_SIG": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "PROV_SPYRUS_LYNKS": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "PROV_SSL": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "Pipe": reflect.ValueOf(syscall.Pipe), + "PostQueuedCompletionStatus": reflect.ValueOf(syscall.PostQueuedCompletionStatus), + "Process32First": reflect.ValueOf(syscall.Process32First), + "Process32Next": reflect.ValueOf(syscall.Process32Next), + "REG_BINARY": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "REG_DWORD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_DWORD_BIG_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "REG_DWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "REG_EXPAND_SZ": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "REG_FULL_RESOURCE_DESCRIPTOR": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "REG_LINK": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "REG_MULTI_SZ": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "REG_NONE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "REG_QWORD": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_QWORD_LITTLE_ENDIAN": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "REG_RESOURCE_LIST": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "REG_RESOURCE_REQUIREMENTS_LIST": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "REG_SZ": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "Read": reflect.ValueOf(syscall.Read), + "ReadConsole": reflect.ValueOf(syscall.ReadConsole), + "ReadDirectoryChanges": reflect.ValueOf(syscall.ReadDirectoryChanges), + "ReadFile": reflect.ValueOf(syscall.ReadFile), + "Readlink": reflect.ValueOf(syscall.Readlink), + "Recvfrom": reflect.ValueOf(syscall.Recvfrom), + "RegCloseKey": reflect.ValueOf(syscall.RegCloseKey), + "RegEnumKeyEx": reflect.ValueOf(syscall.RegEnumKeyEx), + "RegOpenKeyEx": reflect.ValueOf(syscall.RegOpenKeyEx), + "RegQueryInfoKey": reflect.ValueOf(syscall.RegQueryInfoKey), + "RegQueryValueEx": reflect.ValueOf(syscall.RegQueryValueEx), + "RemoveDirectory": reflect.ValueOf(syscall.RemoveDirectory), + "Rename": reflect.ValueOf(syscall.Rename), + "Rmdir": reflect.ValueOf(syscall.Rmdir), + "SHUT_RD": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SHUT_RDWR": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SHUT_WR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SIGABRT": reflect.ValueOf(syscall.SIGABRT), + "SIGALRM": reflect.ValueOf(syscall.SIGALRM), + "SIGBUS": reflect.ValueOf(syscall.SIGBUS), + "SIGFPE": reflect.ValueOf(syscall.SIGFPE), + "SIGHUP": reflect.ValueOf(syscall.SIGHUP), + "SIGILL": reflect.ValueOf(syscall.SIGILL), + "SIGINT": reflect.ValueOf(syscall.SIGINT), + "SIGKILL": reflect.ValueOf(syscall.SIGKILL), + "SIGPIPE": reflect.ValueOf(syscall.SIGPIPE), + "SIGQUIT": reflect.ValueOf(syscall.SIGQUIT), + "SIGSEGV": reflect.ValueOf(syscall.SIGSEGV), + "SIGTERM": reflect.ValueOf(syscall.SIGTERM), + "SIGTRAP": reflect.ValueOf(syscall.SIGTRAP), + "SIO_GET_EXTENSION_FUNCTION_POINTER": reflect.ValueOf(constant.MakeFromLiteral("3355443206", token.INT, 0)), + "SIO_GET_INTERFACE_LIST": reflect.ValueOf(constant.MakeFromLiteral("1074033791", token.INT, 0)), + "SIO_KEEPALIVE_VALS": reflect.ValueOf(constant.MakeFromLiteral("2550136836", token.INT, 0)), + "SIO_UDP_CONNRESET": reflect.ValueOf(constant.MakeFromLiteral("2550136844", token.INT, 0)), + "SOCK_DGRAM": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SOCK_RAW": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SOCK_SEQPACKET": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SOCK_STREAM": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SOL_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("65535", token.INT, 0)), + "SOMAXCONN": reflect.ValueOf(constant.MakeFromLiteral("2147483647", token.INT, 0)), + "SO_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "SO_DONTROUTE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "SO_KEEPALIVE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SO_LINGER": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "SO_RCVBUF": reflect.ValueOf(constant.MakeFromLiteral("4098", token.INT, 0)), + "SO_REUSEADDR": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SO_SNDBUF": reflect.ValueOf(constant.MakeFromLiteral("4097", token.INT, 0)), + "SO_UPDATE_ACCEPT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28683", token.INT, 0)), + "SO_UPDATE_CONNECT_CONTEXT": reflect.ValueOf(constant.MakeFromLiteral("28688", token.INT, 0)), + "STANDARD_RIGHTS_ALL": reflect.ValueOf(constant.MakeFromLiteral("2031616", token.INT, 0)), + "STANDARD_RIGHTS_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_READ": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STANDARD_RIGHTS_REQUIRED": reflect.ValueOf(constant.MakeFromLiteral("983040", token.INT, 0)), + "STANDARD_RIGHTS_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "STARTF_USESHOWWINDOW": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "STARTF_USESTDHANDLES": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "STD_ERROR_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-12", token.INT, 0)), + "STD_INPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-10", token.INT, 0)), + "STD_OUTPUT_HANDLE": reflect.ValueOf(constant.MakeFromLiteral("-11", token.INT, 0)), + "SUBLANG_ENGLISH_US": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_FORCEMINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "SW_HIDE": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "SW_MAXIMIZE": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_MINIMIZE": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SW_NORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SW_RESTORE": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SW_SHOW": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "SW_SHOWDEFAULT": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SW_SHOWMAXIMIZED": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SW_SHOWMINIMIZED": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SW_SHOWMINNOACTIVE": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SW_SHOWNA": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SW_SHOWNOACTIVATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SW_SHOWNORMAL": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYMBOLIC_LINK_FLAG_DIRECTORY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SYNCHRONIZE": reflect.ValueOf(constant.MakeFromLiteral("1048576", token.INT, 0)), + "S_IFBLK": reflect.ValueOf(constant.MakeFromLiteral("24576", token.INT, 0)), + "S_IFCHR": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "S_IFDIR": reflect.ValueOf(constant.MakeFromLiteral("16384", token.INT, 0)), + "S_IFIFO": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "S_IFLNK": reflect.ValueOf(constant.MakeFromLiteral("40960", token.INT, 0)), + "S_IFMT": reflect.ValueOf(constant.MakeFromLiteral("126976", token.INT, 0)), + "S_IFREG": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + "S_IFSOCK": reflect.ValueOf(constant.MakeFromLiteral("49152", token.INT, 0)), + "S_IRUSR": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "S_ISGID": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "S_ISUID": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "S_ISVTX": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "S_IWRITE": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IWUSR": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "S_IXUSR": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "Seek": reflect.ValueOf(syscall.Seek), + "Sendto": reflect.ValueOf(syscall.Sendto), + "SetCurrentDirectory": reflect.ValueOf(syscall.SetCurrentDirectory), + "SetEndOfFile": reflect.ValueOf(syscall.SetEndOfFile), + "SetEnvironmentVariable": reflect.ValueOf(syscall.SetEnvironmentVariable), + "SetFileAttributes": reflect.ValueOf(syscall.SetFileAttributes), + "SetFileCompletionNotificationModes": reflect.ValueOf(syscall.SetFileCompletionNotificationModes), + "SetFilePointer": reflect.ValueOf(syscall.SetFilePointer), + "SetFileTime": reflect.ValueOf(syscall.SetFileTime), + "SetHandleInformation": reflect.ValueOf(syscall.SetHandleInformation), + "SetNonblock": reflect.ValueOf(syscall.SetNonblock), + "Setenv": reflect.ValueOf(syscall.Setenv), + "Setsockopt": reflect.ValueOf(syscall.Setsockopt), + "SetsockoptIPMreq": reflect.ValueOf(syscall.SetsockoptIPMreq), + "SetsockoptIPv6Mreq": reflect.ValueOf(syscall.SetsockoptIPv6Mreq), + "SetsockoptInet4Addr": reflect.ValueOf(syscall.SetsockoptInet4Addr), + "SetsockoptInt": reflect.ValueOf(syscall.SetsockoptInt), + "SetsockoptLinger": reflect.ValueOf(syscall.SetsockoptLinger), + "SetsockoptTimeval": reflect.ValueOf(syscall.SetsockoptTimeval), + "SidTypeAlias": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "SidTypeComputer": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "SidTypeDeletedAccount": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "SidTypeDomain": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "SidTypeGroup": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "SidTypeInvalid": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "SidTypeLabel": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "SidTypeUnknown": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "SidTypeUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "SidTypeWellKnownGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "Socket": reflect.ValueOf(syscall.Socket), + "SocketDisableIPv6": reflect.ValueOf(&syscall.SocketDisableIPv6).Elem(), + "Stderr": reflect.ValueOf(&syscall.Stderr).Elem(), + "Stdin": reflect.ValueOf(&syscall.Stdin).Elem(), + "Stdout": reflect.ValueOf(&syscall.Stdout).Elem(), + "StringBytePtr": reflect.ValueOf(syscall.StringBytePtr), + "StringByteSlice": reflect.ValueOf(syscall.StringByteSlice), + "StringToSid": reflect.ValueOf(syscall.StringToSid), + "StringToUTF16": reflect.ValueOf(syscall.StringToUTF16), + "StringToUTF16Ptr": reflect.ValueOf(syscall.StringToUTF16Ptr), + "Symlink": reflect.ValueOf(syscall.Symlink), + "TCP_NODELAY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_DISCONNECT": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TF_REUSE_SOCKET": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TF_USE_DEFAULT_WORKER": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TF_USE_KERNEL_APC": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TF_USE_SYSTEM_THREAD": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TF_WRITE_BEHIND": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TH32CS_INHERIT": reflect.ValueOf(constant.MakeFromLiteral("2147483648", token.INT, 0)), + "TH32CS_SNAPALL": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TH32CS_SNAPHEAPLIST": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TH32CS_SNAPMODULE": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TH32CS_SNAPMODULE32": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TH32CS_SNAPPROCESS": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TH32CS_SNAPTHREAD": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TIME_ZONE_ID_DAYLIGHT": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TIME_ZONE_ID_STANDARD": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TIME_ZONE_ID_UNKNOWN": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "TOKEN_ADJUST_DEFAULT": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "TOKEN_ADJUST_GROUPS": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "TOKEN_ADJUST_PRIVILEGES": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "TOKEN_ADJUST_SESSIONID": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "TOKEN_ALL_ACCESS": reflect.ValueOf(constant.MakeFromLiteral("983551", token.INT, 0)), + "TOKEN_ASSIGN_PRIMARY": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TOKEN_DUPLICATE": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TOKEN_EXECUTE": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "TOKEN_IMPERSONATE": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TOKEN_QUERY": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TOKEN_QUERY_SOURCE": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TOKEN_READ": reflect.ValueOf(constant.MakeFromLiteral("131080", token.INT, 0)), + "TOKEN_WRITE": reflect.ValueOf(constant.MakeFromLiteral("131296", token.INT, 0)), + "TRUNCATE_EXISTING": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TerminateProcess": reflect.ValueOf(syscall.TerminateProcess), + "TimespecToNsec": reflect.ValueOf(syscall.TimespecToNsec), + "TokenAccessInformation": reflect.ValueOf(constant.MakeFromLiteral("22", token.INT, 0)), + "TokenAuditPolicy": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "TokenDefaultDacl": reflect.ValueOf(constant.MakeFromLiteral("6", token.INT, 0)), + "TokenElevation": reflect.ValueOf(constant.MakeFromLiteral("20", token.INT, 0)), + "TokenElevationType": reflect.ValueOf(constant.MakeFromLiteral("18", token.INT, 0)), + "TokenGroups": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "TokenGroupsAndPrivileges": reflect.ValueOf(constant.MakeFromLiteral("13", token.INT, 0)), + "TokenHasRestrictions": reflect.ValueOf(constant.MakeFromLiteral("21", token.INT, 0)), + "TokenImpersonationLevel": reflect.ValueOf(constant.MakeFromLiteral("9", token.INT, 0)), + "TokenIntegrityLevel": reflect.ValueOf(constant.MakeFromLiteral("25", token.INT, 0)), + "TokenLinkedToken": reflect.ValueOf(constant.MakeFromLiteral("19", token.INT, 0)), + "TokenLogonSid": reflect.ValueOf(constant.MakeFromLiteral("28", token.INT, 0)), + "TokenMandatoryPolicy": reflect.ValueOf(constant.MakeFromLiteral("27", token.INT, 0)), + "TokenOrigin": reflect.ValueOf(constant.MakeFromLiteral("17", token.INT, 0)), + "TokenOwner": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "TokenPrimaryGroup": reflect.ValueOf(constant.MakeFromLiteral("5", token.INT, 0)), + "TokenPrivileges": reflect.ValueOf(constant.MakeFromLiteral("3", token.INT, 0)), + "TokenRestrictedSids": reflect.ValueOf(constant.MakeFromLiteral("11", token.INT, 0)), + "TokenSandBoxInert": reflect.ValueOf(constant.MakeFromLiteral("15", token.INT, 0)), + "TokenSessionId": reflect.ValueOf(constant.MakeFromLiteral("12", token.INT, 0)), + "TokenSessionReference": reflect.ValueOf(constant.MakeFromLiteral("14", token.INT, 0)), + "TokenSource": reflect.ValueOf(constant.MakeFromLiteral("7", token.INT, 0)), + "TokenStatistics": reflect.ValueOf(constant.MakeFromLiteral("10", token.INT, 0)), + "TokenType": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "TokenUIAccess": reflect.ValueOf(constant.MakeFromLiteral("26", token.INT, 0)), + "TokenUser": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "TokenVirtualizationAllowed": reflect.ValueOf(constant.MakeFromLiteral("23", token.INT, 0)), + "TokenVirtualizationEnabled": reflect.ValueOf(constant.MakeFromLiteral("24", token.INT, 0)), + "TranslateAccountName": reflect.ValueOf(syscall.TranslateAccountName), + "TranslateName": reflect.ValueOf(syscall.TranslateName), + "TransmitFile": reflect.ValueOf(syscall.TransmitFile), + "UNIX_PATH_MAX": reflect.ValueOf(constant.MakeFromLiteral("108", token.INT, 0)), + "USAGE_MATCH_TYPE_AND": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "USAGE_MATCH_TYPE_OR": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "UTF16FromString": reflect.ValueOf(syscall.UTF16FromString), + "UTF16PtrFromString": reflect.ValueOf(syscall.UTF16PtrFromString), + "UTF16ToString": reflect.ValueOf(syscall.UTF16ToString), + "Unlink": reflect.ValueOf(syscall.Unlink), + "UnmapViewOfFile": reflect.ValueOf(syscall.UnmapViewOfFile), + "Unsetenv": reflect.ValueOf(syscall.Unsetenv), + "Utimes": reflect.ValueOf(syscall.Utimes), + "UtimesNano": reflect.ValueOf(syscall.UtimesNano), + "VirtualLock": reflect.ValueOf(syscall.VirtualLock), + "VirtualUnlock": reflect.ValueOf(syscall.VirtualUnlock), + "WAIT_ABANDONED": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WAIT_FAILED": reflect.ValueOf(constant.MakeFromLiteral("4294967295", token.INT, 0)), + "WAIT_OBJECT_0": reflect.ValueOf(constant.MakeFromLiteral("0", token.INT, 0)), + "WAIT_TIMEOUT": reflect.ValueOf(constant.MakeFromLiteral("258", token.INT, 0)), + "WSACleanup": reflect.ValueOf(syscall.WSACleanup), + "WSADESCRIPTION_LEN": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "WSAEACCES": reflect.ValueOf(syscall.WSAEACCES), + "WSAECONNABORTED": reflect.ValueOf(syscall.WSAECONNABORTED), + "WSAECONNRESET": reflect.ValueOf(syscall.WSAECONNRESET), + "WSAEnumProtocols": reflect.ValueOf(syscall.WSAEnumProtocols), + "WSAID_CONNECTEX": reflect.ValueOf(&syscall.WSAID_CONNECTEX).Elem(), + "WSAIoctl": reflect.ValueOf(syscall.WSAIoctl), + "WSAPROTOCOL_LEN": reflect.ValueOf(constant.MakeFromLiteral("255", token.INT, 0)), + "WSARecv": reflect.ValueOf(syscall.WSARecv), + "WSARecvFrom": reflect.ValueOf(syscall.WSARecvFrom), + "WSASYS_STATUS_LEN": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "WSASend": reflect.ValueOf(syscall.WSASend), + "WSASendTo": reflect.ValueOf(syscall.WSASendTo), + "WSASendto": reflect.ValueOf(syscall.WSASendto), + "WSAStartup": reflect.ValueOf(syscall.WSAStartup), + "WaitForSingleObject": reflect.ValueOf(syscall.WaitForSingleObject), + "Write": reflect.ValueOf(syscall.Write), + "WriteConsole": reflect.ValueOf(syscall.WriteConsole), + "WriteFile": reflect.ValueOf(syscall.WriteFile), + "X509_ASN_ENCODING": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECTIONLESS": reflect.ValueOf(constant.MakeFromLiteral("1", token.INT, 0)), + "XP1_CONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("128", token.INT, 0)), + "XP1_DISCONNECT_DATA": reflect.ValueOf(constant.MakeFromLiteral("256", token.INT, 0)), + "XP1_EXPEDITED_DATA": reflect.ValueOf(constant.MakeFromLiteral("64", token.INT, 0)), + "XP1_GRACEFUL_CLOSE": reflect.ValueOf(constant.MakeFromLiteral("32", token.INT, 0)), + "XP1_GUARANTEED_DELIVERY": reflect.ValueOf(constant.MakeFromLiteral("2", token.INT, 0)), + "XP1_GUARANTEED_ORDER": reflect.ValueOf(constant.MakeFromLiteral("4", token.INT, 0)), + "XP1_IFS_HANDLES": reflect.ValueOf(constant.MakeFromLiteral("131072", token.INT, 0)), + "XP1_MESSAGE_ORIENTED": reflect.ValueOf(constant.MakeFromLiteral("8", token.INT, 0)), + "XP1_MULTIPOINT_CONTROL_PLANE": reflect.ValueOf(constant.MakeFromLiteral("2048", token.INT, 0)), + "XP1_MULTIPOINT_DATA_PLANE": reflect.ValueOf(constant.MakeFromLiteral("4096", token.INT, 0)), + "XP1_PARTIAL_MESSAGE": reflect.ValueOf(constant.MakeFromLiteral("262144", token.INT, 0)), + "XP1_PSEUDO_STREAM": reflect.ValueOf(constant.MakeFromLiteral("16", token.INT, 0)), + "XP1_QOS_SUPPORTED": reflect.ValueOf(constant.MakeFromLiteral("8192", token.INT, 0)), + "XP1_SAN_SUPPORT_SDP": reflect.ValueOf(constant.MakeFromLiteral("524288", token.INT, 0)), + "XP1_SUPPORT_BROADCAST": reflect.ValueOf(constant.MakeFromLiteral("512", token.INT, 0)), + "XP1_SUPPORT_MULTIPOINT": reflect.ValueOf(constant.MakeFromLiteral("1024", token.INT, 0)), + "XP1_UNI_RECV": reflect.ValueOf(constant.MakeFromLiteral("65536", token.INT, 0)), + "XP1_UNI_SEND": reflect.ValueOf(constant.MakeFromLiteral("32768", token.INT, 0)), + + // type definitions + "AddrinfoW": reflect.ValueOf((*syscall.AddrinfoW)(nil)), + "ByHandleFileInformation": reflect.ValueOf((*syscall.ByHandleFileInformation)(nil)), + "CertChainContext": reflect.ValueOf((*syscall.CertChainContext)(nil)), + "CertChainElement": reflect.ValueOf((*syscall.CertChainElement)(nil)), + "CertChainPara": reflect.ValueOf((*syscall.CertChainPara)(nil)), + "CertChainPolicyPara": reflect.ValueOf((*syscall.CertChainPolicyPara)(nil)), + "CertChainPolicyStatus": reflect.ValueOf((*syscall.CertChainPolicyStatus)(nil)), + "CertContext": reflect.ValueOf((*syscall.CertContext)(nil)), + "CertEnhKeyUsage": reflect.ValueOf((*syscall.CertEnhKeyUsage)(nil)), + "CertInfo": reflect.ValueOf((*syscall.CertInfo)(nil)), + "CertRevocationCrlInfo": reflect.ValueOf((*syscall.CertRevocationCrlInfo)(nil)), + "CertRevocationInfo": reflect.ValueOf((*syscall.CertRevocationInfo)(nil)), + "CertSimpleChain": reflect.ValueOf((*syscall.CertSimpleChain)(nil)), + "CertTrustListInfo": reflect.ValueOf((*syscall.CertTrustListInfo)(nil)), + "CertTrustStatus": reflect.ValueOf((*syscall.CertTrustStatus)(nil)), + "CertUsageMatch": reflect.ValueOf((*syscall.CertUsageMatch)(nil)), + "Conn": reflect.ValueOf((*syscall.Conn)(nil)), + "DLL": reflect.ValueOf((*syscall.DLL)(nil)), + "DLLError": reflect.ValueOf((*syscall.DLLError)(nil)), + "DNSMXData": reflect.ValueOf((*syscall.DNSMXData)(nil)), + "DNSPTRData": reflect.ValueOf((*syscall.DNSPTRData)(nil)), + "DNSRecord": reflect.ValueOf((*syscall.DNSRecord)(nil)), + "DNSSRVData": reflect.ValueOf((*syscall.DNSSRVData)(nil)), + "DNSTXTData": reflect.ValueOf((*syscall.DNSTXTData)(nil)), + "Errno": reflect.ValueOf((*syscall.Errno)(nil)), + "FileNotifyInformation": reflect.ValueOf((*syscall.FileNotifyInformation)(nil)), + "Filetime": reflect.ValueOf((*syscall.Filetime)(nil)), + "GUID": reflect.ValueOf((*syscall.GUID)(nil)), + "Handle": reflect.ValueOf((*syscall.Handle)(nil)), + "Hostent": reflect.ValueOf((*syscall.Hostent)(nil)), + "IPMreq": reflect.ValueOf((*syscall.IPMreq)(nil)), + "IPv6Mreq": reflect.ValueOf((*syscall.IPv6Mreq)(nil)), + "InterfaceInfo": reflect.ValueOf((*syscall.InterfaceInfo)(nil)), + "IpAdapterInfo": reflect.ValueOf((*syscall.IpAdapterInfo)(nil)), + "IpAddrString": reflect.ValueOf((*syscall.IpAddrString)(nil)), + "IpAddressString": reflect.ValueOf((*syscall.IpAddressString)(nil)), + "IpMaskString": reflect.ValueOf((*syscall.IpMaskString)(nil)), + "LazyDLL": reflect.ValueOf((*syscall.LazyDLL)(nil)), + "LazyProc": reflect.ValueOf((*syscall.LazyProc)(nil)), + "Linger": reflect.ValueOf((*syscall.Linger)(nil)), + "MibIfRow": reflect.ValueOf((*syscall.MibIfRow)(nil)), + "Overlapped": reflect.ValueOf((*syscall.Overlapped)(nil)), + "Pointer": reflect.ValueOf((*syscall.Pointer)(nil)), + "Proc": reflect.ValueOf((*syscall.Proc)(nil)), + "ProcAttr": reflect.ValueOf((*syscall.ProcAttr)(nil)), + "ProcessEntry32": reflect.ValueOf((*syscall.ProcessEntry32)(nil)), + "ProcessInformation": reflect.ValueOf((*syscall.ProcessInformation)(nil)), + "Protoent": reflect.ValueOf((*syscall.Protoent)(nil)), + "RawConn": reflect.ValueOf((*syscall.RawConn)(nil)), + "RawSockaddr": reflect.ValueOf((*syscall.RawSockaddr)(nil)), + "RawSockaddrAny": reflect.ValueOf((*syscall.RawSockaddrAny)(nil)), + "RawSockaddrInet4": reflect.ValueOf((*syscall.RawSockaddrInet4)(nil)), + "RawSockaddrInet6": reflect.ValueOf((*syscall.RawSockaddrInet6)(nil)), + "RawSockaddrUnix": reflect.ValueOf((*syscall.RawSockaddrUnix)(nil)), + "Rusage": reflect.ValueOf((*syscall.Rusage)(nil)), + "SID": reflect.ValueOf((*syscall.SID)(nil)), + "SIDAndAttributes": reflect.ValueOf((*syscall.SIDAndAttributes)(nil)), + "SSLExtraCertChainPolicyPara": reflect.ValueOf((*syscall.SSLExtraCertChainPolicyPara)(nil)), + "SecurityAttributes": reflect.ValueOf((*syscall.SecurityAttributes)(nil)), + "Servent": reflect.ValueOf((*syscall.Servent)(nil)), + "Signal": reflect.ValueOf((*syscall.Signal)(nil)), + "Sockaddr": reflect.ValueOf((*syscall.Sockaddr)(nil)), + "SockaddrGen": reflect.ValueOf((*syscall.SockaddrGen)(nil)), + "SockaddrInet4": reflect.ValueOf((*syscall.SockaddrInet4)(nil)), + "SockaddrInet6": reflect.ValueOf((*syscall.SockaddrInet6)(nil)), + "SockaddrUnix": reflect.ValueOf((*syscall.SockaddrUnix)(nil)), + "StartupInfo": reflect.ValueOf((*syscall.StartupInfo)(nil)), + "SysProcAttr": reflect.ValueOf((*syscall.SysProcAttr)(nil)), + "Systemtime": reflect.ValueOf((*syscall.Systemtime)(nil)), + "TCPKeepalive": reflect.ValueOf((*syscall.TCPKeepalive)(nil)), + "Timespec": reflect.ValueOf((*syscall.Timespec)(nil)), + "Timeval": reflect.ValueOf((*syscall.Timeval)(nil)), + "Timezoneinformation": reflect.ValueOf((*syscall.Timezoneinformation)(nil)), + "Token": reflect.ValueOf((*syscall.Token)(nil)), + "Tokenprimarygroup": reflect.ValueOf((*syscall.Tokenprimarygroup)(nil)), + "Tokenuser": reflect.ValueOf((*syscall.Tokenuser)(nil)), + "TransmitFileBuffers": reflect.ValueOf((*syscall.TransmitFileBuffers)(nil)), + "UserInfo10": reflect.ValueOf((*syscall.UserInfo10)(nil)), + "WSABuf": reflect.ValueOf((*syscall.WSABuf)(nil)), + "WSAData": reflect.ValueOf((*syscall.WSAData)(nil)), + "WSAProtocolChain": reflect.ValueOf((*syscall.WSAProtocolChain)(nil)), + "WSAProtocolInfo": reflect.ValueOf((*syscall.WSAProtocolInfo)(nil)), + "WaitStatus": reflect.ValueOf((*syscall.WaitStatus)(nil)), + "Win32FileAttributeData": reflect.ValueOf((*syscall.Win32FileAttributeData)(nil)), + "Win32finddata": reflect.ValueOf((*syscall.Win32finddata)(nil)), + + // interface wrapper definitions + "_Conn": reflect.ValueOf((*_syscall_Conn)(nil)), + "_RawConn": reflect.ValueOf((*_syscall_RawConn)(nil)), + "_Sockaddr": reflect.ValueOf((*_syscall_Sockaddr)(nil)), + } +} + +// _syscall_Conn is an interface wrapper for Conn type +type _syscall_Conn struct { + IValue interface{} + WSyscallConn func() (syscall.RawConn, error) +} + +func (W _syscall_Conn) SyscallConn() (syscall.RawConn, error) { + return W.WSyscallConn() +} + +// _syscall_RawConn is an interface wrapper for RawConn type +type _syscall_RawConn struct { + IValue interface{} + WControl func(f func(fd uintptr)) error + WRead func(f func(fd uintptr) (done bool)) error + WWrite func(f func(fd uintptr) (done bool)) error +} + +func (W _syscall_RawConn) Control(f func(fd uintptr)) error { + return W.WControl(f) +} +func (W _syscall_RawConn) Read(f func(fd uintptr) (done bool)) error { + return W.WRead(f) +} +func (W _syscall_RawConn) Write(f func(fd uintptr) (done bool)) error { + return W.WWrite(f) +} + +// _syscall_Sockaddr is an interface wrapper for Sockaddr type +type _syscall_Sockaddr struct { + IValue interface{} +} diff --git a/stdlib/syscall/syscall.go b/stdlib/syscall/syscall.go index bb0efd13a..2b8f861e9 100644 --- a/stdlib/syscall/syscall.go +++ b/stdlib/syscall/syscall.go @@ -1,5 +1,5 @@ -//go:build go1.16 -// +build go1.16 +//go:build go1.18 +// +build go1.18 // Package syscall provide wrapper of standard library syscall package for native import in Yaegi. package syscall diff --git a/stdlib/unrestricted/go1_16_syscall_aix_ppc64.go b/stdlib/unrestricted/go1_16_syscall_aix_ppc64.go deleted file mode 100644 index d4ea0f393..000000000 --- a/stdlib/unrestricted/go1_16_syscall_aix_ppc64.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_android_386.go b/stdlib/unrestricted/go1_16_syscall_android_386.go deleted file mode 100644 index 698eedd24..000000000 --- a/stdlib/unrestricted/go1_16_syscall_android_386.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_android_amd64.go b/stdlib/unrestricted/go1_16_syscall_android_amd64.go deleted file mode 100644 index 698eedd24..000000000 --- a/stdlib/unrestricted/go1_16_syscall_android_amd64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_android_arm.go b/stdlib/unrestricted/go1_16_syscall_android_arm.go deleted file mode 100644 index 698eedd24..000000000 --- a/stdlib/unrestricted/go1_16_syscall_android_arm.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_android_arm64.go b/stdlib/unrestricted/go1_16_syscall_android_arm64.go deleted file mode 100644 index 698eedd24..000000000 --- a/stdlib/unrestricted/go1_16_syscall_android_arm64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_darwin_amd64.go b/stdlib/unrestricted/go1_16_syscall_darwin_amd64.go deleted file mode 100644 index 5fe6dc145..000000000 --- a/stdlib/unrestricted/go1_16_syscall_darwin_amd64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_darwin_arm64.go b/stdlib/unrestricted/go1_16_syscall_darwin_arm64.go deleted file mode 100644 index 5fe6dc145..000000000 --- a/stdlib/unrestricted/go1_16_syscall_darwin_arm64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_dragonfly_amd64.go b/stdlib/unrestricted/go1_16_syscall_dragonfly_amd64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_dragonfly_amd64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_freebsd_386.go b/stdlib/unrestricted/go1_16_syscall_freebsd_386.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_freebsd_386.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_freebsd_amd64.go b/stdlib/unrestricted/go1_16_syscall_freebsd_amd64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_freebsd_amd64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_freebsd_arm.go b/stdlib/unrestricted/go1_16_syscall_freebsd_arm.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_freebsd_arm.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_freebsd_arm64.go b/stdlib/unrestricted/go1_16_syscall_freebsd_arm64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_freebsd_arm64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_illumos_amd64.go b/stdlib/unrestricted/go1_16_syscall_illumos_amd64.go deleted file mode 100644 index 2445857d3..000000000 --- a/stdlib/unrestricted/go1_16_syscall_illumos_amd64.go +++ /dev/null @@ -1,26 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17,!solaris - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_ios_amd64.go b/stdlib/unrestricted/go1_16_syscall_ios_amd64.go deleted file mode 100644 index 5fe6dc145..000000000 --- a/stdlib/unrestricted/go1_16_syscall_ios_amd64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_ios_arm64.go b/stdlib/unrestricted/go1_16_syscall_ios_arm64.go deleted file mode 100644 index 5fe6dc145..000000000 --- a/stdlib/unrestricted/go1_16_syscall_ios_arm64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_js_wasm.go b/stdlib/unrestricted/go1_16_syscall_js_wasm.go deleted file mode 100644 index 3b5a7cd5b..000000000 --- a/stdlib/unrestricted/go1_16_syscall_js_wasm.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exit": reflect.ValueOf(syscall.Exit), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_386.go b/stdlib/unrestricted/go1_16_syscall_linux_386.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_386.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_amd64.go b/stdlib/unrestricted/go1_16_syscall_linux_amd64.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_amd64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_arm.go b/stdlib/unrestricted/go1_16_syscall_linux_arm.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_arm.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_arm64.go b/stdlib/unrestricted/go1_16_syscall_linux_arm64.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_arm64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_mips.go b/stdlib/unrestricted/go1_16_syscall_linux_mips.go deleted file mode 100644 index 0f8461d7d..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_mips.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_mips64.go b/stdlib/unrestricted/go1_16_syscall_linux_mips64.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_mips64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_mips64le.go b/stdlib/unrestricted/go1_16_syscall_linux_mips64le.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_mips64le.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_mipsle.go b/stdlib/unrestricted/go1_16_syscall_linux_mipsle.go deleted file mode 100644 index 0f8461d7d..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_mipsle.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_ppc64.go b/stdlib/unrestricted/go1_16_syscall_linux_ppc64.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_ppc64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_ppc64le.go b/stdlib/unrestricted/go1_16_syscall_linux_ppc64le.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_ppc64le.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_riscv64.go b/stdlib/unrestricted/go1_16_syscall_linux_riscv64.go deleted file mode 100644 index 20ebcf0bf..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_riscv64.go +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_linux_s390x.go b/stdlib/unrestricted/go1_16_syscall_linux_s390x.go deleted file mode 100644 index 3a4683dd8..000000000 --- a/stdlib/unrestricted/go1_16_syscall_linux_s390x.go +++ /dev/null @@ -1,48 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceFpregs": reflect.ValueOf((*syscall.PtraceFpregs)(nil)), - "PtracePer": reflect.ValueOf((*syscall.PtracePer)(nil)), - "PtracePsw": reflect.ValueOf((*syscall.PtracePsw)(nil)), - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_netbsd_386.go b/stdlib/unrestricted/go1_16_syscall_netbsd_386.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_netbsd_386.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_netbsd_amd64.go b/stdlib/unrestricted/go1_16_syscall_netbsd_amd64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_netbsd_amd64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_netbsd_arm.go b/stdlib/unrestricted/go1_16_syscall_netbsd_arm.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_netbsd_arm.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_netbsd_arm64.go b/stdlib/unrestricted/go1_16_syscall_netbsd_arm64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_netbsd_arm64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_openbsd_386.go b/stdlib/unrestricted/go1_16_syscall_openbsd_386.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_openbsd_386.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_openbsd_amd64.go b/stdlib/unrestricted/go1_16_syscall_openbsd_amd64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_openbsd_amd64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_openbsd_arm.go b/stdlib/unrestricted/go1_16_syscall_openbsd_arm.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_openbsd_arm.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_openbsd_arm64.go b/stdlib/unrestricted/go1_16_syscall_openbsd_arm64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_openbsd_arm64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_openbsd_mips64.go b/stdlib/unrestricted/go1_16_syscall_openbsd_mips64.go deleted file mode 100644 index 9a8a886cd..000000000 --- a/stdlib/unrestricted/go1_16_syscall_openbsd_mips64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_plan9_386.go b/stdlib/unrestricted/go1_16_syscall_plan9_386.go deleted file mode 100644 index 6c328454a..000000000 --- a/stdlib/unrestricted/go1_16_syscall_plan9_386.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_plan9_amd64.go b/stdlib/unrestricted/go1_16_syscall_plan9_amd64.go deleted file mode 100644 index 6c328454a..000000000 --- a/stdlib/unrestricted/go1_16_syscall_plan9_amd64.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_plan9_arm.go b/stdlib/unrestricted/go1_16_syscall_plan9_arm.go deleted file mode 100644 index 6c328454a..000000000 --- a/stdlib/unrestricted/go1_16_syscall_plan9_arm.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_solaris_amd64.go b/stdlib/unrestricted/go1_16_syscall_solaris_amd64.go deleted file mode 100644 index 1477b7a8d..000000000 --- a/stdlib/unrestricted/go1_16_syscall_solaris_amd64.go +++ /dev/null @@ -1,24 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_windows_386.go b/stdlib/unrestricted/go1_16_syscall_windows_386.go deleted file mode 100644 index 87b7ad8fe..000000000 --- a/stdlib/unrestricted/go1_16_syscall_windows_386.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_windows_amd64.go b/stdlib/unrestricted/go1_16_syscall_windows_amd64.go deleted file mode 100644 index 87b7ad8fe..000000000 --- a/stdlib/unrestricted/go1_16_syscall_windows_amd64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_16_syscall_windows_arm.go b/stdlib/unrestricted/go1_16_syscall_windows_arm.go deleted file mode 100644 index 87b7ad8fe..000000000 --- a/stdlib/unrestricted/go1_16_syscall_windows_arm.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_aix_ppc64.go b/stdlib/unrestricted/go1_17_syscall_aix_ppc64.go deleted file mode 100644 index fe63eea29..000000000 --- a/stdlib/unrestricted/go1_17_syscall_aix_ppc64.go +++ /dev/null @@ -1,36 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_android_386.go b/stdlib/unrestricted/go1_17_syscall_android_386.go deleted file mode 100644 index fb5e485f1..000000000 --- a/stdlib/unrestricted/go1_17_syscall_android_386.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_android_amd64.go b/stdlib/unrestricted/go1_17_syscall_android_amd64.go deleted file mode 100644 index fb5e485f1..000000000 --- a/stdlib/unrestricted/go1_17_syscall_android_amd64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_android_arm.go b/stdlib/unrestricted/go1_17_syscall_android_arm.go deleted file mode 100644 index fb5e485f1..000000000 --- a/stdlib/unrestricted/go1_17_syscall_android_arm.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_android_arm64.go b/stdlib/unrestricted/go1_17_syscall_android_arm64.go deleted file mode 100644 index fb5e485f1..000000000 --- a/stdlib/unrestricted/go1_17_syscall_android_arm64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !linux -// +build go1.17,!linux - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_darwin_amd64.go b/stdlib/unrestricted/go1_17_syscall_darwin_amd64.go deleted file mode 100644 index a15e63ce7..000000000 --- a/stdlib/unrestricted/go1_17_syscall_darwin_amd64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_darwin_arm64.go b/stdlib/unrestricted/go1_17_syscall_darwin_arm64.go deleted file mode 100644 index a15e63ce7..000000000 --- a/stdlib/unrestricted/go1_17_syscall_darwin_arm64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_dragonfly_amd64.go b/stdlib/unrestricted/go1_17_syscall_dragonfly_amd64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_dragonfly_amd64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_freebsd_386.go b/stdlib/unrestricted/go1_17_syscall_freebsd_386.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_freebsd_386.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_freebsd_amd64.go b/stdlib/unrestricted/go1_17_syscall_freebsd_amd64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_freebsd_amd64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_freebsd_arm.go b/stdlib/unrestricted/go1_17_syscall_freebsd_arm.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_freebsd_arm.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_freebsd_arm64.go b/stdlib/unrestricted/go1_17_syscall_freebsd_arm64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_freebsd_arm64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_illumos_amd64.go b/stdlib/unrestricted/go1_17_syscall_illumos_amd64.go deleted file mode 100644 index 34b480c73..000000000 --- a/stdlib/unrestricted/go1_17_syscall_illumos_amd64.go +++ /dev/null @@ -1,27 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 && !solaris -// +build go1.17,!solaris - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_ios_amd64.go b/stdlib/unrestricted/go1_17_syscall_ios_amd64.go deleted file mode 100644 index a15e63ce7..000000000 --- a/stdlib/unrestricted/go1_17_syscall_ios_amd64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_ios_arm64.go b/stdlib/unrestricted/go1_17_syscall_ios_arm64.go deleted file mode 100644 index a15e63ce7..000000000 --- a/stdlib/unrestricted/go1_17_syscall_ios_arm64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_js_wasm.go b/stdlib/unrestricted/go1_17_syscall_js_wasm.go deleted file mode 100644 index bae2a1836..000000000 --- a/stdlib/unrestricted/go1_17_syscall_js_wasm.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exit": reflect.ValueOf(syscall.Exit), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_386.go b/stdlib/unrestricted/go1_17_syscall_linux_386.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_386.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_amd64.go b/stdlib/unrestricted/go1_17_syscall_linux_amd64.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_amd64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_arm.go b/stdlib/unrestricted/go1_17_syscall_linux_arm.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_arm.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_arm64.go b/stdlib/unrestricted/go1_17_syscall_linux_arm64.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_arm64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_mips.go b/stdlib/unrestricted/go1_17_syscall_linux_mips.go deleted file mode 100644 index e38f6a394..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_mips.go +++ /dev/null @@ -1,47 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_mips64.go b/stdlib/unrestricted/go1_17_syscall_linux_mips64.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_mips64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_mips64le.go b/stdlib/unrestricted/go1_17_syscall_linux_mips64le.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_mips64le.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_mipsle.go b/stdlib/unrestricted/go1_17_syscall_linux_mipsle.go deleted file mode 100644 index e38f6a394..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_mipsle.go +++ /dev/null @@ -1,47 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_ppc64.go b/stdlib/unrestricted/go1_17_syscall_linux_ppc64.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_ppc64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_ppc64le.go b/stdlib/unrestricted/go1_17_syscall_linux_ppc64le.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_ppc64le.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_riscv64.go b/stdlib/unrestricted/go1_17_syscall_linux_riscv64.go deleted file mode 100644 index b37a1f44b..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_riscv64.go +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_linux_s390x.go b/stdlib/unrestricted/go1_17_syscall_linux_s390x.go deleted file mode 100644 index 9d5056578..000000000 --- a/stdlib/unrestricted/go1_17_syscall_linux_s390x.go +++ /dev/null @@ -1,49 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), - "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), - "PtraceCont": reflect.ValueOf(syscall.PtraceCont), - "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), - "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), - "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), - "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), - "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), - "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), - "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), - "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), - "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), - "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), - "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Reboot": reflect.ValueOf(syscall.Reboot), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - - // type definitions - "PtraceFpregs": reflect.ValueOf((*syscall.PtraceFpregs)(nil)), - "PtracePer": reflect.ValueOf((*syscall.PtracePer)(nil)), - "PtracePsw": reflect.ValueOf((*syscall.PtracePsw)(nil)), - "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_netbsd_386.go b/stdlib/unrestricted/go1_17_syscall_netbsd_386.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_netbsd_386.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_netbsd_amd64.go b/stdlib/unrestricted/go1_17_syscall_netbsd_amd64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_netbsd_amd64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_netbsd_arm.go b/stdlib/unrestricted/go1_17_syscall_netbsd_arm.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_netbsd_arm.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_netbsd_arm64.go b/stdlib/unrestricted/go1_17_syscall_netbsd_arm64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_netbsd_arm64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_openbsd_386.go b/stdlib/unrestricted/go1_17_syscall_openbsd_386.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_openbsd_386.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_openbsd_amd64.go b/stdlib/unrestricted/go1_17_syscall_openbsd_amd64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_openbsd_amd64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_openbsd_arm.go b/stdlib/unrestricted/go1_17_syscall_openbsd_arm.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_openbsd_arm.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_openbsd_arm64.go b/stdlib/unrestricted/go1_17_syscall_openbsd_arm64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_openbsd_arm64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_openbsd_mips64.go b/stdlib/unrestricted/go1_17_syscall_openbsd_mips64.go deleted file mode 100644 index 7b1516e6f..000000000 --- a/stdlib/unrestricted/go1_17_syscall_openbsd_mips64.go +++ /dev/null @@ -1,28 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_plan9_386.go b/stdlib/unrestricted/go1_17_syscall_plan9_386.go deleted file mode 100644 index 40a6114f6..000000000 --- a/stdlib/unrestricted/go1_17_syscall_plan9_386.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_plan9_amd64.go b/stdlib/unrestricted/go1_17_syscall_plan9_amd64.go deleted file mode 100644 index 40a6114f6..000000000 --- a/stdlib/unrestricted/go1_17_syscall_plan9_amd64.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_plan9_arm.go b/stdlib/unrestricted/go1_17_syscall_plan9_arm.go deleted file mode 100644 index 40a6114f6..000000000 --- a/stdlib/unrestricted/go1_17_syscall_plan9_arm.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_solaris_amd64.go b/stdlib/unrestricted/go1_17_syscall_solaris_amd64.go deleted file mode 100644 index f3833042a..000000000 --- a/stdlib/unrestricted/go1_17_syscall_solaris_amd64.go +++ /dev/null @@ -1,25 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ForkExec": reflect.ValueOf(syscall.ForkExec), - "Kill": reflect.ValueOf(syscall.Kill), - "RawSyscall": reflect.ValueOf(syscall.RawSyscall), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_windows_386.go b/stdlib/unrestricted/go1_17_syscall_windows_386.go deleted file mode 100644 index acb4ecd71..000000000 --- a/stdlib/unrestricted/go1_17_syscall_windows_386.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_windows_amd64.go b/stdlib/unrestricted/go1_17_syscall_windows_amd64.go deleted file mode 100644 index acb4ecd71..000000000 --- a/stdlib/unrestricted/go1_17_syscall_windows_amd64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_windows_arm.go b/stdlib/unrestricted/go1_17_syscall_windows_arm.go deleted file mode 100644 index acb4ecd71..000000000 --- a/stdlib/unrestricted/go1_17_syscall_windows_arm.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_17_syscall_windows_arm64.go b/stdlib/unrestricted/go1_17_syscall_windows_arm64.go deleted file mode 100644 index acb4ecd71..000000000 --- a/stdlib/unrestricted/go1_17_syscall_windows_arm64.go +++ /dev/null @@ -1,29 +0,0 @@ -// Code generated by 'yaegi extract syscall'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unrestricted - -import ( - "reflect" - "syscall" -) - -func init() { - Symbols["syscall/syscall"] = map[string]reflect.Value{ - // function, constant and variable definitions - "Exec": reflect.ValueOf(syscall.Exec), - "Exit": reflect.ValueOf(syscall.Exit), - "ExitProcess": reflect.ValueOf(syscall.ExitProcess), - "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), - "Shutdown": reflect.ValueOf(syscall.Shutdown), - "StartProcess": reflect.ValueOf(syscall.StartProcess), - "Syscall": reflect.ValueOf(syscall.Syscall), - "Syscall12": reflect.ValueOf(syscall.Syscall12), - "Syscall15": reflect.ValueOf(syscall.Syscall15), - "Syscall18": reflect.ValueOf(syscall.Syscall18), - "Syscall6": reflect.ValueOf(syscall.Syscall6), - "Syscall9": reflect.ValueOf(syscall.Syscall9), - } -} diff --git a/stdlib/unrestricted/go1_18_syscall_aix_ppc64.go b/stdlib/unrestricted/go1_18_syscall_aix_ppc64.go new file mode 100644 index 000000000..8a2133495 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_aix_ppc64.go @@ -0,0 +1,36 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_android_386.go b/stdlib/unrestricted/go1_18_syscall_android_386.go new file mode 100644 index 000000000..8122ee841 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_android_386.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_android_amd64.go b/stdlib/unrestricted/go1_18_syscall_android_amd64.go new file mode 100644 index 000000000..8122ee841 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_android_amd64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_android_arm.go b/stdlib/unrestricted/go1_18_syscall_android_arm.go new file mode 100644 index 000000000..8122ee841 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_android_arm.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_android_arm64.go b/stdlib/unrestricted/go1_18_syscall_android_arm64.go new file mode 100644 index 000000000..8122ee841 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_android_arm64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !linux +// +build go1.18,!go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_darwin_amd64.go b/stdlib/unrestricted/go1_18_syscall_darwin_amd64.go new file mode 100644 index 000000000..52af067f4 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_darwin_amd64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_darwin_arm64.go b/stdlib/unrestricted/go1_18_syscall_darwin_arm64.go new file mode 100644 index 000000000..52af067f4 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_darwin_arm64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_dragonfly_amd64.go b/stdlib/unrestricted/go1_18_syscall_dragonfly_amd64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_dragonfly_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_freebsd_386.go b/stdlib/unrestricted/go1_18_syscall_freebsd_386.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_freebsd_386.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_freebsd_amd64.go b/stdlib/unrestricted/go1_18_syscall_freebsd_amd64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_freebsd_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_freebsd_arm.go b/stdlib/unrestricted/go1_18_syscall_freebsd_arm.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_freebsd_arm.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_freebsd_arm64.go b/stdlib/unrestricted/go1_18_syscall_freebsd_arm64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_freebsd_arm64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_illumos_amd64.go b/stdlib/unrestricted/go1_18_syscall_illumos_amd64.go new file mode 100644 index 000000000..dfda8986a --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_illumos_amd64.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 && !solaris +// +build go1.18,!go1.19,!solaris + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_ios_amd64.go b/stdlib/unrestricted/go1_18_syscall_ios_amd64.go new file mode 100644 index 000000000..52af067f4 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_ios_amd64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_ios_arm64.go b/stdlib/unrestricted/go1_18_syscall_ios_arm64.go new file mode 100644 index 000000000..52af067f4 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_ios_arm64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_js_wasm.go b/stdlib/unrestricted/go1_18_syscall_js_wasm.go new file mode 100644 index 000000000..96574b654 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_js_wasm.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exit": reflect.ValueOf(syscall.Exit), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_386.go b/stdlib/unrestricted/go1_18_syscall_linux_386.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_386.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_amd64.go b/stdlib/unrestricted/go1_18_syscall_linux_amd64.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_amd64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_arm.go b/stdlib/unrestricted/go1_18_syscall_linux_arm.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_arm.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_arm64.go b/stdlib/unrestricted/go1_18_syscall_linux_arm64.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_arm64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_mips.go b/stdlib/unrestricted/go1_18_syscall_linux_mips.go new file mode 100644 index 000000000..6cfe7eb04 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_mips.go @@ -0,0 +1,47 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_mips64.go b/stdlib/unrestricted/go1_18_syscall_linux_mips64.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_mips64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_mips64le.go b/stdlib/unrestricted/go1_18_syscall_linux_mips64le.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_mips64le.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_mipsle.go b/stdlib/unrestricted/go1_18_syscall_linux_mipsle.go new file mode 100644 index 000000000..6cfe7eb04 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_mipsle.go @@ -0,0 +1,47 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_ppc64.go b/stdlib/unrestricted/go1_18_syscall_linux_ppc64.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_ppc64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_ppc64le.go b/stdlib/unrestricted/go1_18_syscall_linux_ppc64le.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_ppc64le.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_riscv64.go b/stdlib/unrestricted/go1_18_syscall_linux_riscv64.go new file mode 100644 index 000000000..f5f5552a1 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_riscv64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_linux_s390x.go b/stdlib/unrestricted/go1_18_syscall_linux_s390x.go new file mode 100644 index 000000000..e459d6814 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_linux_s390x.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceFpregs": reflect.ValueOf((*syscall.PtraceFpregs)(nil)), + "PtracePer": reflect.ValueOf((*syscall.PtracePer)(nil)), + "PtracePsw": reflect.ValueOf((*syscall.PtracePsw)(nil)), + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_netbsd_386.go b/stdlib/unrestricted/go1_18_syscall_netbsd_386.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_netbsd_386.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_netbsd_amd64.go b/stdlib/unrestricted/go1_18_syscall_netbsd_amd64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_netbsd_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_netbsd_arm.go b/stdlib/unrestricted/go1_18_syscall_netbsd_arm.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_netbsd_arm.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_netbsd_arm64.go b/stdlib/unrestricted/go1_18_syscall_netbsd_arm64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_netbsd_arm64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_openbsd_386.go b/stdlib/unrestricted/go1_18_syscall_openbsd_386.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_openbsd_386.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_openbsd_amd64.go b/stdlib/unrestricted/go1_18_syscall_openbsd_amd64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_openbsd_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_openbsd_arm.go b/stdlib/unrestricted/go1_18_syscall_openbsd_arm.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_openbsd_arm.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_openbsd_arm64.go b/stdlib/unrestricted/go1_18_syscall_openbsd_arm64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_openbsd_arm64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_openbsd_mips64.go b/stdlib/unrestricted/go1_18_syscall_openbsd_mips64.go new file mode 100644 index 000000000..5d25de929 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_openbsd_mips64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_plan9_386.go b/stdlib/unrestricted/go1_18_syscall_plan9_386.go new file mode 100644 index 000000000..4c92251a8 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_plan9_386.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_plan9_amd64.go b/stdlib/unrestricted/go1_18_syscall_plan9_amd64.go new file mode 100644 index 000000000..4c92251a8 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_plan9_amd64.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_plan9_arm.go b/stdlib/unrestricted/go1_18_syscall_plan9_arm.go new file mode 100644 index 000000000..4c92251a8 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_plan9_arm.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_solaris_amd64.go b/stdlib/unrestricted/go1_18_syscall_solaris_amd64.go new file mode 100644 index 000000000..d2d63a603 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_solaris_amd64.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_windows_386.go b/stdlib/unrestricted/go1_18_syscall_windows_386.go new file mode 100644 index 000000000..5e4880e08 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_windows_386.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_windows_amd64.go b/stdlib/unrestricted/go1_18_syscall_windows_amd64.go new file mode 100644 index 000000000..5e4880e08 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_windows_amd64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_windows_arm.go b/stdlib/unrestricted/go1_18_syscall_windows_arm.go new file mode 100644 index 000000000..5e4880e08 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_windows_arm.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_18_syscall_windows_arm64.go b/stdlib/unrestricted/go1_18_syscall_windows_arm64.go new file mode 100644 index 000000000..5e4880e08 --- /dev/null +++ b/stdlib/unrestricted/go1_18_syscall_windows_arm64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_aix_ppc64.go b/stdlib/unrestricted/go1_19_syscall_aix_ppc64.go new file mode 100644 index 000000000..bd567b99e --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_aix_ppc64.go @@ -0,0 +1,36 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_android_386.go b/stdlib/unrestricted/go1_19_syscall_android_386.go new file mode 100644 index 000000000..02ed36c13 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_android_386.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_android_amd64.go b/stdlib/unrestricted/go1_19_syscall_android_amd64.go new file mode 100644 index 000000000..02ed36c13 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_android_amd64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_android_arm.go b/stdlib/unrestricted/go1_19_syscall_android_arm.go new file mode 100644 index 000000000..02ed36c13 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_android_arm.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_android_arm64.go b/stdlib/unrestricted/go1_19_syscall_android_arm64.go new file mode 100644 index 000000000..02ed36c13 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_android_arm64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !linux +// +build go1.19,!linux + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_darwin_amd64.go b/stdlib/unrestricted/go1_19_syscall_darwin_amd64.go new file mode 100644 index 000000000..bea5bd3d0 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_darwin_amd64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_darwin_arm64.go b/stdlib/unrestricted/go1_19_syscall_darwin_arm64.go new file mode 100644 index 000000000..bea5bd3d0 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_darwin_arm64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_dragonfly_amd64.go b/stdlib/unrestricted/go1_19_syscall_dragonfly_amd64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_dragonfly_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_freebsd_386.go b/stdlib/unrestricted/go1_19_syscall_freebsd_386.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_freebsd_386.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_freebsd_amd64.go b/stdlib/unrestricted/go1_19_syscall_freebsd_amd64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_freebsd_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_freebsd_arm.go b/stdlib/unrestricted/go1_19_syscall_freebsd_arm.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_freebsd_arm.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_freebsd_arm64.go b/stdlib/unrestricted/go1_19_syscall_freebsd_arm64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_freebsd_arm64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_illumos_amd64.go b/stdlib/unrestricted/go1_19_syscall_illumos_amd64.go new file mode 100644 index 000000000..d37e39b56 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_illumos_amd64.go @@ -0,0 +1,27 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 && !solaris +// +build go1.19,!solaris + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_ios_amd64.go b/stdlib/unrestricted/go1_19_syscall_ios_amd64.go new file mode 100644 index 000000000..bea5bd3d0 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_ios_amd64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_ios_arm64.go b/stdlib/unrestricted/go1_19_syscall_ios_arm64.go new file mode 100644 index 000000000..bea5bd3d0 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_ios_arm64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_js_wasm.go b/stdlib/unrestricted/go1_19_syscall_js_wasm.go new file mode 100644 index 000000000..e879a2827 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_js_wasm.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exit": reflect.ValueOf(syscall.Exit), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_386.go b/stdlib/unrestricted/go1_19_syscall_linux_386.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_386.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_amd64.go b/stdlib/unrestricted/go1_19_syscall_linux_amd64.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_amd64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_arm.go b/stdlib/unrestricted/go1_19_syscall_linux_arm.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_arm.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_arm64.go b/stdlib/unrestricted/go1_19_syscall_linux_arm64.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_arm64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_loong64.go b/stdlib/unrestricted/go1_19_syscall_linux_loong64.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_loong64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_mips.go b/stdlib/unrestricted/go1_19_syscall_linux_mips.go new file mode 100644 index 000000000..10bf6f47f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_mips.go @@ -0,0 +1,47 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_mips64.go b/stdlib/unrestricted/go1_19_syscall_linux_mips64.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_mips64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_mips64le.go b/stdlib/unrestricted/go1_19_syscall_linux_mips64le.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_mips64le.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_mipsle.go b/stdlib/unrestricted/go1_19_syscall_linux_mipsle.go new file mode 100644 index 000000000..10bf6f47f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_mipsle.go @@ -0,0 +1,47 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_ppc64.go b/stdlib/unrestricted/go1_19_syscall_linux_ppc64.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_ppc64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_ppc64le.go b/stdlib/unrestricted/go1_19_syscall_linux_ppc64le.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_ppc64le.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_riscv64.go b/stdlib/unrestricted/go1_19_syscall_linux_riscv64.go new file mode 100644 index 000000000..ae490a7ca --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_riscv64.go @@ -0,0 +1,46 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_linux_s390x.go b/stdlib/unrestricted/go1_19_syscall_linux_s390x.go new file mode 100644 index 000000000..e721fed0d --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_linux_s390x.go @@ -0,0 +1,49 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "AllThreadsSyscall": reflect.ValueOf(syscall.AllThreadsSyscall), + "AllThreadsSyscall6": reflect.ValueOf(syscall.AllThreadsSyscall6), + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "PtraceAttach": reflect.ValueOf(syscall.PtraceAttach), + "PtraceCont": reflect.ValueOf(syscall.PtraceCont), + "PtraceDetach": reflect.ValueOf(syscall.PtraceDetach), + "PtraceGetEventMsg": reflect.ValueOf(syscall.PtraceGetEventMsg), + "PtraceGetRegs": reflect.ValueOf(syscall.PtraceGetRegs), + "PtracePeekData": reflect.ValueOf(syscall.PtracePeekData), + "PtracePeekText": reflect.ValueOf(syscall.PtracePeekText), + "PtracePokeData": reflect.ValueOf(syscall.PtracePokeData), + "PtracePokeText": reflect.ValueOf(syscall.PtracePokeText), + "PtraceSetOptions": reflect.ValueOf(syscall.PtraceSetOptions), + "PtraceSetRegs": reflect.ValueOf(syscall.PtraceSetRegs), + "PtraceSingleStep": reflect.ValueOf(syscall.PtraceSingleStep), + "PtraceSyscall": reflect.ValueOf(syscall.PtraceSyscall), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Reboot": reflect.ValueOf(syscall.Reboot), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + + // type definitions + "PtraceFpregs": reflect.ValueOf((*syscall.PtraceFpregs)(nil)), + "PtracePer": reflect.ValueOf((*syscall.PtracePer)(nil)), + "PtracePsw": reflect.ValueOf((*syscall.PtracePsw)(nil)), + "PtraceRegs": reflect.ValueOf((*syscall.PtraceRegs)(nil)), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_netbsd_386.go b/stdlib/unrestricted/go1_19_syscall_netbsd_386.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_netbsd_386.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_netbsd_amd64.go b/stdlib/unrestricted/go1_19_syscall_netbsd_amd64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_netbsd_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_netbsd_arm.go b/stdlib/unrestricted/go1_19_syscall_netbsd_arm.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_netbsd_arm.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_netbsd_arm64.go b/stdlib/unrestricted/go1_19_syscall_netbsd_arm64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_netbsd_arm64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_openbsd_386.go b/stdlib/unrestricted/go1_19_syscall_openbsd_386.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_openbsd_386.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_openbsd_amd64.go b/stdlib/unrestricted/go1_19_syscall_openbsd_amd64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_openbsd_amd64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_openbsd_arm.go b/stdlib/unrestricted/go1_19_syscall_openbsd_arm.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_openbsd_arm.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_openbsd_arm64.go b/stdlib/unrestricted/go1_19_syscall_openbsd_arm64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_openbsd_arm64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_openbsd_mips64.go b/stdlib/unrestricted/go1_19_syscall_openbsd_mips64.go new file mode 100644 index 000000000..43055f95f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_openbsd_mips64.go @@ -0,0 +1,28 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_plan9_386.go b/stdlib/unrestricted/go1_19_syscall_plan9_386.go new file mode 100644 index 000000000..37f9217cd --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_plan9_386.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_plan9_amd64.go b/stdlib/unrestricted/go1_19_syscall_plan9_amd64.go new file mode 100644 index 000000000..37f9217cd --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_plan9_amd64.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_plan9_arm.go b/stdlib/unrestricted/go1_19_syscall_plan9_arm.go new file mode 100644 index 000000000..37f9217cd --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_plan9_arm.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "RawSyscall6": reflect.ValueOf(syscall.RawSyscall6), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_solaris_amd64.go b/stdlib/unrestricted/go1_19_syscall_solaris_amd64.go new file mode 100644 index 000000000..281104f3f --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_solaris_amd64.go @@ -0,0 +1,25 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ForkExec": reflect.ValueOf(syscall.ForkExec), + "Kill": reflect.ValueOf(syscall.Kill), + "RawSyscall": reflect.ValueOf(syscall.RawSyscall), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_windows_386.go b/stdlib/unrestricted/go1_19_syscall_windows_386.go new file mode 100644 index 000000000..1ff068137 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_windows_386.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_windows_amd64.go b/stdlib/unrestricted/go1_19_syscall_windows_amd64.go new file mode 100644 index 000000000..1ff068137 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_windows_amd64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_windows_arm.go b/stdlib/unrestricted/go1_19_syscall_windows_arm.go new file mode 100644 index 000000000..1ff068137 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_windows_arm.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unrestricted/go1_19_syscall_windows_arm64.go b/stdlib/unrestricted/go1_19_syscall_windows_arm64.go new file mode 100644 index 000000000..1ff068137 --- /dev/null +++ b/stdlib/unrestricted/go1_19_syscall_windows_arm64.go @@ -0,0 +1,30 @@ +// Code generated by 'yaegi extract syscall'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unrestricted + +import ( + "reflect" + "syscall" +) + +func init() { + Symbols["syscall/syscall"] = map[string]reflect.Value{ + // function, constant and variable definitions + "Exec": reflect.ValueOf(syscall.Exec), + "Exit": reflect.ValueOf(syscall.Exit), + "ExitProcess": reflect.ValueOf(syscall.ExitProcess), + "GetExitCodeProcess": reflect.ValueOf(syscall.GetExitCodeProcess), + "Shutdown": reflect.ValueOf(syscall.Shutdown), + "StartProcess": reflect.ValueOf(syscall.StartProcess), + "Syscall": reflect.ValueOf(syscall.Syscall), + "Syscall12": reflect.ValueOf(syscall.Syscall12), + "Syscall15": reflect.ValueOf(syscall.Syscall15), + "Syscall18": reflect.ValueOf(syscall.Syscall18), + "Syscall6": reflect.ValueOf(syscall.Syscall6), + "Syscall9": reflect.ValueOf(syscall.Syscall9), + "SyscallN": reflect.ValueOf(syscall.SyscallN), + } +} diff --git a/stdlib/unsafe/go1_16_unsafe.go b/stdlib/unsafe/go1_16_unsafe.go deleted file mode 100644 index b93c0fa3d..000000000 --- a/stdlib/unsafe/go1_16_unsafe.go +++ /dev/null @@ -1,17 +0,0 @@ -// Code generated by 'yaegi extract unsafe'. DO NOT EDIT. - -// +build go1.16,!go1.17 - -package unsafe - -import ( - "reflect" - "unsafe" -) - -func init() { - Symbols["unsafe/unsafe"] = map[string]reflect.Value{ - // type definitions - "Pointer": reflect.ValueOf((*unsafe.Pointer)(nil)), - } -} diff --git a/stdlib/unsafe/go1_17_unsafe.go b/stdlib/unsafe/go1_17_unsafe.go deleted file mode 100644 index 6fe15fade..000000000 --- a/stdlib/unsafe/go1_17_unsafe.go +++ /dev/null @@ -1,18 +0,0 @@ -// Code generated by 'yaegi extract unsafe'. DO NOT EDIT. - -//go:build go1.17 -// +build go1.17 - -package unsafe - -import ( - "reflect" - "unsafe" -) - -func init() { - Symbols["unsafe/unsafe"] = map[string]reflect.Value{ - // type definitions - "Pointer": reflect.ValueOf((*unsafe.Pointer)(nil)), - } -} diff --git a/stdlib/unsafe/go1_18_unsafe.go b/stdlib/unsafe/go1_18_unsafe.go new file mode 100644 index 000000000..ae5099843 --- /dev/null +++ b/stdlib/unsafe/go1_18_unsafe.go @@ -0,0 +1,18 @@ +// Code generated by 'yaegi extract unsafe'. DO NOT EDIT. + +//go:build go1.18 && !go1.19 +// +build go1.18,!go1.19 + +package unsafe + +import ( + "reflect" + "unsafe" +) + +func init() { + Symbols["unsafe/unsafe"] = map[string]reflect.Value{ + // type definitions + "Pointer": reflect.ValueOf((*unsafe.Pointer)(nil)), + } +} diff --git a/stdlib/unsafe/go1_19_unsafe.go b/stdlib/unsafe/go1_19_unsafe.go new file mode 100644 index 000000000..d0118a69c --- /dev/null +++ b/stdlib/unsafe/go1_19_unsafe.go @@ -0,0 +1,18 @@ +// Code generated by 'yaegi extract unsafe'. DO NOT EDIT. + +//go:build go1.19 +// +build go1.19 + +package unsafe + +import ( + "reflect" + "unsafe" +) + +func init() { + Symbols["unsafe/unsafe"] = map[string]reflect.Value{ + // type definitions + "Pointer": reflect.ValueOf((*unsafe.Pointer)(nil)), + } +} diff --git a/stdlib/unsafe/unsafe.go b/stdlib/unsafe/unsafe.go index 5c874e671..de3c2eeb4 100644 --- a/stdlib/unsafe/unsafe.go +++ b/stdlib/unsafe/unsafe.go @@ -1,5 +1,5 @@ -//go:build go1.16 -// +build go1.16 +//go:build go1.18 +// +build go1.18 // Package unsafe provides wrapper of standard library unsafe package to be imported natively in Yaegi. package unsafe diff --git a/stdlib/unsafe/unsafe_go1.17.go b/stdlib/unsafe/unsafe_go1.17.go deleted file mode 100644 index df2743590..000000000 --- a/stdlib/unsafe/unsafe_go1.17.go +++ /dev/null @@ -1,55 +0,0 @@ -//go:build go1.17 -// +build go1.17 - -// Package unsafe provides wrapper of standard library unsafe package to be imported natively in Yaegi. -package unsafe - -import ( - "errors" - "reflect" - "unsafe" -) - -func init() { - // Add builtin functions to unsafe. - Symbols["unsafe/unsafe"]["Add"] = reflect.ValueOf(add) - Symbols["unsafe/unsafe"]["Slice"] = reflect.ValueOf(slice) -} - -func add(ptr unsafe.Pointer, l int) unsafe.Pointer { - return unsafe.Pointer(uintptr(ptr) + uintptr(l)) -} - -type emptyInterface struct { - _ uintptr - data unsafe.Pointer -} - -func slice(i interface{}, l int) interface{} { - if l == 0 { - return nil - } - - v := reflect.ValueOf(i) - if v.Kind() != reflect.Ptr { - panic(errors.New("first argument to unsafe.Slice must be pointer")) - } - if v.IsNil() { - panic(errors.New("unsafe.Slice: ptr is nil and len is not zero")) - } - - if l < 0 { - panic(errors.New("unsafe.Slice: len out of range")) - } - - ih := *(*emptyInterface)(unsafe.Pointer(&i)) - - inter := reflect.MakeSlice(reflect.SliceOf(v.Type().Elem()), l, l).Interface() - ptr := (*emptyInterface)(unsafe.Pointer(&inter)).data - sh := (*reflect.SliceHeader)(ptr) - sh.Data = uintptr(ih.data) - sh.Len = l - sh.Cap = l - - return inter -}